@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_fr.json
DELETED
|
@@ -1,744 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"OOPS": "Oups !",
|
|
3
|
-
"OK": "Ok",
|
|
4
|
-
"YES": "Oui",
|
|
5
|
-
"NO": "Non",
|
|
6
|
-
"ALERT": "Alerte",
|
|
7
|
-
"WARNING": "Avertissement",
|
|
8
|
-
"INFORMATION": "Information",
|
|
9
|
-
"CANCEL": "Annuler",
|
|
10
|
-
"UPDATE": "Mettre à jour",
|
|
11
|
-
"CREATE": "Créer",
|
|
12
|
-
"DELETE": "Supprimer",
|
|
13
|
-
"RESET": "Réinitialiser",
|
|
14
|
-
"CLOSE": "Fermer",
|
|
15
|
-
"SEARCH": "Rechercher...",
|
|
16
|
-
"DONE": "Ok",
|
|
17
|
-
"APPLY": "Appliquer",
|
|
18
|
-
"RETRY": "Réessayer",
|
|
19
|
-
"NO_ITEM": "Aucun élément",
|
|
20
|
-
"NIL": "Non défini(e)",
|
|
21
|
-
"MEMBERS": "Membres",
|
|
22
|
-
"TAGS": "Etiquettes",
|
|
23
|
-
"GROUPS": "Groupes",
|
|
24
|
-
"EDIT": "Éditer",
|
|
25
|
-
"REMOVE": "Supprimer",
|
|
26
|
-
"OWNER": "Propriétaire",
|
|
27
|
-
"MANAGER": "Gestionnaire",
|
|
28
|
-
"MEMBER": "Membre",
|
|
29
|
-
"UNAMED": "Sans nom",
|
|
30
|
-
"HELP": "Aide",
|
|
31
|
-
"NEED_HELP": "Besoin d'aide ?",
|
|
32
|
-
"READ_MORE": "En savoir plus",
|
|
33
|
-
"BACK": "Retour",
|
|
34
|
-
"LEGAL_NOTICE": "Mentions légales",
|
|
35
|
-
"PRIVACY_POLICY": "Politique de confidentialité",
|
|
36
|
-
"layout": {
|
|
37
|
-
"MY_SETTINGS": "Mes paramètres",
|
|
38
|
-
"ABOUT": "A propos",
|
|
39
|
-
"ONLINE_HELP": "Aide en ligne",
|
|
40
|
-
"CONTEXTUAL_HELP": "Aide contextuelle",
|
|
41
|
-
"LOGOUT": "Se déconnecter",
|
|
42
|
-
"ENTER_FULLSCREEN": "Basculer en mode plein écran",
|
|
43
|
-
"EXIT_FULLSCREEN": "Quitter le mode plein écran"
|
|
44
|
-
},
|
|
45
|
-
"errors": {
|
|
46
|
-
"400": "Cette opération ne peut être réalisée: paramètres incorrects",
|
|
47
|
-
"401": "Cette opération ne peut être réalisée: vous devez être authentifié",
|
|
48
|
-
"402": "Cette opération ne peut être réalisée: erreur de paiement",
|
|
49
|
-
"403": "Cette opération ne peut être réalisée: non autorisée",
|
|
50
|
-
"404": "Cette opération ne peut être réalisée: introuvable",
|
|
51
|
-
"405": "Cette opération ne peut être réalisée: non autorisée",
|
|
52
|
-
"406": "Cette opération ne peut être réalisée: non autorisée",
|
|
53
|
-
"408": "Cette opération ne peut être réalisée: temps alloué écoulé",
|
|
54
|
-
"409": "Cette opération ne peut être réalisée: conflit",
|
|
55
|
-
"411": "Cette opération ne peut être réalisée: taille requise",
|
|
56
|
-
"422": "Cette opération ne peut être réalisée: impossible à traiter",
|
|
57
|
-
"429": "Cette opération ne peut être réalisée: trop de requêtes",
|
|
58
|
-
"498": "Ce système ou navigateur ne prend pas en charge les notifications push web",
|
|
59
|
-
"499": "Veuillez modifier les paramètres de votre application ou du navigateur pour autoriser les notifications",
|
|
60
|
-
"500": "Cette opération ne peut être réalisée: une erreur a été rencontrée",
|
|
61
|
-
"501": "Cette opération ne peut être réalisée: non gérée",
|
|
62
|
-
"502": "Cette opération ne peut être réalisée: service introuvable",
|
|
63
|
-
"503": "Cette opération ne peut être réalisée: service indisponible",
|
|
64
|
-
"RETRY": "Veuillez réessayer plus tard ou modifier votre paramétrage",
|
|
65
|
-
"RATE_LIMITING": "Trop de requête vers l'API en un laps de temps donné (limitation de débit)",
|
|
66
|
-
"RATE_LIMITING_AUTHENTICATION": "Trop de requête d'authentification en un laps de temps donné (limitation de débit)",
|
|
67
|
-
"RATE_LIMITING_CONCURRENCY": "Trop de connexions simultanées (limitation de débit)",
|
|
68
|
-
"COUNT_LIMITING": "Trop de ressources utilisées (quota dépassé)",
|
|
69
|
-
"WEAK_PASSWORD": "Le mot de passe ne respecte pas nos règles de sécurité",
|
|
70
|
-
"WEAK_PASSWORD_MIN": "Taille minimale de {minLength} caractères",
|
|
71
|
-
"WEAK_PASSWORD_MAX": "Taille maximale de {maxLength} caractères",
|
|
72
|
-
"WEAK_PASSWORD_LOWERCASE": "Au moins une lettre minuscule",
|
|
73
|
-
"WEAK_PASSWORD_UPPERCASE": "Au moins une lettre majuscule",
|
|
74
|
-
"WEAK_PASSWORD_DIGITS": "Au moins un nombre",
|
|
75
|
-
"WEAK_PASSWORD_SYMBOLS": "Au moins un caractère spécial comme :;?!+-.,^@",
|
|
76
|
-
"WEAK_PASSWORD_ONEOF": "Non reconnu comme l'un des mots de passe les plus courants",
|
|
77
|
-
"WEAK_PASSWORD_PREVIOUS": "Différents de vos {history} derniers mots de passe",
|
|
78
|
-
"CANNOT_PROCESS_DOWNLOAD_DATA": "Fichier invalide ou incomplet",
|
|
79
|
-
"CANNOT_REMOVE_USER": "Vous n’êtes pas autorisé à supprimer ce compte.<br>Veuillez d’abord supprimer les organisations appartenant à <b>{user}</b>.",
|
|
80
|
-
"CANNOT_REMOVE_ORGANISATION": "Vous n’êtes pas autorisé à supprimer cette organisation.<br>Veuillez d’abord supprimer tous les groupes.",
|
|
81
|
-
"CANNOT_REMOVE_LAST_OWNER": "Vous n’êtes pas autorisé à supprimer le dernier propriétaire de <b>{resource}</b>",
|
|
82
|
-
"DUPLICATED_FILE": "Le fichier {file} a déjà été ajouté",
|
|
83
|
-
"OAUTH2_PROVIDER": "Vous ne pouvez modifier votre compte car il est géré par {provider}, pour utiliser un compte local réinitialisez tout d'abord votre mot de passe",
|
|
84
|
-
"EMAIL_ALREADY_TAKEN": "Un utilisateur semble déjà enregistré avec cette adresse mail",
|
|
85
|
-
"OBJECT_ID_ALREADY_TAKEN": "Un élément semble déjà enregistré avec cet identifiant. Merci de réessayer avec une autre valeur.",
|
|
86
|
-
"MAX_FILES_REACHED": "Oups ! Vous ne pouvez déposer qu'un seul fichier | Oups ! Vous ne pouvez déposer que jusqu’à {n} fichiers à la fois",
|
|
87
|
-
"MAX_FILE_SIZE_REACHED": "Oups ! Le fichier {file} dépasse la taille maximale autorisée de {maxSize}",
|
|
88
|
-
"MAX_TOTAL_SIZE_FILES_REACHED": "Oups ! La taille totale de tous les fichiers dépasse la limite maximale autorisée de {maxSize}",
|
|
89
|
-
"UNSUPPORTED_FILE_FORMAT": "Oups ! Le format du fichier {file} n'est pas supporté",
|
|
90
|
-
"CANNOT_READ_FILE": "Oups ! Impossible de lire le fichier {file}",
|
|
91
|
-
"INVALID_JSON_FILE": "Oups ! {file} n'est pas un fichier JSON valide",
|
|
92
|
-
"INVALID_CSV_FILE": "Oups ! {file} n'est pas un fichier CSV valide",
|
|
93
|
-
"NETWORK_ERROR": "Oups ! Une erreur réseau s'est produite ou le service est indisponible"
|
|
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": "Mètres",
|
|
132
|
-
"FEET_LABEL": "Pieds",
|
|
133
|
-
"MILE_LABEL": "Milles",
|
|
134
|
-
"NAUTICAL_MILE_LABEL": "Milles nautique",
|
|
135
|
-
"SQUARED_METER_LABEL": "Mètres carrés",
|
|
136
|
-
"SQUARED_KILOMETER_LABEL": "Kilomètres carrés",
|
|
137
|
-
"ACRE_LABEL": "Acres",
|
|
138
|
-
"HECTARE_LABEL": "Hectares",
|
|
139
|
-
"METER_PER_SECOND_LABEL": "Mètres par seconde",
|
|
140
|
-
"KILOMETER_PER_HOUR_LABEL": "Kilomètres par heure",
|
|
141
|
-
"MILES_PER_HOUR_LABEL": "Milles par heure",
|
|
142
|
-
"KNOT_LABEL": "Noeuds",
|
|
143
|
-
"CELSIUS_LABEL": "Degrés celcius",
|
|
144
|
-
"FAHRENHEIT_LABEL": "Degrés Fahrenheit",
|
|
145
|
-
"KELVIN_LABEL": "Kelvins",
|
|
146
|
-
"DEGREE_LABEL": "Degrés",
|
|
147
|
-
"RADIAN_LABEL": "Radians",
|
|
148
|
-
"PPM_LABEL": "Partie par million",
|
|
149
|
-
"MICROGRAM_PER_M3_LABEL": "Microgramme par mètre cube",
|
|
150
|
-
"CUBIC_METER_PER_SECOND_LABEL": "Mètre cube par seconde",
|
|
151
|
-
"BEQUEREL_LABEL": "Bequerels",
|
|
152
|
-
"BEQUEREL_PER_M2_LABEL": "Bequerels par mètre carré",
|
|
153
|
-
"BEQUEREL_PER_M3_LABEL": "Bequerels par mètre cube",
|
|
154
|
-
"SIEVERT_LABEL": "Sieverts",
|
|
155
|
-
"MILLISIEVERT_LABEL": "Millisieverts",
|
|
156
|
-
"MICROSIEVERT_LABEL": "Microsieverts",
|
|
157
|
-
"NANOSIEVERT_LABEL": "Nanosieverts",
|
|
158
|
-
"SIEVERT_PER_SECOND_LABEL": "Sieverts par seconde",
|
|
159
|
-
"MILLISIEVERT_PER_SECOND_LABEL": "Millisieverts par seconde",
|
|
160
|
-
"MICROSIEVERT_PER_SECOND_LABEL": "Microsieverts par seconde",
|
|
161
|
-
"NANOSIEVERT_PER_SECOND_LABEL": "Nanosieverts par seconde",
|
|
162
|
-
"SIEVERT_PER_HOUR_LABEL": "Sieverts par heure",
|
|
163
|
-
"MILLISIEVERT_PER_HOUR_LABEL": "Millisieverts par heure",
|
|
164
|
-
"MICROSIEVERT_PER_HOUR_LABEL": "Microsieverts par heure",
|
|
165
|
-
"NANOSIEVERT_PER_HOUR_LABEL": "Nanosieverts par heure"
|
|
166
|
-
},
|
|
167
|
-
"directives": {
|
|
168
|
-
"ALL_FILES_ARE_UNSUPPORTED": "Oups ! Fichier non pris en charge | Oups ! Aucun des fichiers n'est pris en charge",
|
|
169
|
-
"SOME_FILES_ARE_UNSUPPORTED": "Certains fichiers seront ignorés en raison de types non pris en charge",
|
|
170
|
-
"DROP_FILES": "Déposez le fichier ici | Déposez les fichiers ici"
|
|
171
|
-
},
|
|
172
|
-
"mixins": {
|
|
173
|
-
"baseItem": {
|
|
174
|
-
"REMOVE_ITEM_TITLE": "Êtes vous sûr de vouloir supprimer <b>{name}</b> ?",
|
|
175
|
-
"REMOVE_ITEM_MESSAGE": "Merci de saisir le nom pour confirmer la suppression",
|
|
176
|
-
"ITEM_EXPORTED": "Export du contenu de {name} dans {file}",
|
|
177
|
-
"CANNOT_EXPORT_ITEM": "Impossible d'exporter {name}. Votre navigateur supporte t'il la fonctionnalité ?"
|
|
178
|
-
}
|
|
179
|
-
},
|
|
180
|
-
"composables": {
|
|
181
|
-
"ANONYMOUS": "Anonyme",
|
|
182
|
-
"VERSION_MISMATCH": "Discordance de version, merci d'installer la dernière version disponible ou de vérifier votre point d'accès",
|
|
183
|
-
"session": {
|
|
184
|
-
"DISCONNECT": "La connexion au serveur a été interrompue, merci de patienter jusqu'à la reconnexion...",
|
|
185
|
-
"RECONNECT": "La connexion au serveur a été rétablie, vous pouvez rafraîchir l'application si des données ont été mises à jour.",
|
|
186
|
-
"RELOAD": "Rafraîchir",
|
|
187
|
-
"REFUSED": "Votre connexion a été refusée par le serveur, vous avez été déconnecté...",
|
|
188
|
-
"IGNORE": "Ignorer",
|
|
189
|
-
"RETRY": "Réessayer",
|
|
190
|
-
"ALERT": "Alerte",
|
|
191
|
-
"INFORMATION": "Information"
|
|
192
|
-
},
|
|
193
|
-
"pwa": {
|
|
194
|
-
"UPDATE_MESSAGE": "<b>Une nouvelle version est disponible</b>, l'application sera mise à jour d'ici quelques secondes."
|
|
195
|
-
},
|
|
196
|
-
"context": {
|
|
197
|
-
"REMOVED_MESSAGE": "L'objet contexte a été supprimé. Vous allez être redirigé vers la page d'accueil."
|
|
198
|
-
}
|
|
199
|
-
},
|
|
200
|
-
"utils": {
|
|
201
|
-
"files": {
|
|
202
|
-
"B": "o",
|
|
203
|
-
"KB": "Ko",
|
|
204
|
-
"MB": "Mo"
|
|
205
|
-
},
|
|
206
|
-
"pwa": {
|
|
207
|
-
"INSTALL_TITLE": "Installer l'application ?",
|
|
208
|
-
"INSTALL_MESSAGE": "Nous vous recommandons d'installer l'application pour profiter pleinement de toutes les fonctionnalités",
|
|
209
|
-
"IOS_INSTALL_MESSAGE": "Nous vous recommandons d'installer l'application pour profiter pleinement de toutes les fonctionnalités.<br>Depuis <b>Safari</b> cliquez sur <i class=\"material-icons\">ios_share</i> puis sur <b>Ajouter à l'écran d'accueil</b>",
|
|
210
|
-
"FIREFOX_DESKTOP_INSTALL_MESSAGE": "Nous vous recommandons d'installer l'application pour profiter pleinement de toutes les fonctionnalités. Pour l'installer utiliser l'extension <a href='https://addons.mozilla.org/fr/firefox/addon/pwas-for-firefox/' target='_blank'>Progressive Web Apps for Firefox</a>.",
|
|
211
|
-
"INSTALL": "Installer",
|
|
212
|
-
"IGNORE": "Ignorer"
|
|
213
|
-
}
|
|
214
|
-
},
|
|
215
|
-
"schemas": {
|
|
216
|
-
"OBJECT_NAME": "{name}",
|
|
217
|
-
"AVATAR_FIELD_LABEL": "Choisissez un avatar",
|
|
218
|
-
"NAME_FIELD_LABEL": "Saisissez votre nom",
|
|
219
|
-
"COLOR_FIELD_LABEL": "Choisissez une couleur",
|
|
220
|
-
"UPDATE_SETTINGS_TITLE": "Vos paramètres",
|
|
221
|
-
"TIME_FORMAT_SETTINGS": "Format de date et d'heure",
|
|
222
|
-
"TIME_FORMAT_SHORT_TIME_FIELD_LABEL": "Format d'heure abrégé",
|
|
223
|
-
"TIME_FORMAT_LONG_TIME_FIELD_LABEL": "Format d'heure complet",
|
|
224
|
-
"TIME_FORMAT_SHORT_DATE_FIELD_LABEL": "Format de jour abrégé",
|
|
225
|
-
"TIME_FORMAT_LONG_DATE_FIELD_LABEL": "Format de jour complet",
|
|
226
|
-
"TIME_FORMAT_SHORT_YEAR_FIELD_LABEL": "Format d'année abrégé",
|
|
227
|
-
"TIME_FORMAT_LONG_YEAR_FIELD_LABEL": "Format d'année complet",
|
|
228
|
-
"TIME_FORMAT_TIMEZONE_FIELD_LABEL": "Fuseau horaire cible",
|
|
229
|
-
"UNITS_SETTINGS": "Paramétrage des unités",
|
|
230
|
-
"LENGTH_FIELD_LABEL": "Unité de longueur par défaut",
|
|
231
|
-
"ALTITUDE_FIELD_LABEL": "Unité d'altitude par défaut",
|
|
232
|
-
"AREA_FIELD_LABEL": "Unité d'aire par défaut",
|
|
233
|
-
"VELOCITY_FIELD_LABEL": "Unité de vitesse par défaut",
|
|
234
|
-
"TEMPERATURE_FIELD_LABEL": "Unité de température par défaut",
|
|
235
|
-
"ANGLE_FIELD_LABEL": "Unité d'angle par défaut",
|
|
236
|
-
"EQUIVALENT_DOSE_RATE_FIELD_LABEL": "Unité de taux de dose équivalente par défaut",
|
|
237
|
-
"NOTATION_SETTINGS": "Paramétrage de la notation numérique",
|
|
238
|
-
"NOTATION_FIELD_LABEL": "Notation numérique par défaut",
|
|
239
|
-
"AUTO_NOTATION_FIELD_LABEL": "Sélectionne la notation numérique la plus adaptée",
|
|
240
|
-
"FIXED_NOTATION_FIELD_LABEL": "Notation numérique à précision fixe",
|
|
241
|
-
"EXPONENTIAL_NOTATION_FIELD_LABEL": "Notation numérique scientifique",
|
|
242
|
-
"PRECISION_FIELD_LABEL": "Nombre de chiffres décimaux ou significatifs par défaut",
|
|
243
|
-
"NAVIGATOR_APP_LABEL": "Application de navigation par défaut"
|
|
244
|
-
},
|
|
245
|
-
"tours": {
|
|
246
|
-
"APP_BAR_OVERFLOW_MENU_LABEL": "Lorsqu'il n'est pas visible, vous pourrez le retrouver dans ce menu déroulant.",
|
|
247
|
-
"APP_BAR_ACTIONS_LABEL": "Lorsqu'il n'est pas visible, vous pourrez le retrouver dans la barre d'actions.",
|
|
248
|
-
"CARD_OVERFLOW_MENU_LABEL": "Ouvrez le menu déroulant pour découvrir plus d'actions.",
|
|
249
|
-
"REMOVE_CONFIRMATION_LABEL": "Une confirmation vous sera demandé avant la suppression définitive.",
|
|
250
|
-
"login": {
|
|
251
|
-
"LOCAL_LABEL": "Vous pouvez vous connecter au système avec <b>vos identifiants</b>.",
|
|
252
|
-
"EMAIL_LABEL": "Saisissez tout d'abord votre adresse mail.",
|
|
253
|
-
"PASSWORD_LABEL": "Saisissez ensuite votre mot de passe.",
|
|
254
|
-
"PASSWORD_VISIBILITY_LABEL": "Affichez votre mot de passe en clair en cas de doute.",
|
|
255
|
-
"LOGIN_LABEL": "Enfin, terminez en vous connectant.",
|
|
256
|
-
"LOST_PASSWORD_LINK_LABEL": "Si vous avez oublié votre mot de passe initiez la <b>procédure de récupération</b>",
|
|
257
|
-
"REGISTER_LINK_LABEL": "Si vous n'avez pas encore de compte initiez la <b>procédure d'enregistrement</b>"
|
|
258
|
-
},
|
|
259
|
-
"reset-password": {
|
|
260
|
-
"RESET_PROCEDURE_LABEL": "Si vous avez oublié votre mot de passe nous vous enverrons un email contenant un code permettant <b>d'en définir un nouveau</b>.",
|
|
261
|
-
"EMAIL_LABEL": "Saisissez tout d'abord l'adresse que vous avez utilisé pour vous enregistrer ou par laquelle vous avez été invité.",
|
|
262
|
-
"RESET_LABEL": "Enfin, terminez en envoyant l'email contenant le lien (<b>vérifiez que l'email ne soit pas tombé dans vos courriers indésirables</b>)."
|
|
263
|
-
},
|
|
264
|
-
"register": {
|
|
265
|
-
"LOCAL_LABEL": "Vous pouvez vous enregistrer sur le système en définissant <b>vos identifiants</b>.",
|
|
266
|
-
"NAME_LABEL": "Saisissez tout d'abord votre nom tel qu'il sera visible par les autres utilisateurs.",
|
|
267
|
-
"EMAIL_LABEL": "Saisissez ensuite l'adresse mail que vous utiliserez pour vous connecter et sur laquelle vous recevrez les messages liés à la sécurité.",
|
|
268
|
-
"PASSWORD_LABEL": "Choisissez ensuite votre mot de passe, s'il ne respecte pas nos dispositions de sécurité une alerte vous indiquera les règles à respecter.",
|
|
269
|
-
"PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
|
|
270
|
-
"CONFIRM_PASSWORD_LABEL": "Confirmez votre mot de passe pour éviter les erreurs.",
|
|
271
|
-
"CONFIRM_PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
|
|
272
|
-
"TERMS_LABEL": "Lisez et acceptez nos <b><a style='color:white' href='/#/terms'>conditions d'utilisation</a></b> pour pouvoir utiliser le système.",
|
|
273
|
-
"REGISTER_LABEL": "Enfin, terminez en créant votre compte.",
|
|
274
|
-
"EMAIL_VERIFICATION_LABEL": "Nous vous enverrons un email contenant un lien permettant <b>de vérifier votre adresse</b>.",
|
|
275
|
-
"LOGIN_LINK_LABEL": "Vous pouvez maintenant vous reconnecter au système grâce à <b>vos identifiants</b>."
|
|
276
|
-
},
|
|
277
|
-
"account": {
|
|
278
|
-
"PROFILE_LABEL": "Cette activité vous permet de modifier les informations liées à votre profil utilisateur",
|
|
279
|
-
"AVATAR_LABEL": "Votre avatar personnalisé qui sera visible dans le menu latéral une fois un fichier image sélectionné.",
|
|
280
|
-
"NAME_LABEL": "Votre nom tel qu'il sera visible par les autres utilisateurs.",
|
|
281
|
-
"UPDATE_LABEL": "Confirmez la mise à jour pour appliquer les modifications apportées à votre profil.",
|
|
282
|
-
"ACCOUNT_LABEL": "Gérez ici <b>vos identifiants</b> et leur sécurité",
|
|
283
|
-
"VERIFY_EMAIL_LABEL": "Cette section vous permet de vérifier votre email.",
|
|
284
|
-
"TOKEN_FIELD_LABEL": "Saisissez le code reçu par email.",
|
|
285
|
-
"RESEND_VERIFY_SIGNUP_LABEL": "Si vous ne l'aviez pas reçu ou perdu, vous avez la possibilité d'en recevoir un nouveau.",
|
|
286
|
-
"CONFIRM_VERIFY_EMAIL_LABEL": "Enfin, terminez en confirmant.",
|
|
287
|
-
"PASSWORD_PROCEDURE_LABEL": "Cette section vous permet d'initier la procédure de changement de mot de passe.",
|
|
288
|
-
"OLD_PASSWORD_LABEL": "Saisissez tout d'abord votre ancien mot de passe.",
|
|
289
|
-
"NEW_PASSWORD_LABEL": "Choisissez ensuite votre nouveau mot de passe, s'il ne respecte pas nos dispositions de sécurité une alerte vous indiquera les règles à respecter.",
|
|
290
|
-
"NEW_PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
|
|
291
|
-
"CONFIRM_NEW_PASSWORD_LABEL": "Confirmez votre nouveau mot de passe pour éviter les erreurs.",
|
|
292
|
-
"CHANGE_PASSWORD_LABEL": "Enfin, terminez en confirmant la modification.",
|
|
293
|
-
"CHANGE_IDENTITY_PROCEDURE_LABEL": "Cette section vous permet d'initier la procédure de changement d'adresse mail.",
|
|
294
|
-
"PASSWORD_LABEL": "Entrez tout d'abord votre mot de passe.",
|
|
295
|
-
"PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
|
|
296
|
-
"EMAIL_LABEL": "Entrez votre <b>nouvelle adresse mail</b>.",
|
|
297
|
-
"CHANGE_EMAIL_LABEL": "En confirmant la demande de modification, un email contenant un code permettant de confirmer la modification vous serez envoyé sur votre nouvelle adresse (<b>vérifiez que l'email ne soit pas tombé dans vos courriers indésirables</b>).",
|
|
298
|
-
"SUBSCRIPTIONS_LABEL": "Cette section liste les différents abonnements dont vous disposez.",
|
|
299
|
-
"UNSUBSCRIBE_LABEL": "Vérifiez ici toute activité suspecte et supprimez les abonnements obsolètes de votre compte.",
|
|
300
|
-
"DANGER_ZONE_LABEL": "Cette section vous permet de supprimer votre compte du système",
|
|
301
|
-
"DELETE_LABEL": "Une confirmation manuelle vous sera demandé avant la suppression définitive de votre compte."
|
|
302
|
-
}
|
|
303
|
-
},
|
|
304
|
-
"exporter": {
|
|
305
|
-
"TITLE": "Exporter les données",
|
|
306
|
-
"MESSAGE": "Sélectionnez le format de fichier à exporter",
|
|
307
|
-
"EXPORT": "Exporter",
|
|
308
|
-
"EXPORTING": "Merci de patienter pendant l'export des données",
|
|
309
|
-
"EXPORTS_LIMIT_REACHED": "Vous avez atteint le nombre maximum d'exports autorisés",
|
|
310
|
-
"SUCCEEDED": "Exportation terminée : les données ont été exportées dans le fichier <b>{filename}</b>",
|
|
311
|
-
"NO_DATA": "Exportation annulée : aucune donnée trouvée à exporter",
|
|
312
|
-
"ERROR": "Oops ! Échec de l’exportation : une erreur est survenue durant l'export des données"
|
|
313
|
-
},
|
|
314
|
-
"reader": {
|
|
315
|
-
"READING_FILE": "Lecture de {file} en cours"
|
|
316
|
-
},
|
|
317
|
-
"storage": {
|
|
318
|
-
"UPLOADING_FILE": "Transfert du fichier {file} en cours",
|
|
319
|
-
"DOWNLOADING_FILE": "Téléchargement du fichier {file} en cours"
|
|
320
|
-
},
|
|
321
|
-
"KVersion": {
|
|
322
|
-
"CLIENT_VERSION": "Client v{version}",
|
|
323
|
-
"API_VERSION": "API v{version}"
|
|
324
|
-
},
|
|
325
|
-
"KSponsor": {
|
|
326
|
-
"KDK_POWERED": "Réalisé avec le Kalisio's Development Kit",
|
|
327
|
-
"MORE_ABOUT_KDK": "En savoir plus sur le KDK",
|
|
328
|
-
"MORE_ABOUT_KALISIO": "En savoir plus sur Kalisio"
|
|
329
|
-
},
|
|
330
|
-
"KPlatform": {
|
|
331
|
-
"USER_AGENT": "Agent utilisateur",
|
|
332
|
-
"APPLICATION": "Application",
|
|
333
|
-
"PERMISSIONS": "Permissions",
|
|
334
|
-
"PERMISSION_GRANTED": "Autorisé",
|
|
335
|
-
"PERMISSION_PROMPT": "Sur demande",
|
|
336
|
-
"BROWSER": "Navigateur",
|
|
337
|
-
"LOCALE": "Locale",
|
|
338
|
-
"WEBGL": "Support WebGL",
|
|
339
|
-
"SYSTEM": "Système",
|
|
340
|
-
"COPY_INFO": "Copier les informations en mémoire",
|
|
341
|
-
"INFO_COPIED": "Informations système copiées",
|
|
342
|
-
"CANNOT_COPY_INFO": "Impossible de copier les informations systèmes"
|
|
343
|
-
},
|
|
344
|
-
"KAbout": {
|
|
345
|
-
"DOMAIN": "Hébergé sur",
|
|
346
|
-
"FLAVOR": "Saveur",
|
|
347
|
-
"VIEW_CHANGELOG": "Historique des versions",
|
|
348
|
-
"BUG_REPORT": "Signaler un bug",
|
|
349
|
-
"BUG_REPORT_SUBJECT": "[{appName}] Rapport de bug - Client v{clientVersion} - API v{apiVersion}",
|
|
350
|
-
"BUG_REPORT_BODY": "Merci de détailler ici le problème rencontré%0D%0A%0D%0AInformations à conserver concernant votre système%0D%0A%0D%0A",
|
|
351
|
-
"PLATFORM_INFO": "Informations système"
|
|
352
|
-
},
|
|
353
|
-
"KWelcome": {
|
|
354
|
-
"WELCOME_TITLE": "Bienvenue !",
|
|
355
|
-
"WELCOME_MESSAGE": "Cette prise en main rapide va vous permettre de balayer les principales fonctionnalités de l'application.",
|
|
356
|
-
"ONLINE_HELP": "Parcourez tout d'abord notre aide en ligne pour vous familiariser avec les notions de base",
|
|
357
|
-
"CONTEXTUAL_HELP": "Pour obtenir de l'aide contextuelle lorsque vous êtes perdu cliquez à tout moment sur l'icône",
|
|
358
|
-
"TOUR_MESSAGE": "Lancez maintenant un didacticiel détaillant le menu principal en cliquant sur l'icône",
|
|
359
|
-
"TOUR_LINK_MESSAGE": "A chaque fois qu'une étape d'un didacticiel contient cette icône elle permet d'en lancer un autre détaillant la fonctionnalité visée.",
|
|
360
|
-
"GOODBYE_MESSAGE": "Merci d'avoir parcouru ce didacticiel, vous êtes maintenant prêt à utiliser l'application !",
|
|
361
|
-
"HIDE_WELCOME": "Ne plus afficher ce message"
|
|
362
|
-
},
|
|
363
|
-
"KTour": {
|
|
364
|
-
"SKIP_LABEL": "Fermer",
|
|
365
|
-
"NEXT_LABEL": "Suivant",
|
|
366
|
-
"PREVIOUS_LABEL": "Précédent",
|
|
367
|
-
"FINISH_LABEL": "Terminer",
|
|
368
|
-
"MISS_ERROR": "Avant d'aller plus loin merci de réaliser les actions demandées"
|
|
369
|
-
},
|
|
370
|
-
"KScreen": {
|
|
371
|
-
"CLIENT_VERSION": "Client v",
|
|
372
|
-
"API_VERSION": "API v",
|
|
373
|
-
"EMAIL_FIELD_LABEL": "Saisissez votre adresse mail",
|
|
374
|
-
"CHANGE_ENDPOINT_LINK": "Modifier l'adresse du serveur",
|
|
375
|
-
"DEVELOPMENT_VERSION": "VERSION DE DÉVELOPPEMENT",
|
|
376
|
-
"TEST_VERSION": "VERSION DE TEST"
|
|
377
|
-
},
|
|
378
|
-
"KErrorScreen": {
|
|
379
|
-
"MESSAGE": "Oups... page non trouvée",
|
|
380
|
-
"GO_HOME_LABEL": "Retourner à la page d'accueil"
|
|
381
|
-
},
|
|
382
|
-
"KUnauthorizedScreen": {
|
|
383
|
-
"MESSAGE": "Vous n'êtes pas autorisé à accéder à cette page"
|
|
384
|
-
},
|
|
385
|
-
"KLoginScreen": {
|
|
386
|
-
"EMAIL_FIELD_LABEL": "@:KScreen.EMAIL_FIELD_LABEL",
|
|
387
|
-
"PASSWORD_FIELD_LABEL": "Saisissez votre mot de passe",
|
|
388
|
-
"LOGIN_LABEL": "Se connecter",
|
|
389
|
-
"FORGOT_YOUR_PASSWORD_LABEL": "Mot de passe oublié ?",
|
|
390
|
-
"DONT_HAVE_AN_ACCOUNT_LABEL": "Vous n'avez pas de compte ?",
|
|
391
|
-
"INVALID_EMAIL": "Impossible de trouver le compte associé à l'email saisie",
|
|
392
|
-
"LOGIN_ERROR": "Mauvais identifiants ou service indisponible, veuillez réessayer",
|
|
393
|
-
"CONTEXTUAL_HELP": "@:NEED_HELP"
|
|
394
|
-
},
|
|
395
|
-
"KRegisterScreen": {
|
|
396
|
-
"TITLE": "Enregistrez vous",
|
|
397
|
-
"NAME_FIELD_LABEL": "@:schemas.NAME_FIELD_LABEL",
|
|
398
|
-
"EMAIL_FIELD_LABEL": "@:KScreen.EMAIL_FIELD_LABEL",
|
|
399
|
-
"PASSWORD_FIELD_LABEL": "Saisissez un mot de passe",
|
|
400
|
-
"CONFIRM_PASSWORD_FIELD_LABEL": "Confirmez votre mot de passe",
|
|
401
|
-
"ACCEPT_TERMS_LABEL": "J'accepte les conditions générales",
|
|
402
|
-
"ACCEPT_TERMS_ERROR_LABEL": "Vous devez accepter nos conditions générales pour vous enregistrer",
|
|
403
|
-
"REGISTER_LABEL": "S'enregistrer",
|
|
404
|
-
"EMAIL_ALREADY_TAKEN": "Mail déjà utilisé !",
|
|
405
|
-
"REGISTER_ERROR": "Mauvaise données ou service indisponible, veuillez réessayer",
|
|
406
|
-
"CONTEXTUAL_HELP": "@:NEED_HELP",
|
|
407
|
-
"ALREADY_HAVE_AN_ACCOUNT_LINK": "Déjà un compte ?"
|
|
408
|
-
},
|
|
409
|
-
"KLogoutScreen": {
|
|
410
|
-
"TITLE": "Vous avez été déconnecté",
|
|
411
|
-
"LOG_IN_AGAIN_LABEL": "Se reconnecter ?"
|
|
412
|
-
},
|
|
413
|
-
"KProfile": {
|
|
414
|
-
"EDIT_PROFILE": "Éditer mon profil",
|
|
415
|
-
"MANAGE_ACCOUNT": "Gérer mon compte"
|
|
416
|
-
},
|
|
417
|
-
"KSubscriptionsManager": {
|
|
418
|
-
"TITLE": "Gérer mes souscriptions",
|
|
419
|
-
"EMPTY": "Aucunes subscriptions"
|
|
420
|
-
},
|
|
421
|
-
"KSubscription": {
|
|
422
|
-
"UNSUBSCRIBE_LABEL": "Se désabonner",
|
|
423
|
-
"LAST_ACTIVITY": "Dernière activité le {date} à {time}",
|
|
424
|
-
"UNSUBSCRIBE_DIALOG_TITLE": "Se désabonner de {description} ?",
|
|
425
|
-
"UNSUBSCRIBE_DIALOG_MESSAGE": "Êtes vous sûr de vouloir désabonner votre compte de {description} ?<br><br>Vous ne pourrez plus recevoir de notifications jusqu'à une prochaine reconnexion via ce service."
|
|
426
|
-
},
|
|
427
|
-
"KGrid": {
|
|
428
|
-
"EMPTY_LABEL": "@:NO_ITEM"
|
|
429
|
-
},
|
|
430
|
-
"KTable": {
|
|
431
|
-
"EMPTY_TABLE": "@:NO_ITEM",
|
|
432
|
-
"TABLE_COLUMNS": "Propriétés"
|
|
433
|
-
},
|
|
434
|
-
"KDataTable": {
|
|
435
|
-
"EMPTY_TABLE": "@:NO_ITEM",
|
|
436
|
-
"TABLE_COLUMNS": "Propriétés",
|
|
437
|
-
"NO_DATA_AVAILABLE": "Aucune donnée disponible",
|
|
438
|
-
"EXPORT_DATA": "Exporter les données",
|
|
439
|
-
"DATA_EXPORT_FILE": "Données.csv"
|
|
440
|
-
},
|
|
441
|
-
"KTimeLine": {
|
|
442
|
-
"EMPTY_LABEL": "@:NO_ITEM"
|
|
443
|
-
},
|
|
444
|
-
"KScrollToTop": {
|
|
445
|
-
"TOOLTIP": "Haut de page"
|
|
446
|
-
},
|
|
447
|
-
"KCard": {
|
|
448
|
-
"MORE_DETAILS": "Plus de détails",
|
|
449
|
-
"LESS_DETAILS": "Moins de détails"
|
|
450
|
-
},
|
|
451
|
-
"KDescriptionCardSection": {
|
|
452
|
-
"TITLE": "Description",
|
|
453
|
-
"NO_DESCRIPTION": "Aucune 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": "Tapez ici pour rechercher",
|
|
463
|
-
"SEARCH_CATEGORY_LABEL": "Toutes les catégories",
|
|
464
|
-
"categories": {
|
|
465
|
-
"accessibility": "accessibilité",
|
|
466
|
-
"alert": "alerte",
|
|
467
|
-
"animals": "animaux",
|
|
468
|
-
"arrows": "flèches",
|
|
469
|
-
"audio-video": "média",
|
|
470
|
-
"automotive": "voiture",
|
|
471
|
-
"autumn": "automne",
|
|
472
|
-
"beverage": "boisson",
|
|
473
|
-
"buildings": "bâtiments",
|
|
474
|
-
"business": "business",
|
|
475
|
-
"camping": "camping",
|
|
476
|
-
"charity": "solidarité",
|
|
477
|
-
"chat": "discussions",
|
|
478
|
-
"chess": "échecs",
|
|
479
|
-
"childhood": "enfance",
|
|
480
|
-
"clothing": "vêtements",
|
|
481
|
-
"code": "code",
|
|
482
|
-
"communication": "communication",
|
|
483
|
-
"computers": "ordinateurs",
|
|
484
|
-
"construction": "construction",
|
|
485
|
-
"currency": "monnaie",
|
|
486
|
-
"date-time": "temps et heure",
|
|
487
|
-
"design": "design",
|
|
488
|
-
"editors": "éditeurs",
|
|
489
|
-
"education": "éducation",
|
|
490
|
-
"emoji": "emoji",
|
|
491
|
-
"energy": "énergie",
|
|
492
|
-
"files": "dossiers",
|
|
493
|
-
"finance": "finance",
|
|
494
|
-
"fitness": "activités physiques",
|
|
495
|
-
"food": "alimentation",
|
|
496
|
-
"fruit-vegetable": "fruit-légumes",
|
|
497
|
-
"games": "jeux",
|
|
498
|
-
"gaming-tabletop": "jeux de société",
|
|
499
|
-
"gender": "genre",
|
|
500
|
-
"halloween": "halloween",
|
|
501
|
-
"hands": "mains",
|
|
502
|
-
"health": "santé",
|
|
503
|
-
"holiday": "vacances",
|
|
504
|
-
"hotel": "hôtel",
|
|
505
|
-
"household": "mobilier",
|
|
506
|
-
"images": "images",
|
|
507
|
-
"interfaces": "interfaces",
|
|
508
|
-
"logistics": "logistiques",
|
|
509
|
-
"maps": "cartes",
|
|
510
|
-
"maritime": "maritime",
|
|
511
|
-
"marketing": "marketing",
|
|
512
|
-
"mathematics": "mathématiques",
|
|
513
|
-
"medical": "médecine",
|
|
514
|
-
"moving": "déplacement",
|
|
515
|
-
"music": "musique",
|
|
516
|
-
"objects": "objects",
|
|
517
|
-
"payments-shopping": "paiements-achats",
|
|
518
|
-
"pharmacy": "pharmacie",
|
|
519
|
-
"political": "politique",
|
|
520
|
-
"religion": "religion",
|
|
521
|
-
"science": "science",
|
|
522
|
-
"science-fiction": "science-fiction",
|
|
523
|
-
"security": "sécurité",
|
|
524
|
-
"shapes": "forme",
|
|
525
|
-
"shopping": "achats",
|
|
526
|
-
"social": "social",
|
|
527
|
-
"spinners": "Icon",
|
|
528
|
-
"sports": "sport",
|
|
529
|
-
"spring": "printemps",
|
|
530
|
-
"status": "status",
|
|
531
|
-
"summer": "été",
|
|
532
|
-
"toggle": "bouton",
|
|
533
|
-
"travel": "voyage",
|
|
534
|
-
"users-people": "personnages",
|
|
535
|
-
"vehicles": "véhicules",
|
|
536
|
-
"weather": "météo",
|
|
537
|
-
"winter": "hiver",
|
|
538
|
-
"writing": "écriture"
|
|
539
|
-
}
|
|
540
|
-
},
|
|
541
|
-
"KTextAreaField": {
|
|
542
|
-
"CLEAR_TOOLTIP": "Effacer le contenu"
|
|
543
|
-
},
|
|
544
|
-
"KResolutionField": {
|
|
545
|
-
"SD_LABEL": "Définition Standard",
|
|
546
|
-
"SD_DESCRIPTION": "4:3, 640 x 480",
|
|
547
|
-
"HD_LABEL": "Haute Définition",
|
|
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 ou Ultra HD",
|
|
556
|
-
"4K_DESCRIPTION": "1:1.9, 3840 x 2160",
|
|
557
|
-
"8K_LABEL": "8K ou Full Ultra HD",
|
|
558
|
-
"8K_DESCRIPTION": "16:9, 7680 x 4320",
|
|
559
|
-
"PERSONALIZED_LABEL": "Personnalisée"
|
|
560
|
-
},
|
|
561
|
-
"KFileField": {
|
|
562
|
-
"INVALID_FILE_TYPE": "Type de fichier invalide, veuillez sélectionner un fichier du bon type",
|
|
563
|
-
"INVALID_FILE_SIZE": "Taille du fichier invalide, le fichier est trop volumineux",
|
|
564
|
-
"UPLOAD_FILE_SUCCEEDED": "Le fichier {file} a été transféré avec succès",
|
|
565
|
-
"UPLOAD_FILE_ERRORED": "Impossible de transférer le fichier {file} !"
|
|
566
|
-
},
|
|
567
|
-
"KCronField": {
|
|
568
|
-
"INVALID_CRON": "Expression CRON invalide"
|
|
569
|
-
},
|
|
570
|
-
"KMediaBrowser": {
|
|
571
|
-
"CLOSE_ACTION": "@:CLOSE",
|
|
572
|
-
"DOWNLOAD_MEDIA_ACTION": "Télécharger le média",
|
|
573
|
-
"RESTORE_IMAGE_ACTION": "Restaurer l'image",
|
|
574
|
-
"REMOVE_MEDIA_ACTION": "Supprimer le média",
|
|
575
|
-
"REMOVE_DIALOG_TITLE": "Supprimer le média {media} ?",
|
|
576
|
-
"REMOVE_DIALOG_MESSAGE": "Êtes vous sûr de vouloir supprimer le média <b>{media}</b> ?",
|
|
577
|
-
"ADD_MEDIA_LABEL": "Ajouter un média",
|
|
578
|
-
"ADD_PHOTO_LABEL": "Ajouter une photo",
|
|
579
|
-
"UPLOAD_TITLE": "Ajouter un média",
|
|
580
|
-
"UPLOAD_FILE_FIELD_LABEL": "Sélectionnez un fichier",
|
|
581
|
-
"UPLOAD": "Ajouter",
|
|
582
|
-
"NO_MEDIA": "Il n'y a aucun média à voir, ajoutez un média à l'aide d'une des actions disponibles."
|
|
583
|
-
},
|
|
584
|
-
"KMessageCard": {
|
|
585
|
-
"VIEW_ATTACHMENT": "Voir la pièce jointe",
|
|
586
|
-
"DOWNLOAD_ATTACHMENT": "Télécharger la pièce jointe",
|
|
587
|
-
"EDIT_MESSAGE": "Modifier le message"
|
|
588
|
-
},
|
|
589
|
-
"KMessageComposer": {
|
|
590
|
-
"FORMAT_MESSAGE": "Formater le message",
|
|
591
|
-
"ATTACH_FILE": "Attacher un fichier",
|
|
592
|
-
"WRITE_YOUR_MESSAGE": "Rédigez votre message...",
|
|
593
|
-
"SEND_MESSAGE": "Envoyer le message",
|
|
594
|
-
"OPEN_EDITOR": "Ouvrir l'éditeur",
|
|
595
|
-
"CLOSE_EDITOR": "Fermer l'éditeur",
|
|
596
|
-
"message-type": {
|
|
597
|
-
"INFORMATION": "Information",
|
|
598
|
-
"WARNING": "Attention",
|
|
599
|
-
"ALERT": "Alerte"
|
|
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": "Épingler",
|
|
611
|
-
"RESTORE_ACTION": "Restaurer",
|
|
612
|
-
"MAXIMIZE_ACTION": "Maximiser"
|
|
613
|
-
},
|
|
614
|
-
"KResetPassword": {
|
|
615
|
-
"TITLE": "Réinitialiser votre mot de passe ?",
|
|
616
|
-
"MESSAGE": "Saisissez votre nouveau mot de passe",
|
|
617
|
-
"ACTION": "Appliquer",
|
|
618
|
-
"RESEND_LINK": "Renvoyer un code de réinitialisation",
|
|
619
|
-
"EMAIL_FIELD_LABEL": "Saisissez votre adresse email",
|
|
620
|
-
"PASSWORD_FIELD_LABEL": "Saisissez votre nouveau mot de passe",
|
|
621
|
-
"CONFIRM_PASSWORD_FIELD_LABEL": "Confirmez votre nouveau mot de passe",
|
|
622
|
-
"TOKEN_FIELD_LABEL": "Saisissez le code reçu par email",
|
|
623
|
-
"SUCCESS_MESSAGE": "Mot de passe réinitialisé, vous allez recevoir un mail de confirmation",
|
|
624
|
-
"ERROR_MESSAGE_BAD_PARAMS": "Votre mot de passe a déjà été réinitialisé ou votre compte a été supprimé",
|
|
625
|
-
"ERROR_MESSAGE_VERIFY_EXPIRED": "Le délai pour réinitialiser votre mot de passe a expiré. Pour refaire la procédure, merci de cliquer sur le lien ci-dessous",
|
|
626
|
-
"ERROR_MESSAGE_DEFAULT": "Impossible de réinitialiser votre mot de passe. Merci d'essayer plus tard"
|
|
627
|
-
},
|
|
628
|
-
"KSendResetPassword": {
|
|
629
|
-
"TITLE": "Réinitialiser mon mot de passe ?",
|
|
630
|
-
"MESSAGE": "Saisissez votre adresse email et nous vous enverrons un code pour réinitialiser votre mot de passe",
|
|
631
|
-
"ACTION": "Envoyer",
|
|
632
|
-
"EMAIL_FIELD_LABEL": "Saisissez votre adresse email",
|
|
633
|
-
"ERROR_INVALID_EMAIL": "Impossible de trouver le compte associé à l'email saisie",
|
|
634
|
-
"ERROR_MESSAGE_IS_VERIFIED": "Veuillez consulter votre messagerie et vérifier tout d'abord votre adresse email",
|
|
635
|
-
"ERROR_MESSAGE_DEFAULT": "Impossible d'envoyer l'email, merci de vérifier votre adresse et essayez à nouveau"
|
|
636
|
-
},
|
|
637
|
-
"KSorter": {
|
|
638
|
-
"SORT": "Trier"
|
|
639
|
-
},
|
|
640
|
-
"KAbsoluteTimeRange": {
|
|
641
|
-
"PICK_START_DATE_LABEL": "Modifier la date de début",
|
|
642
|
-
"PICK_START_TIME_LABEL": "Modifier l'heure de début",
|
|
643
|
-
"PICK_END_DATE_LABEL": "Modifier la date de fin",
|
|
644
|
-
"PICK_END_TIME_LABEL": "Modifier l'heure de fin"
|
|
645
|
-
},
|
|
646
|
-
"KRelativeTimeRanges": {
|
|
647
|
-
"LAST_HOUR_LABEL": "Dernière heure",
|
|
648
|
-
"LAST_2_HOURS_LABEL": "2 dernières heures",
|
|
649
|
-
"LAST_3_HOURS_LABEL": "3 dernières heures",
|
|
650
|
-
"LAST_6_HOURS_LABEL": "6 dernières heures",
|
|
651
|
-
"LAST_12_HOURS_LABEL": "12 dernières heures",
|
|
652
|
-
"LAST_DAY_LABEL": "Dernier jour",
|
|
653
|
-
"LAST_2_DAYS_LABEL": "2 derniers jours",
|
|
654
|
-
"LAST_3_DAYS_LABEL": "3 derniers jours",
|
|
655
|
-
"LAST_WEEK_LABEL": "Dernière semaine",
|
|
656
|
-
"LAST_2_WEEKS_LABEL": "2 dernières semaines",
|
|
657
|
-
"LAST_MONTH_LABEL": "Dernier mois",
|
|
658
|
-
"LAST_3_MONTHS_LABEL": "3 derniers mois",
|
|
659
|
-
"LAST_6_MONTHS_LABEL": "6 derniers mois",
|
|
660
|
-
"LAST_YEAR_LABEL": "Dernière année",
|
|
661
|
-
"LAST_2_YEARS_LABEL": "2 dernières années",
|
|
662
|
-
"LAST_3_YEARS_LABEL": "3 dernières années",
|
|
663
|
-
"LAST_5_YEARS_LABEL": "5 dernières années",
|
|
664
|
-
"NEXT_HOUR_LABEL": "Prochaine heure",
|
|
665
|
-
"NEXT_2_HOURS_LABEL": "Prochaines 2 heures",
|
|
666
|
-
"NEXT_3_HOURS_LABEL": "Prochaines 3 heures",
|
|
667
|
-
"NEXT_6_HOURS_LABEL": "Prochaines 6 heures",
|
|
668
|
-
"NEXT_12_HOURS_LABEL": "Prochaines 12 heures",
|
|
669
|
-
"NEXT_DAY_LABEL": "Prochain jour",
|
|
670
|
-
"NEXT_2_DAYS_LABEL": "2 prochains jours",
|
|
671
|
-
"NEXT_3_DAYS_LABEL": "3 prochains jours",
|
|
672
|
-
"NEXT_WEEK_LABEL": "Dernière semaine",
|
|
673
|
-
"NEXT_2_WEEKS_LABEL": "2 dernières semaines",
|
|
674
|
-
"NEXT_MONTH_LABEL": "Prochain mois",
|
|
675
|
-
"NEXT_3_MONTHS_LABEL": "3 prochains mois",
|
|
676
|
-
"NEXT_6_MONTHS_LABEL": "6 prochains mois",
|
|
677
|
-
"NEXT_YEAR_LABEL": "Prochaine année"
|
|
678
|
-
},
|
|
679
|
-
"KChart": {
|
|
680
|
-
"NO_DATA_AVAILABLE": "Aucune donnée disponible"
|
|
681
|
-
},
|
|
682
|
-
"KTimeSeriesChart": {
|
|
683
|
-
"TIME_LABEL": "Temps",
|
|
684
|
-
"NO_DATA_AVAILABLE": "Aucune donnée disponible",
|
|
685
|
-
"EXPORT_SERIES": "Exporter les données",
|
|
686
|
-
"SERIES_EXPORT_FILE": "Series.csv"
|
|
687
|
-
},
|
|
688
|
-
"KFilter": {
|
|
689
|
-
"SEARCH_LABEL": "@:SEARCH"
|
|
690
|
-
},
|
|
691
|
-
"KTagsFilterControl": {
|
|
692
|
-
"FILTER": "Filtrer selon les propriétés"
|
|
693
|
-
},
|
|
694
|
-
"KTimeFilterControl": {
|
|
695
|
-
"FILTER": "Filtrer selon le temps"
|
|
696
|
-
},
|
|
697
|
-
"KTextArea": {
|
|
698
|
-
"COLLAPSE": "Réduire"
|
|
699
|
-
},
|
|
700
|
-
"KTimeControl": {
|
|
701
|
-
"PREVIOUS_STEP": "Pas précédent",
|
|
702
|
-
"PREVIOUS_HOUR": "Heure précédente",
|
|
703
|
-
"PREVIOUS_DAY": "Jour précédent",
|
|
704
|
-
"START_REALTIME": "Activer le temps réel",
|
|
705
|
-
"STOP_REALTIME": "Stopper le temps réel",
|
|
706
|
-
"SET_DATETIME": "Régler la date et l'heure",
|
|
707
|
-
"SET_STEP": "Régler le pas",
|
|
708
|
-
"NEXT_DAY": "Jour suivant",
|
|
709
|
-
"NEXT_HOUR": "Heure suivante",
|
|
710
|
-
"NEXT_STEP": "Pas suivant"
|
|
711
|
-
},
|
|
712
|
-
"KImage": {
|
|
713
|
-
"RESET": "Réinitialiser"
|
|
714
|
-
},
|
|
715
|
-
"KBrowser": {
|
|
716
|
-
"DOWNLOAD_FILE": "Télécharger le fichier",
|
|
717
|
-
"UPLOAD_FILES": "Transférer des fichiers",
|
|
718
|
-
"UPLOAD": "Transférer",
|
|
719
|
-
"DELETE_FILE": "Supprimer le fichier",
|
|
720
|
-
"DELETE_FILE_MESSAGE": "Êtes vous sûr de vouloir supprimer {name} ?",
|
|
721
|
-
"CANNOT_BE_VIEWED": "Ce fichier ne peut pas être visualisé",
|
|
722
|
-
"NO_FILES": "Aucun fichier"
|
|
723
|
-
},
|
|
724
|
-
"KUploader": {
|
|
725
|
-
"ADD_FILES": "Ajouter des fichiers...",
|
|
726
|
-
"EMPTY_FILE": "Le fichier {file} est vide ou corrompu !",
|
|
727
|
-
"INVALID_TYPE": "Le type du fichier {file} est invalide !",
|
|
728
|
-
"FILE_TOO_LARGE": "Le fichier {file} est trop volumineux. La taille doit être inférieure à {size}Mo",
|
|
729
|
-
"UPLOAD_FILE_SUCCEEDED": "Le fichier {file} a été transféré avec succès",
|
|
730
|
-
"UPLOAD_FILE_ERRORED": "Impossible de transférer le fichier {file} !"
|
|
731
|
-
},
|
|
732
|
-
"KTagManager": {
|
|
733
|
-
"TITLE": "Étiquettes",
|
|
734
|
-
"CREATE_TAG": "Créer une étiquette",
|
|
735
|
-
"EDIT_TAG": "Modifier l'étiquette",
|
|
736
|
-
"DELETE_TAG": "Supprimer l'étiquette",
|
|
737
|
-
"SORT_TAGS": "Trier les étiquettes",
|
|
738
|
-
"CREATE_TAG_ON_THE_FLY": "Créer l'étiquette",
|
|
739
|
-
"TAG_NAME": "Saisissez le nom",
|
|
740
|
-
"TAG_SERVICE": "Type de tag",
|
|
741
|
-
"TAG_DESCRIPTION": "Saisissez une description",
|
|
742
|
-
"TAG_COLOR": "Sélectionnez la couleur"
|
|
743
|
-
}
|
|
744
|
-
}
|