@kalisio/kdk 2.6.3 → 2.7.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/core/api/application.js +2 -4
- package/core/api/authentication.js +2 -3
- package/core/api/db.js +10 -2
- package/core/api/hooks/hooks.authorisations.js +4 -2
- package/core/api/hooks/hooks.push.js +6 -2
- package/core/api/hooks/hooks.query.js +29 -12
- package/core/api/hooks/hooks.users.js +30 -17
- package/core/api/models/configurations.model.mongodb.js +4 -0
- package/core/api/services/authorisations/authorisations.service.js +1 -1
- package/core/api/services/configurations/configurations.hooks.js +33 -0
- package/core/api/services/index.js +41 -7
- package/core/api/services/messages/messages.hooks.js +9 -3
- package/core/client/api.js +14 -1
- package/core/client/capabilities.js +1 -6
- package/core/client/components/KAvatar.vue +24 -20
- package/core/client/components/account/KProfile.vue +10 -71
- package/core/client/components/account/index.js +0 -2
- package/core/client/components/app/KSettings.vue +1 -0
- package/core/client/components/collection/KBoard.vue +4 -3
- package/core/client/components/collection/KCardSection.vue +1 -0
- package/core/client/components/collection/KGrid.vue +2 -0
- package/core/client/components/collection/KTable.vue +5 -1
- package/core/client/components/collection/KTimeLine.vue +9 -1
- package/core/client/components/collection/index.js +0 -2
- package/core/client/components/form/KChipsField.vue +2 -1
- package/core/client/components/form/KEmailField.vue +1 -0
- package/core/client/components/form/KFileField.vue +22 -1
- package/core/client/components/form/KForm.vue +2 -0
- package/core/client/components/form/KItemField.vue +1 -0
- package/core/client/components/form/KNumberField.vue +1 -0
- package/core/client/components/form/KPasswordField.vue +1 -0
- package/core/client/components/form/KPhoneField.vue +1 -0
- package/core/client/components/form/KPropertyItemField.vue +1 -0
- package/core/client/components/form/KResolutionField.vue +1 -0
- package/core/client/components/form/KSelectField.vue +31 -0
- package/core/client/components/form/KTagField.vue +1 -0
- package/core/client/components/form/KTextField.vue +1 -0
- package/core/client/components/form/KTokenField.vue +1 -0
- package/core/client/components/form/KUnitField.vue +1 -0
- package/core/client/components/form/KUrlField.vue +1 -0
- package/core/client/components/graphics/KIcon.vue +3 -4
- package/core/client/components/layout/KPage.vue +1 -0
- package/core/client/components/layout/KWindow.vue +6 -3
- package/core/client/components/messages/KMessageComposer.vue +2 -1
- package/core/client/components/messages/KMessagesTimeLine.vue +1 -1
- package/core/client/components/time/KDate.vue +1 -2
- package/core/client/components/time/KDateTime.vue +11 -11
- package/core/client/components/time/KTime.vue +1 -1
- package/core/client/composables/collection.js +33 -8
- package/core/client/composables/errors.js +1 -1
- package/core/client/composables/layout.js +9 -9
- package/core/client/configurations.js +50 -0
- package/core/client/exporter.js +1 -1
- package/core/client/i18n/core_en.json +6 -39
- package/core/client/i18n/core_fr.json +6 -39
- package/core/client/index.js +2 -0
- package/core/client/layout.js +8 -8
- package/core/client/mixins/mixin.base-activity.js +5 -2
- package/core/client/mixins/mixin.base-field.js +3 -3
- package/core/client/search.js +2 -1
- package/core/client/utils/utils.collection.js +8 -8
- package/core/client/utils/utils.items.js +4 -0
- package/core/client/utils/utils.push.js +3 -3
- package/core/client/utils/utils.session.js +7 -5
- package/core/client/utils/utils.shapes.js +38 -7
- package/core/client/utils/utils.time.js +21 -22
- package/core/common/schemas/users.update-profile.json +3 -2
- package/coverage/core/api/application.js.html +1 -1
- package/coverage/core/api/authentication.js.html +1 -1
- package/coverage/core/api/db.js.html +1 -1
- package/coverage/core/api/hooks/hooks.authentication.js.html +1 -1
- package/coverage/core/api/hooks/hooks.authorisations.js.html +1 -1
- package/coverage/core/api/hooks/hooks.logger.js.html +1 -1
- package/coverage/core/api/hooks/hooks.model.js.html +1 -1
- package/coverage/core/api/hooks/hooks.push.js.html +22 -10
- package/coverage/core/api/hooks/hooks.query.js.html +33 -6
- package/coverage/core/api/hooks/hooks.schemas.js.html +1 -1
- package/coverage/core/api/hooks/hooks.service.js.html +1 -1
- package/coverage/core/api/hooks/hooks.storage.js.html +1 -1
- package/coverage/core/api/hooks/hooks.tags.js.html +1 -1
- package/coverage/core/api/hooks/hooks.users.js.html +4 -4
- package/coverage/core/api/hooks/index.html +23 -23
- package/coverage/core/api/hooks/index.js.html +1 -1
- package/coverage/core/api/index.html +1 -1
- package/coverage/core/api/index.js.html +1 -1
- package/coverage/core/api/marshall.js.html +1 -1
- package/coverage/core/api/models/configurations.model.mongodb.js.html +1 -1
- package/coverage/core/api/models/index.html +1 -1
- package/coverage/core/api/models/messages.model.mongodb.js.html +1 -1
- package/coverage/core/api/models/tags.model.mongodb.js.html +1 -1
- package/coverage/core/api/models/users.model.mongodb.js.html +1 -1
- package/coverage/core/api/services/account/account.hooks.js.html +1 -1
- package/coverage/core/api/services/account/account.service.js.html +1 -1
- package/coverage/core/api/services/account/index.html +1 -1
- package/coverage/core/api/services/authorisations/authorisations.hooks.js.html +1 -1
- package/coverage/core/api/services/authorisations/authorisations.service.js.html +1 -1
- package/coverage/core/api/services/authorisations/index.html +1 -1
- package/coverage/core/api/services/configurations/configurations.hooks.js.html +1 -1
- package/coverage/core/api/services/configurations/index.html +1 -1
- package/coverage/core/api/services/databases/databases.hooks.js.html +1 -1
- package/coverage/core/api/services/databases/databases.service.js.html +1 -1
- package/coverage/core/api/services/databases/index.html +1 -1
- package/coverage/core/api/services/import-export/import-export.hooks.js.html +1 -1
- package/coverage/core/api/services/import-export/import-export.service.js.html +1 -1
- package/coverage/core/api/services/import-export/index.html +1 -1
- package/coverage/core/api/services/index.html +1 -1
- package/coverage/core/api/services/index.js.html +1 -1
- package/coverage/core/api/services/mailer/index.html +1 -1
- package/coverage/core/api/services/mailer/mailer.hooks.js.html +1 -1
- package/coverage/core/api/services/mailer/mailer.service.js.html +1 -1
- package/coverage/core/api/services/messages/index.html +1 -1
- package/coverage/core/api/services/messages/messages.hooks.js.html +1 -1
- package/coverage/core/api/services/push/index.html +1 -1
- package/coverage/core/api/services/push/push.hooks.js.html +1 -1
- package/coverage/core/api/services/push/push.service.js.html +1 -1
- package/coverage/core/api/services/storage/index.html +1 -1
- package/coverage/core/api/services/storage/storage.hooks.js.html +1 -1
- package/coverage/core/api/services/storage/storage.service.js.html +1 -1
- package/coverage/core/api/services/tags/index.html +1 -1
- package/coverage/core/api/services/tags/tags.hooks.js.html +1 -1
- package/coverage/core/api/services/users/index.html +1 -1
- package/coverage/core/api/services/users/users.hooks.js.html +1 -1
- package/coverage/core/api/services/users/users.service.js.html +1 -1
- package/coverage/core/common/errors.js.html +1 -1
- package/coverage/core/common/index.html +1 -1
- package/coverage/core/common/index.js.html +1 -1
- package/coverage/core/common/permissions.js.html +1 -1
- package/coverage/core/common/schema.js.html +1 -1
- package/coverage/core/common/utils.js.html +1 -1
- package/coverage/core/common/utils.offline.js.html +1 -1
- package/coverage/index.html +17 -17
- package/coverage/lcov-report/core/api/application.js.html +1 -1
- package/coverage/lcov-report/core/api/authentication.js.html +1 -1
- package/coverage/lcov-report/core/api/db.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.authentication.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.authorisations.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.logger.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.model.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.push.js.html +22 -10
- package/coverage/lcov-report/core/api/hooks/hooks.query.js.html +33 -6
- package/coverage/lcov-report/core/api/hooks/hooks.schemas.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.service.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.storage.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.tags.js.html +1 -1
- package/coverage/lcov-report/core/api/hooks/hooks.users.js.html +4 -4
- package/coverage/lcov-report/core/api/hooks/index.html +23 -23
- package/coverage/lcov-report/core/api/hooks/index.js.html +1 -1
- package/coverage/lcov-report/core/api/index.html +1 -1
- package/coverage/lcov-report/core/api/index.js.html +1 -1
- package/coverage/lcov-report/core/api/marshall.js.html +1 -1
- package/coverage/lcov-report/core/api/models/configurations.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/core/api/models/index.html +1 -1
- package/coverage/lcov-report/core/api/models/messages.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/core/api/models/tags.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/core/api/models/users.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/core/api/services/account/account.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/account/account.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/account/index.html +1 -1
- package/coverage/lcov-report/core/api/services/authorisations/authorisations.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/authorisations/authorisations.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/authorisations/index.html +1 -1
- package/coverage/lcov-report/core/api/services/configurations/configurations.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/configurations/index.html +1 -1
- package/coverage/lcov-report/core/api/services/databases/databases.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/databases/databases.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/databases/index.html +1 -1
- package/coverage/lcov-report/core/api/services/import-export/import-export.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/import-export/import-export.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/import-export/index.html +1 -1
- package/coverage/lcov-report/core/api/services/index.html +1 -1
- package/coverage/lcov-report/core/api/services/index.js.html +1 -1
- package/coverage/lcov-report/core/api/services/mailer/index.html +1 -1
- package/coverage/lcov-report/core/api/services/mailer/mailer.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/mailer/mailer.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/messages/index.html +1 -1
- package/coverage/lcov-report/core/api/services/messages/messages.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/push/index.html +1 -1
- package/coverage/lcov-report/core/api/services/push/push.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/push/push.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/storage/index.html +1 -1
- package/coverage/lcov-report/core/api/services/storage/storage.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/storage/storage.service.js.html +1 -1
- package/coverage/lcov-report/core/api/services/tags/index.html +1 -1
- package/coverage/lcov-report/core/api/services/tags/tags.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/users/index.html +1 -1
- package/coverage/lcov-report/core/api/services/users/users.hooks.js.html +1 -1
- package/coverage/lcov-report/core/api/services/users/users.service.js.html +1 -1
- package/coverage/lcov-report/core/common/errors.js.html +1 -1
- package/coverage/lcov-report/core/common/index.html +1 -1
- package/coverage/lcov-report/core/common/index.js.html +1 -1
- package/coverage/lcov-report/core/common/permissions.js.html +1 -1
- package/coverage/lcov-report/core/common/schema.js.html +1 -1
- package/coverage/lcov-report/core/common/utils.js.html +1 -1
- package/coverage/lcov-report/core/common/utils.offline.js.html +1 -1
- package/coverage/lcov-report/index.html +17 -17
- package/coverage/lcov-report/map/api/hooks/hooks.catalog.js.html +1 -1
- package/coverage/lcov-report/map/api/hooks/hooks.features.js.html +1 -1
- package/coverage/lcov-report/map/api/hooks/hooks.query.js.html +184 -4
- package/coverage/lcov-report/map/api/hooks/index.html +5 -5
- package/coverage/lcov-report/map/api/hooks/index.js.html +1 -1
- package/coverage/lcov-report/map/api/index.html +1 -1
- package/coverage/lcov-report/map/api/index.js.html +1 -1
- package/coverage/lcov-report/map/api/marshall.js.html +1 -1
- package/coverage/lcov-report/map/api/models/alerts.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/map/api/models/catalog.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/map/api/models/features.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/map/api/models/index.html +1 -1
- package/coverage/lcov-report/map/api/models/projects.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/map/api/models/styles.model.mongodb.js.html +1 -1
- package/coverage/lcov-report/map/api/services/alerts/alerts.hooks.js.html +1 -1
- package/coverage/lcov-report/map/api/services/alerts/alerts.service.js.html +1 -1
- package/coverage/lcov-report/map/api/services/alerts/index.html +1 -1
- package/coverage/lcov-report/map/api/services/catalog/catalog.hooks.js.html +1 -1
- package/coverage/lcov-report/map/api/services/catalog/index.html +1 -1
- package/coverage/lcov-report/map/api/services/daptiles/daptiles.service.js.html +1 -1
- package/coverage/lcov-report/map/api/services/daptiles/index.html +1 -1
- package/coverage/lcov-report/map/api/services/features/features.hooks.js.html +1 -1
- package/coverage/lcov-report/map/api/services/features/features.service.js.html +1 -1
- package/coverage/lcov-report/map/api/services/features/index.html +1 -1
- package/coverage/lcov-report/map/api/services/index.html +1 -1
- package/coverage/lcov-report/map/api/services/index.js.html +1 -1
- package/coverage/lcov-report/map/api/services/projects/index.html +1 -1
- package/coverage/lcov-report/map/api/services/projects/projects.hooks.js.html +1 -1
- package/coverage/lcov-report/map/api/services/styles/index.html +1 -1
- package/coverage/lcov-report/map/api/services/styles/styles.hooks.js.html +1 -1
- package/coverage/lcov-report/map/common/dynamic-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/errors.js.html +1 -1
- package/coverage/lcov-report/map/common/geotiff-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/grid.js.html +1 -1
- package/coverage/lcov-report/map/common/index.html +1 -1
- package/coverage/lcov-report/map/common/index.js.html +1 -1
- package/coverage/lcov-report/map/common/meteo-model-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/moment-utils.js.html +1 -1
- package/coverage/lcov-report/map/common/opendap-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/opendap-utils.js.html +1 -1
- package/coverage/lcov-report/map/common/permissions.js.html +1 -1
- package/coverage/lcov-report/map/common/time-based-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/tms-utils.js.html +1 -1
- package/coverage/lcov-report/map/common/wcs-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/wcs-utils.js.html +1 -1
- package/coverage/lcov-report/map/common/weacast-grid-source.js.html +1 -1
- package/coverage/lcov-report/map/common/wfs-utils.js.html +1 -1
- package/coverage/lcov-report/map/common/wms-utils.js.html +1 -1
- package/coverage/lcov-report/map/common/wmts-utils.js.html +1 -1
- package/coverage/lcov.info +358 -280
- package/coverage/map/api/hooks/hooks.catalog.js.html +1 -1
- package/coverage/map/api/hooks/hooks.features.js.html +1 -1
- package/coverage/map/api/hooks/hooks.query.js.html +184 -4
- package/coverage/map/api/hooks/index.html +5 -5
- package/coverage/map/api/hooks/index.js.html +1 -1
- package/coverage/map/api/index.html +1 -1
- package/coverage/map/api/index.js.html +1 -1
- package/coverage/map/api/marshall.js.html +1 -1
- package/coverage/map/api/models/alerts.model.mongodb.js.html +1 -1
- package/coverage/map/api/models/catalog.model.mongodb.js.html +1 -1
- package/coverage/map/api/models/features.model.mongodb.js.html +1 -1
- package/coverage/map/api/models/index.html +1 -1
- package/coverage/map/api/models/projects.model.mongodb.js.html +1 -1
- package/coverage/map/api/models/styles.model.mongodb.js.html +1 -1
- package/coverage/map/api/services/alerts/alerts.hooks.js.html +1 -1
- package/coverage/map/api/services/alerts/alerts.service.js.html +1 -1
- package/coverage/map/api/services/alerts/index.html +1 -1
- package/coverage/map/api/services/catalog/catalog.hooks.js.html +1 -1
- package/coverage/map/api/services/catalog/index.html +1 -1
- package/coverage/map/api/services/daptiles/daptiles.service.js.html +1 -1
- package/coverage/map/api/services/daptiles/index.html +1 -1
- package/coverage/map/api/services/features/features.hooks.js.html +1 -1
- package/coverage/map/api/services/features/features.service.js.html +1 -1
- package/coverage/map/api/services/features/index.html +1 -1
- package/coverage/map/api/services/index.html +1 -1
- package/coverage/map/api/services/index.js.html +1 -1
- package/coverage/map/api/services/projects/index.html +1 -1
- package/coverage/map/api/services/projects/projects.hooks.js.html +1 -1
- package/coverage/map/api/services/styles/index.html +1 -1
- package/coverage/map/api/services/styles/styles.hooks.js.html +1 -1
- package/coverage/map/common/dynamic-grid-source.js.html +1 -1
- package/coverage/map/common/errors.js.html +1 -1
- package/coverage/map/common/geotiff-grid-source.js.html +1 -1
- package/coverage/map/common/grid.js.html +1 -1
- package/coverage/map/common/index.html +1 -1
- package/coverage/map/common/index.js.html +1 -1
- package/coverage/map/common/meteo-model-grid-source.js.html +1 -1
- package/coverage/map/common/moment-utils.js.html +1 -1
- package/coverage/map/common/opendap-grid-source.js.html +1 -1
- package/coverage/map/common/opendap-utils.js.html +1 -1
- package/coverage/map/common/permissions.js.html +1 -1
- package/coverage/map/common/time-based-grid-source.js.html +1 -1
- package/coverage/map/common/tms-utils.js.html +1 -1
- package/coverage/map/common/wcs-grid-source.js.html +1 -1
- package/coverage/map/common/wcs-utils.js.html +1 -1
- package/coverage/map/common/weacast-grid-source.js.html +1 -1
- package/coverage/map/common/wfs-utils.js.html +1 -1
- package/coverage/map/common/wms-utils.js.html +1 -1
- package/coverage/map/common/wmts-utils.js.html +1 -1
- package/coverage/tmp/coverage-1028514-1773134124472-0.json +1 -0
- package/coverage/tmp/coverage-1028526-1773134124448-0.json +1 -0
- package/coverage/tmp/coverage-1028537-1773134124431-0.json +1 -0
- package/coverage/tmp/coverage-1028549-1773134124401-0.json +1 -0
- package/coverage/tmp/{coverage-222566-1765963609278-0.json → coverage-1028556-1773134124353-0.json} +1 -1
- package/extras/configs/widgets.top.js +3 -3
- package/extras/tests/core/collection.mjs +2 -9
- package/map/api/hooks/hooks.catalog.js +18 -4
- package/map/api/services/catalog/catalog.hooks.js +3 -0
- package/map/api/services/features/features.hooks.js +3 -1
- package/map/api/services/index.js +2 -6
- package/map/api/services/styles/styles.hooks.js +6 -1
- package/map/client/components/KFeatureActionButton.vue +9 -3
- package/map/client/components/KFeaturesFilterManager.vue +5 -5
- package/map/client/components/KFilterCondition.vue +17 -10
- package/map/client/components/KLayerEditor.vue +49 -39
- package/map/client/components/KMeasureTool.vue +7 -1
- package/map/client/components/KTimezoneMap.vue +29 -9
- package/map/client/components/catalog/KLayersPanel.vue +26 -16
- package/map/client/components/catalog/KLayersSelector.vue +13 -2
- package/map/client/components/catalog/KViewsPanel.vue +5 -4
- package/map/client/components/form/KSelectLayersField.vue +28 -17
- package/map/client/components/form/KSelectViewsField.vue +18 -9
- package/map/client/components/form/KTimezoneField.vue +1 -2
- package/map/client/components/legend/KVariablesLegend.vue +10 -1
- package/map/client/components/location/KLocationCardSection.vue +7 -2
- package/map/client/components/location/KLocationMap.vue +31 -7
- package/map/client/components/selection/KSelectedLayerFeatures.vue +2 -2
- package/map/client/components/stickies/KZoomControl.vue +1 -1
- package/map/client/components/styles/KStyleManager.vue +4 -1
- package/map/client/components/widget/KTimeSeries.vue +174 -497
- package/map/client/components/widget/KTimeSeriesSelector.vue +72 -0
- package/map/client/components/widget/KTimeSeriesToolbar.vue +83 -0
- package/map/client/composables/catalog.js +6 -10
- package/map/client/composables/highlight.js +12 -9
- package/map/client/composables/project.js +1 -1
- package/map/client/composables/selection.js +8 -7
- package/map/client/composables/weather.js +9 -2
- package/map/client/geolocation.js +8 -5
- package/map/client/i18n/map_en.json +10 -8
- package/map/client/i18n/map_fr.json +9 -7
- package/map/client/leaflet/TiledFeatureLayer.js +85 -82
- package/map/client/leaflet/utils/utils.geojson.js +3 -3
- package/map/client/mixins/globe/mixin.base-globe.js +15 -6
- package/map/client/mixins/globe/mixin.geojson-layers.js +27 -18
- package/map/client/mixins/map/mixin.edit-layers.js +9 -1
- package/map/client/mixins/map/mixin.pmtiles-layers.js +118 -29
- package/map/client/mixins/map/mixin.tiled-mesh-layers.js +12 -5
- package/map/client/mixins/map/mixin.tiled-wind-layers.js +19 -10
- package/map/client/mixins/mixin.activity.js +23 -30
- package/map/client/mixins/mixin.feature-selection.js +41 -5
- package/map/client/planets.js +1 -1
- package/map/client/readers/reader.kml.js +2 -3
- package/map/client/utils/utils.catalog.js +36 -10
- package/map/client/utils/utils.layers.js +39 -8
- package/map/client/utils/utils.project.js +4 -0
- package/map/client/utils/utils.style.js +37 -7
- package/map/client/utils/utils.time-series.js +215 -6
- package/map/common/schemas/catalog.update.json +1 -1
- package/map/common/weacast-grid-source.js +1 -1
- package/package.json +3 -3
- package/scripts/kash/CHANGELOG.md +0 -4
- package/scripts/kash/README.md +0 -9
- package/scripts/kash/kash.sh +45 -40
- package/scripts/kash/scripts/run_tests.sh +1 -4
- package/test/api/core/authentication.test.js +9 -4
- package/test/api/core/config/default.cjs +1 -0
- package/test/api/core/hooks.test.js +6 -0
- package/test/api/core/index.test.js +43 -18
- package/test/api/core/push.test.js +8 -8
- package/test/api/core/test-log-2026-03-10.log +60 -0
- package/test/api/core/users.test.js +384 -0
- package/test/api/map/grid-sources.test.js +1 -1
- package/test/api/map/test-log-2026-03-10.log +56 -0
- package/vite/package.json +11 -2
- package/vite/test/core/composables.test.js +77 -0
- package/vite/vitest.config.js +13 -0
- package/vite/yarn.lock +1096 -18
- package/client/css/core.variables.scss +0 -72
- package/client/i18n/core_en.json +0 -744
- package/client/i18n/core_fr.json +0 -744
- package/client/i18n/map_en.json +0 -800
- package/client/i18n/map_fr.json +0 -800
- package/client/kdk.client.css +0 -47
- package/client/kdk.client.js +0 -41097
- package/client/kdk.client.map.css +0 -47
- package/client/kdk.client.map.js +0 -38182
- package/client/kdk.client.map.min.css +0 -1
- package/client/kdk.client.map.min.js +0 -27032
- package/client/kdk.client.min.css +0 -1
- package/client/kdk.client.min.js +0 -29074
- package/client/schemas/capture.create.json +0 -132
- package/client/schemas/catalog.update.json +0 -44
- package/client/schemas/messages.update.json +0 -16
- package/client/schemas/projects.create.json +0 -52
- package/client/schemas/projects.update.json +0 -52
- package/client/schemas/settings.update.json +0 -286
- package/client/schemas/tags.update.json +0 -35
- package/client/schemas/users.update-profile.json +0 -34
- package/core/client/components/account/KAccount.vue +0 -68
- package/core/client/components/account/KDeleteAccountManager.vue +0 -62
- package/core/client/components/account/KEmailManager.vue +0 -128
- package/core/client/components/account/KPasswordManager.vue +0 -90
- package/core/client/components/account/KVerifyEmailManager.vue +0 -105
- package/core/client/components/collection/KColumn.vue +0 -227
- package/core/client/components/collection/KHistory.vue +0 -113
- package/core/client/components/collection/KHistoryEntry.vue +0 -109
- package/coverage/tmp/coverage-222524-1765963609350-0.json +0 -1
- package/coverage/tmp/coverage-222536-1765963609335-0.json +0 -1
- package/coverage/tmp/coverage-222547-1765963609324-0.json +0 -1
- package/coverage/tmp/coverage-222559-1765963609309-0.json +0 -1
- package/scripts/kash/LICENSE +0 -21
- package/test/api/core/test-log-2025-07-31.log +0 -15
- package/test/api/core/test-log-2025-10-03.log +0 -18
- package/test/api/core/test-log-2025-11-10.log +0 -0
- package/test/api/core/test-log-2025-11-12.log +0 -117
- package/test/api/core/test-log-2025-11-27.log +0 -0
- package/test/api/core/test-log-2025-11-28.log +0 -17
- package/test/api/core/test-log-2025-12-09.log +0 -148
- package/test/api/core/test-log-2025-12-17.log +0 -58
- package/test/api/core/test-log-2026-01-29.log +0 -17
- package/test/api/map/test-log-2025-07-23.log +0 -1
- package/test/api/map/test-log-2025-11-28.log +0 -33
- package/test/api/map/test-log-2025-12-10.log +0 -2
- package/test/api/map/test-log-2026-01-06.log +0 -26
package/client/i18n/core_en.json
DELETED
|
@@ -1,744 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"OOPS": "Oops !",
|
|
3
|
-
"OK": "Ok",
|
|
4
|
-
"YES": "Yes",
|
|
5
|
-
"NO": "No",
|
|
6
|
-
"ALERT": "Alert",
|
|
7
|
-
"WARNING": "Warning",
|
|
8
|
-
"INFORMATION": "Information",
|
|
9
|
-
"CANCEL": "Cancel",
|
|
10
|
-
"UPDATE": "Update",
|
|
11
|
-
"CREATE": "Create",
|
|
12
|
-
"DELETE": "Delete",
|
|
13
|
-
"RESET": "Reset",
|
|
14
|
-
"CLOSE": "Close",
|
|
15
|
-
"SEARCH": "Search...",
|
|
16
|
-
"DONE": "Done",
|
|
17
|
-
"APPLY": "Apply",
|
|
18
|
-
"RETRY": "Retry",
|
|
19
|
-
"NO_ITEM": "No elements found",
|
|
20
|
-
"NIL": "Undefined",
|
|
21
|
-
"MEMBERS": "Members",
|
|
22
|
-
"TAGS": "Tags",
|
|
23
|
-
"GROUPS": "Groups",
|
|
24
|
-
"EDIT": "Edit",
|
|
25
|
-
"REMOVE": "Remove",
|
|
26
|
-
"OWNER": "Owner",
|
|
27
|
-
"MANAGER": "Manager",
|
|
28
|
-
"MEMBER": "Member",
|
|
29
|
-
"UNAMED": "Unamed",
|
|
30
|
-
"HELP": "Help",
|
|
31
|
-
"NEED_HELP": "Help needed ?",
|
|
32
|
-
"READ_MORE": "Read more",
|
|
33
|
-
"BACK": "Return",
|
|
34
|
-
"LEGAL_NOTICE": "Legal notice",
|
|
35
|
-
"PRIVACY_POLICY": "Privacy policy",
|
|
36
|
-
"layout": {
|
|
37
|
-
"MY_SETTINGS": "My settings",
|
|
38
|
-
"ABOUT": "About",
|
|
39
|
-
"ONLINE_HELP": "Online help",
|
|
40
|
-
"CONTEXTUAL_HELP": "Contextual help",
|
|
41
|
-
"LOGOUT": "Logout",
|
|
42
|
-
"ENTER_FULLSCREEN": "Enter full screen mode",
|
|
43
|
-
"EXIT_FULLSCREEN": "Exit full screen mode"
|
|
44
|
-
},
|
|
45
|
-
"errors": {
|
|
46
|
-
"400": "Operation cannot be performed: bad parameters",
|
|
47
|
-
"401": "Operation cannot be performed: authentication required",
|
|
48
|
-
"402": "Operation cannot be performed: payment error",
|
|
49
|
-
"403": "Operation cannot be performed: not allowed",
|
|
50
|
-
"404": "Operation cannot be performed: not found",
|
|
51
|
-
"405": "Operation cannot be performed: not allowed",
|
|
52
|
-
"406": "Operation cannot be performed: not acceptable",
|
|
53
|
-
"408": "Operation cannot be performed: timeout",
|
|
54
|
-
"409": "Operation cannot be performed: conflict",
|
|
55
|
-
"411": "Operation cannot be performed: length required",
|
|
56
|
-
"422": "Operation cannot be performed: unprocessable",
|
|
57
|
-
"429": "Operation cannot be performed: too many requests",
|
|
58
|
-
"498": "This system or browser does not support web push notifications",
|
|
59
|
-
"499": "Please change your application or browser settings to allow notifications",
|
|
60
|
-
"500": "Operation cannot be performed: an error occurred",
|
|
61
|
-
"501": "Operation cannot be performed: not implemented",
|
|
62
|
-
"502": "Operation cannot be performed: service unavailable",
|
|
63
|
-
"503": "Operation cannot be performed: service unavailable",
|
|
64
|
-
"RETRY": "Please try again later or modify your parameters",
|
|
65
|
-
"RATE_LIMITING": "Too many API requests in a given amount of time (rate limiting)",
|
|
66
|
-
"RATE_LIMITING_AUTHENTICATION": "Too many authentication requests in a given amount of time (rate limiting)",
|
|
67
|
-
"RATE_LIMITING_CONCURRENCY": "Too many concurrent connections (rate limiting)",
|
|
68
|
-
"COUNT_LIMITING": "Too many resources used (count limiting)",
|
|
69
|
-
"WEAK_PASSWORD": "The provided password does not comply our password policy",
|
|
70
|
-
"WEAK_PASSWORD_MIN": "Minimum length of {minLength} characters",
|
|
71
|
-
"WEAK_PASSWORD_MAX": "Maximum length of {maxLength} characters",
|
|
72
|
-
"WEAK_PASSWORD_LOWERCASE": "A least one lower case letter",
|
|
73
|
-
"WEAK_PASSWORD_UPPERCASE": "A least one upper case letter",
|
|
74
|
-
"WEAK_PASSWORD_DIGITS": "A least one digit",
|
|
75
|
-
"WEAK_PASSWORD_SYMBOLS": "A least one special symbol like :;?!+-.,^@",
|
|
76
|
-
"WEAK_PASSWORD_ONEOF": "Not known as one of the most common passwords",
|
|
77
|
-
"WEAK_PASSWORD_PREVIOUS": "Not one of your {history} last passwords",
|
|
78
|
-
"CANNOT_PROCESS_DOWNLOAD_DATA": "Invalid or incomplete data file",
|
|
79
|
-
"CANNOT_REMOVE_USER": "Your are not allowed to remove this accound.<br>Please remove the organisations owned by <b>{user}</b> first.",
|
|
80
|
-
"CANNOT_REMOVE_ORGANISATION": "You are not allowed to remove this organisation.<br>Please remove all the groups first.",
|
|
81
|
-
"CANNOT_REMOVE_LAST_OWNER": "You are not allowed to remove the last owner of <b>{resource}</b>",
|
|
82
|
-
"DUPLICATED_FILE": "The file {file} is already added",
|
|
83
|
-
"OAUTH2_PROVIDER": "You cannot update your account because it is managed by {provider}, in order to switch to a local account reset your password first",
|
|
84
|
-
"EMAIL_ALREADY_TAKEN": "A user with this email address seems to be already registered",
|
|
85
|
-
"OBJECT_ID_ALREADY_TAKEN": "An item with this identifier seems to already exist. Please try again with another value.",
|
|
86
|
-
"MAX_FILES_REACHED": "Oops ! You can only drop one file | Oops! You can only drop up to {n} files at once",
|
|
87
|
-
"MAX_FILE_SIZE_REACHED": "Oops ! The file exceeds the maximum allowed size of {maxSize}",
|
|
88
|
-
"MAX_TOTAL_SIZE_FILES_REACHED": "Oops ! The total size files exceeds the maximum allowed total limit of {maxSize}",
|
|
89
|
-
"UNSUPPORTED_FILE_FORMAT": "Oops ! The {file} file format is not supported",
|
|
90
|
-
"CANNOT_READ_FILE": "Oops ! Unable to read the file {file}",
|
|
91
|
-
"INVALID_JSON_FILE": "Oops ! {file} is not a valid JSON file",
|
|
92
|
-
"INVALID_CSV_FILE": "Oops ! {file} is not a valid CSV file",
|
|
93
|
-
"NETWORK_ERROR": "Oops ! Network or service error occurred"
|
|
94
|
-
},
|
|
95
|
-
"units": {
|
|
96
|
-
"METER_SYMBOL": "m",
|
|
97
|
-
"FEET_SYMBOL": "ft",
|
|
98
|
-
"MILE_SYMBOL": "mi",
|
|
99
|
-
"NAUTICAL_MILE_SYMBOL": "NM",
|
|
100
|
-
"SQUARED_METER_SYMBOL": "m²",
|
|
101
|
-
"SQUARED_KILOMETER_SYMBOL": "km²",
|
|
102
|
-
"ACRE_SYMBOL": "a",
|
|
103
|
-
"HECTARE_SYMBOL": "ha",
|
|
104
|
-
"METER_PER_SECOND_SYMBOL": "m/s",
|
|
105
|
-
"KILOMETER_PER_HOUR_SYMBOL": "km/h",
|
|
106
|
-
"MILES_PER_HOUR_SYMBOL": "mph",
|
|
107
|
-
"KNOT_SYMBOL": "kt",
|
|
108
|
-
"CELSIUS_SYMBOL": "°C",
|
|
109
|
-
"FAHRENHEIT_SYMBOL": "°F",
|
|
110
|
-
"KELVIN_SYMBOL": "K",
|
|
111
|
-
"DEGREE_SYMBOL": "°",
|
|
112
|
-
"RADIAN_SYMBOL": "rad",
|
|
113
|
-
"PPM_SYMBOL": "ppm",
|
|
114
|
-
"MICROGRAM_PER_M3_SYMBOL": "µg/m³",
|
|
115
|
-
"CUBIC_METER_PER_SECOND_SYMBOL": "m³/s",
|
|
116
|
-
"BEQUEREL_SYMBOL": "Bq",
|
|
117
|
-
"BEQUEREL_PER_M2_SYMBOL": "Bq/m²",
|
|
118
|
-
"BEQUEREL_PER_M3_SYMBOL": "Bq/m³",
|
|
119
|
-
"SIEVERT_SYMBOL": "Sv",
|
|
120
|
-
"MILLISIEVERT_SYMBOL": "mSv",
|
|
121
|
-
"MICROSIEVERT_SYMBOL": "µSv",
|
|
122
|
-
"NANOSIEVERT_SYMBOL": "nSv",
|
|
123
|
-
"SIEVERT_PER_SECOND_SYMBOL": "Sv/s",
|
|
124
|
-
"MILLISIEVERT_PER_SECOND_SYMBOL": "mSv/s",
|
|
125
|
-
"MICROSIEVERT_PER_SECOND_SYMBOL": "µSv/s",
|
|
126
|
-
"NANOSIEVERT_PER_SECOND_SYMBOL": "nSv/s",
|
|
127
|
-
"SIEVERT_PER_HOUR_SYMBOL": "Sv/h",
|
|
128
|
-
"MILLISIEVERT_PER_HOUR_SYMBOL": "mSv/h",
|
|
129
|
-
"MICROSIEVERT_PER_HOUR_SYMBOL": "µSv/h",
|
|
130
|
-
"NANOSIEVERT_PER_HOUR_SYMBOL": "nSv/h",
|
|
131
|
-
"METER_LABEL": "Meters",
|
|
132
|
-
"FEET_LABEL": "Feet",
|
|
133
|
-
"MILE_LABEL": "Miles",
|
|
134
|
-
"NAUTICAL_MILE_LABEL": "Nautical miles",
|
|
135
|
-
"SQUARED_METER_LABEL": "Squared meters",
|
|
136
|
-
"SQUARED_KILOMETER_LABEL": "Squared kilometers",
|
|
137
|
-
"ACRE_LABEL": "Acres",
|
|
138
|
-
"HECTARE_LABEL": "Hectares",
|
|
139
|
-
"METER_PER_SECOND_LABEL": "Meters per second",
|
|
140
|
-
"KILOMETER_PER_HOUR_LABEL": "Kilometers per hour",
|
|
141
|
-
"MILES_PER_HOUR_LABEL": "Miles per hour",
|
|
142
|
-
"KNOT_LABEL": "Knots",
|
|
143
|
-
"CELSIUS_LABEL": "Celsius degrees",
|
|
144
|
-
"FAHRENHEIT_LABEL": "Fahrenheit degrees",
|
|
145
|
-
"KELVIN_LABEL": "Kelvins",
|
|
146
|
-
"DEGREE_LABEL": "Degrees",
|
|
147
|
-
"RADIAN_LABEL": "Radians",
|
|
148
|
-
"PPM_LABEL": "Parts-per-million",
|
|
149
|
-
"MICROGRAM_PER_M3_LABEL": "Microgram per cubic meter",
|
|
150
|
-
"CUBIC_METER_PER_SECOND_LABEL": "Cubic meter per second",
|
|
151
|
-
"BEQUEREL_LABEL": "Bequerels",
|
|
152
|
-
"BEQUEREL_PER_M2_LABEL": "Bequerels per square meter",
|
|
153
|
-
"BEQUEREL_PER_M3_LABEL": "Bequerels per cubic meter",
|
|
154
|
-
"SIEVERT_LABEL": "Sieverts",
|
|
155
|
-
"MILLISIEVERT_LABEL": "Millisieverts",
|
|
156
|
-
"MICROSIEVERT_LABEL": "Microsieverts",
|
|
157
|
-
"NANOSIEVERT_LABEL": "Nanosieverts",
|
|
158
|
-
"SIEVERT_PER_SECOND_LABEL": "Sieverts per second",
|
|
159
|
-
"MILLISIEVERT_PER_SECOND_LABEL": "Millisieverts per second",
|
|
160
|
-
"MICROSIEVERT_PER_SECOND_LABEL": "Microsieverts per second",
|
|
161
|
-
"NANOSIEVERT_PER_SECOND_LABEL": "Nanosieverts per second",
|
|
162
|
-
"SIEVERT_PER_HOUR_LABEL": "Sieverts per hour",
|
|
163
|
-
"MILLISIEVERT_PER_HOUR_LABEL": "Millisieverts per hour",
|
|
164
|
-
"MICROSIEVERT_PER_HOUR_LABEL": "Microsieverts per hour",
|
|
165
|
-
"NANOSIEVERT_PER_HOUR_LABEL": "Nanosieverts per hour"
|
|
166
|
-
},
|
|
167
|
-
"directives": {
|
|
168
|
-
"ALL_FILES_ARE_UNSUPPORTED": "Oops ! File is not supported | Oops ! None of the files are supported",
|
|
169
|
-
"SOME_FILES_ARE_UNSUPPORTED": "Some files will be ignored due to unsupported types",
|
|
170
|
-
"DROP_FILES": "Drop file here | Drop files here"
|
|
171
|
-
},
|
|
172
|
-
"mixins": {
|
|
173
|
-
"baseItem": {
|
|
174
|
-
"REMOVE_ITEM_TITLE": "Are you sure you want to delete <b>{name}</b> ?",
|
|
175
|
-
"REMOVE_ITEM_MESSAGE": "Please enter the name to confirm the deletion",
|
|
176
|
-
"ITEM_EXPORTED": "Exporting the content of {name} within {file}",
|
|
177
|
-
"CANNOT_EXPORT_ITEM": "Cannot export {name}. Is your browser support such a feature ?"
|
|
178
|
-
}
|
|
179
|
-
},
|
|
180
|
-
"composables": {
|
|
181
|
-
"ANONYMOUS": "Anonymous",
|
|
182
|
-
"VERSION_MISMATCH": "Application version mismatch, please install the latest available version or check your end point",
|
|
183
|
-
"session": {
|
|
184
|
-
"DISCONNECT": "The server connection has been lost, please wait until reconnection...",
|
|
185
|
-
"RECONNECT": "The server connection has been restored, you can refresh the application in case data has been updated during the disconnection.",
|
|
186
|
-
"RELOAD": "Refresh",
|
|
187
|
-
"REFUSED": "Your connection have been refused by the server, you have been disconnected...",
|
|
188
|
-
"IGNORE": "Ignore",
|
|
189
|
-
"RETRY": "Retry",
|
|
190
|
-
"ALERT": "Alert",
|
|
191
|
-
"INFORMATION": "Information"
|
|
192
|
-
},
|
|
193
|
-
"pwa": {
|
|
194
|
-
"UPDATE_MESSAGE": "<b>A new version is available</b>, the application will be updated in a couple of seconds."
|
|
195
|
-
},
|
|
196
|
-
"context": {
|
|
197
|
-
"REMOVED_MESSAGE": "The context object has been removed. You will be redirected to the home page."
|
|
198
|
-
}
|
|
199
|
-
},
|
|
200
|
-
"utils": {
|
|
201
|
-
"files": {
|
|
202
|
-
"B": "B",
|
|
203
|
-
"KB": "KB",
|
|
204
|
-
"MB": "MB"
|
|
205
|
-
},
|
|
206
|
-
"pwa": {
|
|
207
|
-
"INSTALL_TITLE": "Install the application ?",
|
|
208
|
-
"INSTALL_MESSAGE": "We recommend to install the application to take full advantage of all the features",
|
|
209
|
-
"IOS_INSTALL_MESSAGE": "We recommend to install the application to take full advantage of all the features.<br>For <b>Safari</b> click on <i class=\"material-icons\">ios_share</i> then on <b>Add to home screen</b>",
|
|
210
|
-
"FIREFOX_DESKTOP_INSTALL_MESSAGE": "We recommend to install the application to take full advantage of all the features. For this use the <a href='https://addons.mozilla.org/fr/firefox/addon/pwas-for-firefox/' target='_blank'>Progressive Web Apps for Firefox</a> extension.",
|
|
211
|
-
"INSTALL": "Installer",
|
|
212
|
-
"IGNORE": "Ignorer"
|
|
213
|
-
}
|
|
214
|
-
},
|
|
215
|
-
"schemas": {
|
|
216
|
-
"OBJECT_NAME": "{name}",
|
|
217
|
-
"AVATAR_FIELD_LABEL": "Select an avatar",
|
|
218
|
-
"NAME_FIELD_LABEL": "Enter your name",
|
|
219
|
-
"COLOR_FIELD_LABEL": "Pick a color",
|
|
220
|
-
"UPDATE_SETTINGS_TITLE": "Your settings",
|
|
221
|
-
"TIME_FORMAT_SETTINGS": "Time/Date format",
|
|
222
|
-
"TIME_FORMAT_SHORT_TIME_FIELD_LABEL": "Short time format",
|
|
223
|
-
"TIME_FORMAT_LONG_TIME_FIELD_LABEL": "Long time format",
|
|
224
|
-
"TIME_FORMAT_SHORT_DATE_FIELD_LABEL": "Short date format",
|
|
225
|
-
"TIME_FORMAT_LONG_DATE_FIELD_LABEL": "Long date format",
|
|
226
|
-
"TIME_FORMAT_SHORT_YEAR_FIELD_LABEL": "Short year format",
|
|
227
|
-
"TIME_FORMAT_LONG_YEAR_FIELD_LABEL": "Long year format",
|
|
228
|
-
"TIME_FORMAT_TIMEZONE_FIELD_LABEL": "Target timezone to use",
|
|
229
|
-
"UNITS_SETTINGS": "Units settings",
|
|
230
|
-
"LENGTH_FIELD_LABEL": "Default length unit",
|
|
231
|
-
"ALTITUDE_FIELD_LABEL": "Default altitude unit",
|
|
232
|
-
"AREA_FIELD_LABEL": "Default area unit",
|
|
233
|
-
"VELOCITY_FIELD_LABEL": "Default velocity unit",
|
|
234
|
-
"TEMPERATURE_FIELD_LABEL": "Default temperature unit",
|
|
235
|
-
"ANGLE_FIELD_LABEL": "Default angle unit",
|
|
236
|
-
"EQUIVALENT_DOSE_RATE_FIELD_LABEL": "Default equivalent dose rate unit",
|
|
237
|
-
"NOTATION_SETTINGS": "Number notation settings",
|
|
238
|
-
"NOTATION_FIELD_LABEL": "Default number notation",
|
|
239
|
-
"AUTO_NOTATION_FIELD_LABEL": "Select the best-suited number notation",
|
|
240
|
-
"FIXED_NOTATION_FIELD_LABEL": "Fixed precision number notation",
|
|
241
|
-
"EXPONENTIAL_NOTATION_FIELD_LABEL": "Exponential number notation",
|
|
242
|
-
"PRECISION_FIELD_LABEL": "Default number of decimal or significant digits",
|
|
243
|
-
"NAVIGATOR_APP_LABEL": "Default navigation application"
|
|
244
|
-
},
|
|
245
|
-
"tours": {
|
|
246
|
-
"APP_BAR_OVERFLOW_MENU_LABEL": "When not visible, you can find it using the popup menu.",
|
|
247
|
-
"APP_BAR_ACTIONS_LABEL": "When not visible, you can find it in the actions bar.",
|
|
248
|
-
"CARD_OVERFLOW_MENU_LABEL": "Open the popup menu to see more actions.",
|
|
249
|
-
"REMOVE_CONFIRMATION_LABEL": "A confirmation will be required before final removal.",
|
|
250
|
-
"login": {
|
|
251
|
-
"LOCAL_LABEL": "You can login using your <b>personal identifiers</b>.",
|
|
252
|
-
"EMAIL_LABEL": "Enter your email address first.",
|
|
253
|
-
"PASSWORD_LABEL": "Then enter your password.",
|
|
254
|
-
"PASSWORD_VISIBILITY_LABEL": "Display you password clearly if there is any doubt about.",
|
|
255
|
-
"LOGIN_LABEL": "Now, finish by login.",
|
|
256
|
-
"LOST_PASSWORD_LINK_LABEL": "If you have lost your password launch the <b>recovery procedure</b>",
|
|
257
|
-
"REGISTER_LINK_LABEL": "If you don't yet have an account launch the <b>registration procedure</b>"
|
|
258
|
-
},
|
|
259
|
-
"reset-password": {
|
|
260
|
-
"RESET_PROCEDURE_LABEL": "If you have lost your password we will send you an email back containing a code to <b>define a new one</b>.",
|
|
261
|
-
"EMAIL_LABEL": "First, enter the email address you have used to register or to get invited.",
|
|
262
|
-
"RESET_LABEL": "Now finish by sending the email containing the link (<b>please check the email is not in your spam folder</b>)."
|
|
263
|
-
},
|
|
264
|
-
"register": {
|
|
265
|
-
"LOCAL_LABEL": "You can register to the system by defining your <b>personal identifiers</b>.",
|
|
266
|
-
"NAME_LABEL": "Enter your name as viewed by others users first.",
|
|
267
|
-
"EMAIL_LABEL": "Enter the email address you will use to connect and receive security related messages.",
|
|
268
|
-
"PASSWORD_LABEL": "Choose a password, if it does not comply our security policy an alert will inform you about the rules to follow.",
|
|
269
|
-
"PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
|
|
270
|
-
"CONFIRM_PASSWORD_LABEL": "Confirm your password to avoid any error.",
|
|
271
|
-
"CONFIRM_PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
|
|
272
|
-
"TERMS_LABEL": "Read and accept our <b><a style='color:white' href='/#/terms'>terms of service</a></b> in order to use the system.",
|
|
273
|
-
"REGISTER_LABEL": "Last, create your account.",
|
|
274
|
-
"EMAIL_VERIFICATION_LABEL": "We will send you an email back containing a link to <b>verify your address</b>.",
|
|
275
|
-
"LOGIN_LINK_LABEL": "You can now login whenever you want using your <b>personal identifiers</b>"
|
|
276
|
-
},
|
|
277
|
-
"account": {
|
|
278
|
-
"PROFILE_LABEL": "This activity allows to update your profile information",
|
|
279
|
-
"AVATAR_LABEL": "Your avatar visible in the side menu when an image file has been selected.",
|
|
280
|
-
"NAME_LABEL": "Your name as viewed by others users.",
|
|
281
|
-
"UPDATE_LABEL": "Confirm the update in order to apply the modifications to your profile information.",
|
|
282
|
-
"ACCOUNT_LABEL": "Manage <b>your identifiers</b> and their security",
|
|
283
|
-
"VERIFY_EMAIL_LABEL": "This section allows you to check your email.",
|
|
284
|
-
"TOKEN_FIELD_LABEL": "Enter the code received by email.",
|
|
285
|
-
"RESEND_VERIFY_SIGNUP_LABEL": "If you haven't received it or have lost it, you can have a new one sent to you.",
|
|
286
|
-
"CONFIRM_VERIFY_EMAIL_LABEL": "Finally, confirm that.",
|
|
287
|
-
"PASSWORD_PROCEDURE_LABEL": "This section allows you to initiate the password change procedure.",
|
|
288
|
-
"OLD_PASSWORD_LABEL": "First, enter your previous password.",
|
|
289
|
-
"NEW_PASSWORD_LABEL": "Choose a new password, if it does not comply our security policy an alert will inform you about the rules to follow.",
|
|
290
|
-
"NEW_PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
|
|
291
|
-
"CONFIRM_NEW_PASSWORD_LABEL": "Confirm your password to avoid any error.",
|
|
292
|
-
"CHANGE_PASSWORD_LABEL": "Last, confirm the modification request.",
|
|
293
|
-
"CHANGE_IDENTITY_PROCEDURE_LABEL": "This section allows you to initiate the e-mail address change procedure.",
|
|
294
|
-
"PASSWORD_LABEL": "First, enter your password.",
|
|
295
|
-
"PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
|
|
296
|
-
"EMAIL_LABEL": "Enter your <b>new email address</b>.",
|
|
297
|
-
"CHANGE_EMAIL_LABEL": "An email containing a code to confirm the modification will be sent to your new address (<b>please check the email is not in your spam folder</b>).",
|
|
298
|
-
"SUBSCRIPTIONS_LABEL": "This section list all the subscriptions you have.",
|
|
299
|
-
"UNSUBSCRIBE_LABEL": "Check for any suspect activity and remove outdated subscriptions.",
|
|
300
|
-
"DANGER_ZONE_LABEL": "This activity allows to remove your account",
|
|
301
|
-
"DELETE_LABEL": "A manual confirmation will be required before final removal."
|
|
302
|
-
}
|
|
303
|
-
},
|
|
304
|
-
"exporter": {
|
|
305
|
-
"TITLE": "Export data",
|
|
306
|
-
"MESSAGE": "Select the file format to export",
|
|
307
|
-
"EXPORT": "Export",
|
|
308
|
-
"EXPORTING": "Please wait while exporting data",
|
|
309
|
-
"EXPORTS_LIMIT_REACHED": "You have reached the maximum number of exports allowed",
|
|
310
|
-
"SUCCEEDED": "Export successful: your data has been saved to the file <b>{filename}</b>",
|
|
311
|
-
"NO_DATA": "Export skipped: no data found to export",
|
|
312
|
-
"ERRORED": "Oops! Export failed: an error occurred while exporting data"
|
|
313
|
-
},
|
|
314
|
-
"reader": {
|
|
315
|
-
"READING_FILE": "Reading file {file}"
|
|
316
|
-
},
|
|
317
|
-
"storage": {
|
|
318
|
-
"UPLOADING_FILE": "Uploading file {file}",
|
|
319
|
-
"DOWNLOADING_FILE": "Downloading file {file}"
|
|
320
|
-
},
|
|
321
|
-
"KVersion": {
|
|
322
|
-
"CLIENT_VERSION": "Client v{version}",
|
|
323
|
-
"API_VERSION": "API v{version}"
|
|
324
|
-
},
|
|
325
|
-
"KSponsor": {
|
|
326
|
-
"KDK_POWERED": "Powered by Kalisio's Development Kit",
|
|
327
|
-
"MORE_ABOUT_KDK": "More about KDK",
|
|
328
|
-
"MORE_ABOUT_KALISIO": "More about Kalisio"
|
|
329
|
-
},
|
|
330
|
-
"KPlatform": {
|
|
331
|
-
"USER_AGENT": "User agent",
|
|
332
|
-
"APPLICATION": "Application",
|
|
333
|
-
"PERMISSIONS": "Permissions",
|
|
334
|
-
"PERMISSION_GRANTED": "Granted",
|
|
335
|
-
"PERMISSION_PROMPT": "Prompt",
|
|
336
|
-
"BROWSER": "Browser",
|
|
337
|
-
"LOCALE": "Locale",
|
|
338
|
-
"WEBGL": "WebGL support",
|
|
339
|
-
"SYSTEM": "System",
|
|
340
|
-
"COPY_INFO": "Copy info to clipboard",
|
|
341
|
-
"INFO_COPIED": "Platform info copied",
|
|
342
|
-
"CANNOT_COPY_INFO": "Cannot copy platform info"
|
|
343
|
-
},
|
|
344
|
-
"KAbout": {
|
|
345
|
-
"DOMAIN": "Hosted on",
|
|
346
|
-
"FLAVOR": "Flavor",
|
|
347
|
-
"VIEW_CHANGELOG": "Changelog",
|
|
348
|
-
"BUG_REPORT": "Report a bug",
|
|
349
|
-
"BUG_REPORT_SUBJECT": "[{appName}] Bug report - Client v{clientVersion} - API v{apiVersion}",
|
|
350
|
-
"BUG_REPORT_BODY": "Please detail your problem here%0D%0A%0D%0APlatform information to be kept%0D%0A%0D%0A",
|
|
351
|
-
"PLATFORM_INFO": "Platform information"
|
|
352
|
-
},
|
|
353
|
-
"KWelcome": {
|
|
354
|
-
"WELCOME_TITLE": "Welcome !",
|
|
355
|
-
"WELCOME_MESSAGE": "This quick start guide covers the main application features.",
|
|
356
|
-
"ONLINE_HELP": "Read first our online help to get an overview of the basic concepts",
|
|
357
|
-
"CONTEXTUAL_HELP": "To get contextual help whenever your are lost simply click on the following icon",
|
|
358
|
-
"TOUR_MESSAGE": "Launch now a quick overview tutorial detailing the main menu by clicking on the following icon",
|
|
359
|
-
"TOUR_LINK_MESSAGE": "Each time a tutorial step exhibits this icon it allows to launch a new one detailing the target feature.",
|
|
360
|
-
"GOODBYE_MESSAGE": "Thanks for reading this tutorial, you are now ready to use the application !",
|
|
361
|
-
"HIDE_WELCOME": "Don't display this message again"
|
|
362
|
-
},
|
|
363
|
-
"KTour": {
|
|
364
|
-
"SKIP_LABEL": "Skip",
|
|
365
|
-
"NEXT_LABEL": "Next",
|
|
366
|
-
"PREVIOUS_LABEL": "Previous",
|
|
367
|
-
"FINISH_LABEL": "Finish",
|
|
368
|
-
"MISS_ERROR": "Before going further please perform the required actions"
|
|
369
|
-
},
|
|
370
|
-
"KScreen": {
|
|
371
|
-
"CLIENT_VERSION": "Client v",
|
|
372
|
-
"API_VERSION": "API v",
|
|
373
|
-
"EMAIL_FIELD_LABEL": "Enter your email address",
|
|
374
|
-
"CHANGE_ENDPOINT_LINK": "Change endpoint",
|
|
375
|
-
"DEVELOPMENT_VERSION": "DEVELOPMENT VERSION",
|
|
376
|
-
"TEST_VERSION": "TEST VERSION"
|
|
377
|
-
},
|
|
378
|
-
"KErrorScreen": {
|
|
379
|
-
"MESSAGE": "Oups... page not found",
|
|
380
|
-
"GO_HOME_LABEL": "Go home page"
|
|
381
|
-
},
|
|
382
|
-
"KUnauthorizedScreen": {
|
|
383
|
-
"MESSAGE": "You are not authorized to access this page"
|
|
384
|
-
},
|
|
385
|
-
"KLoginScreen": {
|
|
386
|
-
"EMAIL_FIELD_LABEL": "@:KScreen.EMAIL_FIELD_LABEL",
|
|
387
|
-
"PASSWORD_FIELD_LABEL": "Enter your password",
|
|
388
|
-
"LOGIN_LABEL": "Log in",
|
|
389
|
-
"FORGOT_YOUR_PASSWORD_LABEL": "Forgot your password ?",
|
|
390
|
-
"DONT_HAVE_AN_ACCOUNT_LABEL": "Don't have an account ?",
|
|
391
|
-
"INVALID_EMAIL": "Unable to find the account associated with the email entered",
|
|
392
|
-
"LOGIN_ERROR": "Wrong credentials or service unavailable, please try again",
|
|
393
|
-
"CONTEXTUAL_HELP": "@:NEED_HELP"
|
|
394
|
-
},
|
|
395
|
-
"KRegisterScreen": {
|
|
396
|
-
"TITLE": "Register",
|
|
397
|
-
"NAME_FIELD_LABEL": "@:schemas.NAME_FIELD_LABEL",
|
|
398
|
-
"EMAIL_FIELD_LABEL": "@:KScreen.EMAIL_FIELD_LABEL",
|
|
399
|
-
"PASSWORD_FIELD_LABEL": "Enter a password",
|
|
400
|
-
"CONFIRM_PASSWORD_FIELD_LABEL": "Confirm your password",
|
|
401
|
-
"ACCEPT_TERMS_LABEL": "I accept the terms and policies",
|
|
402
|
-
"ACCEPT_TERMS_ERROR_LABEL": "You must accept our terms and policies to register",
|
|
403
|
-
"REGISTER_LABEL": "Register",
|
|
404
|
-
"EMAIL_ALREADY_TAKEN": "Email already taken !",
|
|
405
|
-
"REGISTER_ERROR": "Wrong input or service unavailable, please try again",
|
|
406
|
-
"CONTEXTUAL_HELP": "@:NEED_HELP",
|
|
407
|
-
"ALREADY_HAVE_AN_ACCOUNT_LINK": "Already have an account ?"
|
|
408
|
-
},
|
|
409
|
-
"KLogoutScreen": {
|
|
410
|
-
"TITLE": "You are now logged out",
|
|
411
|
-
"LOG_IN_AGAIN_LABEL": "Log in again ?"
|
|
412
|
-
},
|
|
413
|
-
"KProfile": {
|
|
414
|
-
"EDIT_PROFILE": "Edit my profile",
|
|
415
|
-
"MANAGE_ACCOUNT": "Manage my account"
|
|
416
|
-
},
|
|
417
|
-
"KSubscriptionsManager": {
|
|
418
|
-
"TITLE": "Manage my subscriptions",
|
|
419
|
-
"EMPTY": "No subscriptions"
|
|
420
|
-
},
|
|
421
|
-
"KSubscription": {
|
|
422
|
-
"UNSUBSCRIBE_LABEL": "Unsubscribe",
|
|
423
|
-
"LAST_ACTIVITY": "Last activity on {date} at {time}",
|
|
424
|
-
"UNSUBSCRIBE_DIALOG_TITLE": "Unsubscribe from {description} ?",
|
|
425
|
-
"UNSUBSCRIBE_DIALOG_MESSAGE": "Are you sure you want to unsubscribe your account from <b>{description}</b> ?<br><br>You will not be able to receive notifications until you reconnect using this service."
|
|
426
|
-
},
|
|
427
|
-
"KGrid": {
|
|
428
|
-
"EMPTY_LABEL": "@:NO_ITEM"
|
|
429
|
-
},
|
|
430
|
-
"KTable": {
|
|
431
|
-
"EMPTY_TABLE": "@:NO_ITEM",
|
|
432
|
-
"TABLE_COLUMNS": "Properties"
|
|
433
|
-
},
|
|
434
|
-
"KDataTable": {
|
|
435
|
-
"EMPTY_TABLE": "@:NO_ITEM",
|
|
436
|
-
"TABLE_COLUMNS": "Properties",
|
|
437
|
-
"NO_DATA_AVAILABLE": "No data available",
|
|
438
|
-
"EXPORT_DATA": "Export data",
|
|
439
|
-
"DATA_EXPORT_FILE": "Data.csv"
|
|
440
|
-
},
|
|
441
|
-
"KTimeLine": {
|
|
442
|
-
"EMPTY_LABEL": "@:NO_ITEM"
|
|
443
|
-
},
|
|
444
|
-
"KScrollToTop": {
|
|
445
|
-
"TOOLTIP": "Scroll to top"
|
|
446
|
-
},
|
|
447
|
-
"KCard": {
|
|
448
|
-
"MORE_DETAILS": "More details",
|
|
449
|
-
"LESS_DETAILS": "Less details"
|
|
450
|
-
},
|
|
451
|
-
"KDescriptionCardSection": {
|
|
452
|
-
"TITLE": "Description",
|
|
453
|
-
"NO_DESCRIPTION": "No description"
|
|
454
|
-
},
|
|
455
|
-
"KColorChooser": {
|
|
456
|
-
"CANCEL_BUTTON": "@:CANCEL",
|
|
457
|
-
"DONE_BUTTON": "@:DONE"
|
|
458
|
-
},
|
|
459
|
-
"KIconChooser": {
|
|
460
|
-
"CLOSE_ACTION": "@:CANCEL",
|
|
461
|
-
"DONE_BUTTON": "@:DONE",
|
|
462
|
-
"SEARCH_FIELD_LABEL": "Type to search",
|
|
463
|
-
"SEARCH_CATEGORY_LABEL": "All categories",
|
|
464
|
-
"categories": {
|
|
465
|
-
"accessibility": "accessibility",
|
|
466
|
-
"alert": "alert",
|
|
467
|
-
"animals": "animals",
|
|
468
|
-
"arrows": "arrows",
|
|
469
|
-
"audio-video": "audio-video",
|
|
470
|
-
"automotive": "automotive",
|
|
471
|
-
"autumn": "autumn",
|
|
472
|
-
"beverage": "beverage",
|
|
473
|
-
"buildings": "buildings",
|
|
474
|
-
"business": "business",
|
|
475
|
-
"camping": "camping",
|
|
476
|
-
"charity": "charity",
|
|
477
|
-
"chat": "chat",
|
|
478
|
-
"chess": "chess",
|
|
479
|
-
"childhood": "childhood",
|
|
480
|
-
"clothing": "clothing",
|
|
481
|
-
"code": "code",
|
|
482
|
-
"communication": "communication",
|
|
483
|
-
"computers": "computers",
|
|
484
|
-
"construction": "construction",
|
|
485
|
-
"currency": "currency",
|
|
486
|
-
"date-time": "date-time",
|
|
487
|
-
"design": "design",
|
|
488
|
-
"editors": "editors",
|
|
489
|
-
"education": "education",
|
|
490
|
-
"emoji": "emoji",
|
|
491
|
-
"energy": "energy",
|
|
492
|
-
"files": "files",
|
|
493
|
-
"finance": "finance",
|
|
494
|
-
"fitness": "fitness",
|
|
495
|
-
"food": "food",
|
|
496
|
-
"fruit-vegetable": "fruit-vegetable",
|
|
497
|
-
"games": "games",
|
|
498
|
-
"gaming-tabletop": "gaming-tabletop",
|
|
499
|
-
"gender": "gender",
|
|
500
|
-
"halloween": "halloween",
|
|
501
|
-
"hands": "hands",
|
|
502
|
-
"health": "health",
|
|
503
|
-
"holiday": "holiday",
|
|
504
|
-
"hotel": "hotel",
|
|
505
|
-
"household": "household",
|
|
506
|
-
"images": "images",
|
|
507
|
-
"interfaces": "interfaces",
|
|
508
|
-
"logistics": "logistics",
|
|
509
|
-
"maps": "maps",
|
|
510
|
-
"maritime": "maritime",
|
|
511
|
-
"marketing": "marketing",
|
|
512
|
-
"mathematics": "mathematics",
|
|
513
|
-
"medical": "medical",
|
|
514
|
-
"moving": "moving",
|
|
515
|
-
"music": "music",
|
|
516
|
-
"objects": "objects",
|
|
517
|
-
"payments-shopping": "payments-shopping",
|
|
518
|
-
"pharmacy": "pharmacy",
|
|
519
|
-
"political": "political",
|
|
520
|
-
"religion": "religion",
|
|
521
|
-
"science": "science",
|
|
522
|
-
"science-fiction": "science-fiction",
|
|
523
|
-
"security": "security",
|
|
524
|
-
"shapes": "shapes",
|
|
525
|
-
"shopping": "shopping",
|
|
526
|
-
"social": "social",
|
|
527
|
-
"spinners": "spinners",
|
|
528
|
-
"sports": "sports",
|
|
529
|
-
"spring": "spring",
|
|
530
|
-
"status": "status",
|
|
531
|
-
"summer": "summer",
|
|
532
|
-
"toggle": "toggle",
|
|
533
|
-
"travel": "travel",
|
|
534
|
-
"users-people": "users-people",
|
|
535
|
-
"vehicles": "vehicles",
|
|
536
|
-
"weather": "weather",
|
|
537
|
-
"winter": "winter",
|
|
538
|
-
"writing": "writing"
|
|
539
|
-
}
|
|
540
|
-
},
|
|
541
|
-
"KTextAreaField": {
|
|
542
|
-
"CLEAR_TOOLTIP": "Clear content"
|
|
543
|
-
},
|
|
544
|
-
"KResolutionField": {
|
|
545
|
-
"SD_LABEL": "Standard Definition",
|
|
546
|
-
"SD_DESCRIPTION": "4:3, 640 x 480",
|
|
547
|
-
"HD_LABEL": "High Definition",
|
|
548
|
-
"HD_DESCRIPTION": "16:9, 1280 x 720",
|
|
549
|
-
"FHD_LABEL": "Full HD",
|
|
550
|
-
"FHD_DESCRIPTION": "16:9, 1920 x 1080",
|
|
551
|
-
"QHD_LABEL": "Quad HD",
|
|
552
|
-
"QHD_DESCRIPTION": "16:9, 2560 x 1440",
|
|
553
|
-
"2K_LABEL": "2K",
|
|
554
|
-
"2K_DESCRIPTION": "1:1.77, 2048 x 1080",
|
|
555
|
-
"4K_LABEL": "4K or Ultra HD",
|
|
556
|
-
"4K_DESCRIPTION": "1:1.9, 3840 x 2160",
|
|
557
|
-
"8K_LABEL": "8K or Full Ultra HD",
|
|
558
|
-
"8K_DESCRIPTION": "16∶9, 7680 x 4320",
|
|
559
|
-
"PERSONALIZED_LABEL": "Personalized"
|
|
560
|
-
},
|
|
561
|
-
"KFileField": {
|
|
562
|
-
"INVALID_FILE_TYPE": "Invalid file type, please select the right file type",
|
|
563
|
-
"INVALID_FILE_SIZE": "Invalid file size, the file is too large",
|
|
564
|
-
"UPLOAD_FILE_SUCCEEDED": "File {file} has been successfully uploaded",
|
|
565
|
-
"UPLOAD_FILE_ERRORED": "Cannot upload file {file} !"
|
|
566
|
-
},
|
|
567
|
-
"KCronField": {
|
|
568
|
-
"INVALID_CRON": "Invalid CRON expression"
|
|
569
|
-
},
|
|
570
|
-
"KMediaBrowser": {
|
|
571
|
-
"CLOSE_ACTION": "@:CLOSE",
|
|
572
|
-
"DOWNLOAD_MEDIA_ACTION": "Download media",
|
|
573
|
-
"RESTORE_IMAGE_ACTION": "Restore image",
|
|
574
|
-
"REMOVE_MEDIA_ACTION": "Remove the media",
|
|
575
|
-
"REMOVE_DIALOG_TITLE": "Remove the media {media} ?",
|
|
576
|
-
"REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove the media <b>{media}</b> ?",
|
|
577
|
-
"ADD_MEDIA_LABEL": "Add a media",
|
|
578
|
-
"ADD_PHOTO_LABEL": "Add a photo",
|
|
579
|
-
"UPLOAD_TITLE": "Add a media",
|
|
580
|
-
"UPLOAD_FILE_FIELD_LABEL": "Select a file",
|
|
581
|
-
"UPLOAD": "Add",
|
|
582
|
-
"NO_MEDIA": "There is no media to show, please add a media first with one of the action buttons."
|
|
583
|
-
},
|
|
584
|
-
"KMessageCard": {
|
|
585
|
-
"VIEW_ATTACHMENT": "View attachment",
|
|
586
|
-
"DOWNLOAD_ATTACHMENT": "Download attachment",
|
|
587
|
-
"EDIT_MESSAGE": "Edit message"
|
|
588
|
-
},
|
|
589
|
-
"KMessageComposer": {
|
|
590
|
-
"FORMAT_MESSAGE": "Format message",
|
|
591
|
-
"ATTACH_FILE": "Attach file",
|
|
592
|
-
"WRITE_YOUR_MESSAGE": "Write your message...",
|
|
593
|
-
"SEND_MESSAGE": "Send message",
|
|
594
|
-
"OPEN_EDITOR": "Open editor",
|
|
595
|
-
"CLOSE_EDITOR": "Close editor",
|
|
596
|
-
"message-type": {
|
|
597
|
-
"INFORMATION": "Information",
|
|
598
|
-
"WARNING": "Warning",
|
|
599
|
-
"ALERT": "Alert"
|
|
600
|
-
}
|
|
601
|
-
},
|
|
602
|
-
"KFab": {
|
|
603
|
-
"CLOSE_ACTION": "@:CLOSE"
|
|
604
|
-
},
|
|
605
|
-
"KModal": {
|
|
606
|
-
"CLOSE_ACTION": "@:CLOSE"
|
|
607
|
-
},
|
|
608
|
-
"KWindow": {
|
|
609
|
-
"CLOSE_ACTION": "@:CLOSE",
|
|
610
|
-
"PIN_ACTION": "Pin",
|
|
611
|
-
"RESTORE_ACTION": "Restore",
|
|
612
|
-
"MAXIMIZE_ACTION": "Maximize"
|
|
613
|
-
},
|
|
614
|
-
"KResetPassword": {
|
|
615
|
-
"TITLE": "Reset your password ?",
|
|
616
|
-
"MESSAGE": "Please enter your new password to proceed",
|
|
617
|
-
"ACTION": "Reset",
|
|
618
|
-
"RESEND_LINK": "Resend reset password code",
|
|
619
|
-
"EMAIL_FIELD_LABEL": "Enter your email address",
|
|
620
|
-
"PASSWORD_FIELD_LABEL": "Enter your new password",
|
|
621
|
-
"CONFIRM_PASSWORD_FIELD_LABEL": "Confirm your new password",
|
|
622
|
-
"TOKEN_FIELD_LABEL": "Enter the code received by email",
|
|
623
|
-
"SUCCESS_MESSAGE": "Password reset, you will receive a confirmation email",
|
|
624
|
-
"ERROR_MESSAGE_BAD_PARAMS": "Your password has already been reset or your account has been removed",
|
|
625
|
-
"ERROR_MESSAGE_VERIFY_EXPIRED": "The delay to reset has expired, please resend the reset password email with the link below",
|
|
626
|
-
"ERROR_MESSAGE_DEFAULT": "Error while trying to reset password, please try again later"
|
|
627
|
-
},
|
|
628
|
-
"KSendResetPassword": {
|
|
629
|
-
"TITLE": "Reset my password ?",
|
|
630
|
-
"MESSAGE": "Enter your email address and we will send you a code to reset your password",
|
|
631
|
-
"ACTION": "Send",
|
|
632
|
-
"EMAIL_FIELD_LABEL": "Enter your email address",
|
|
633
|
-
"ERROR_INVALID_EMAIL": "Unable to find the account associated to the email entered",
|
|
634
|
-
"ERROR_MESSAGE_IS_VERIFIED": "Check your inbox and verify your email address first",
|
|
635
|
-
"ERROR_MESSAGE_DEFAULT": "Error while sending email, please check the address and send it again or try again later"
|
|
636
|
-
},
|
|
637
|
-
"KSorter": {
|
|
638
|
-
"SORT": "Sort"
|
|
639
|
-
},
|
|
640
|
-
"KAbsoluteTimeRange": {
|
|
641
|
-
"PICK_START_DATE_LABEL": "Update start date",
|
|
642
|
-
"PICK_START_TIME_LABEL": "Update start time",
|
|
643
|
-
"PICK_END_DATE_LABEL": "Update end date",
|
|
644
|
-
"PICK_END_TIME_LABEL": "Update end time"
|
|
645
|
-
},
|
|
646
|
-
"KRelativeTimeRanges": {
|
|
647
|
-
"LAST_HOUR_LABEL": "Last hour",
|
|
648
|
-
"LAST_2_HOURS_LABEL": "Last 2 hours",
|
|
649
|
-
"LAST_3_HOURS_LABEL": "Last 3 hours",
|
|
650
|
-
"LAST_6_HOURS_LABEL": "Last 6 hours",
|
|
651
|
-
"LAST_12_HOURS_LABEL": "Last 12 hours",
|
|
652
|
-
"LAST_DAY_LABEL": "Last day",
|
|
653
|
-
"LAST_2_DAYS_LABEL": "Last 2 days",
|
|
654
|
-
"LAST_3_DAYS_LABEL": "Last 3 days",
|
|
655
|
-
"LAST_WEEK_LABEL": "Last week",
|
|
656
|
-
"LAST_2_WEEKS_LABEL": "Last 2 weeks",
|
|
657
|
-
"LAST_MONTH_LABEL": "Last month",
|
|
658
|
-
"LAST_3_MONTHS_LABEL": "Last 3 months",
|
|
659
|
-
"LAST_6_MONTHS_LABEL": "Last 6 months",
|
|
660
|
-
"LAST_YEAR_LABEL": "Last year",
|
|
661
|
-
"LAST_2_YEARS_LABEL": "Last 2 years",
|
|
662
|
-
"LAST_3_YEARS_LABEL": "Last 3 years",
|
|
663
|
-
"LAST_5_YEARS_LABEL": "Last 5 years",
|
|
664
|
-
"NEXT_HOUR_LABEL": "Next hour",
|
|
665
|
-
"NEXT_2_HOURS_LABEL": "Next 2 hours",
|
|
666
|
-
"NEXT_3_HOURS_LABEL": "Next 3 hours",
|
|
667
|
-
"NEXT_6_HOURS_LABEL": "Next 6 hours",
|
|
668
|
-
"NEXT_12_HOURS_LABEL": "Next 12 hours",
|
|
669
|
-
"NEXT_DAY_LABEL": "Next day",
|
|
670
|
-
"NEXT_2_DAYS_LABEL": "Next 2 days",
|
|
671
|
-
"NEXT_3_DAYS_LABEL": "Next 3 days",
|
|
672
|
-
"NEXT_WEEK_LABEL": "Next week",
|
|
673
|
-
"NEXT_2_WEEKS_LABEL": "Next 2 weeks",
|
|
674
|
-
"NEXT_MONTH_LABEL": "Next month",
|
|
675
|
-
"NEXT_3_MONTHS_LABEL": "Next 3 months",
|
|
676
|
-
"NEXT_6_MONTHS_LABEL": "Next 6 months",
|
|
677
|
-
"NEXT_YEAR_LABEL": "Next year"
|
|
678
|
-
},
|
|
679
|
-
"KChart": {
|
|
680
|
-
"NO_DATA_AVAILABLE": "No data available"
|
|
681
|
-
},
|
|
682
|
-
"KTimeSeriesChart": {
|
|
683
|
-
"TIME_LABEL": "Time",
|
|
684
|
-
"NO_DATA_AVAILABLE": "No data available",
|
|
685
|
-
"EXPORT_SERIES": "Export series",
|
|
686
|
-
"SERIES_EXPORT_FILE": "Series.csv"
|
|
687
|
-
},
|
|
688
|
-
"KFilter": {
|
|
689
|
-
"SEARCH_LABEL": "@:SEARCH"
|
|
690
|
-
},
|
|
691
|
-
"KTagsFilterControl": {
|
|
692
|
-
"FILTER": "Filter by properties"
|
|
693
|
-
},
|
|
694
|
-
"KTimeFilterControl": {
|
|
695
|
-
"FILTER": "Filter by time"
|
|
696
|
-
},
|
|
697
|
-
"KTextArea": {
|
|
698
|
-
"COLLAPSE": "Collapse"
|
|
699
|
-
},
|
|
700
|
-
"KTimeControl": {
|
|
701
|
-
"PREVIOUS_STEP": "Previous step",
|
|
702
|
-
"PREVIOUS_HOUR": "Previous hour",
|
|
703
|
-
"PREVIOUS_DAY": "Previous day",
|
|
704
|
-
"START_REALTIME": "Start real-time",
|
|
705
|
-
"STOP_REALTIME": "Stop real-time",
|
|
706
|
-
"SET_DATETIME": "Set date and time",
|
|
707
|
-
"SET_STEP": "Set step",
|
|
708
|
-
"NEXT_DAY": "Next day",
|
|
709
|
-
"NEXT_HOUR": "Next hour",
|
|
710
|
-
"NEXT_STEP": "Next step"
|
|
711
|
-
},
|
|
712
|
-
"KImage": {
|
|
713
|
-
"RESET": "Reset"
|
|
714
|
-
},
|
|
715
|
-
"KBrowser": {
|
|
716
|
-
"DOWNLOAD_FILE": "Download file",
|
|
717
|
-
"UPLOAD_FILES": "Upload files",
|
|
718
|
-
"UPLOAD": "Upload",
|
|
719
|
-
"DELETE_FILE": "Delete file",
|
|
720
|
-
"DELETE_FILE_MESSAGE": "Are you sure you want to delete {name} ?",
|
|
721
|
-
"CANNOT_BE_VIEWED": "This file cannot be viewed",
|
|
722
|
-
"NO_FILES": "No files"
|
|
723
|
-
},
|
|
724
|
-
"KUploader": {
|
|
725
|
-
"ADD_FILES": "Add files...",
|
|
726
|
-
"EMPTY_FILE": "File {file} is empty or corrupted !",
|
|
727
|
-
"INVALID_TYPE": "Type of file {file} is invalid !",
|
|
728
|
-
"FILE_TOO_LARGE": "File {file} is too large. The size must be less than {size}Mb",
|
|
729
|
-
"UPLOAD_FILE_SUCCEEDED": "File {file} has been successfully uploaded",
|
|
730
|
-
"UPLOAD_FILE_ERRORED": "Cannot upload file {file} !"
|
|
731
|
-
},
|
|
732
|
-
"KTagManager": {
|
|
733
|
-
"TITLE": "Tags",
|
|
734
|
-
"CREATE_TAG": "Create a tag",
|
|
735
|
-
"EDIT_TAG": "Edit tag",
|
|
736
|
-
"DELETE_TAG": "Delete tag",
|
|
737
|
-
"SORT_TAGS": "Sort tags",
|
|
738
|
-
"CREATE_TAG_ON_THE_FLY": "Create tag",
|
|
739
|
-
"TAG_NAME": "Enter the name",
|
|
740
|
-
"TAG_SERVICE": "Tag type",
|
|
741
|
-
"TAG_DESCRIPTION": "Enter a description",
|
|
742
|
-
"TAG_COLOR": "Select a color"
|
|
743
|
-
}
|
|
744
|
-
}
|