@kalisio/kdk 2.0.0 → 2.1.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/.codeclimate.yml +0 -1
- package/.travis.test.sh +3 -0
- package/core/api/application.js +591 -0
- package/core/api/authentication.js +203 -0
- package/core/api/db.js +226 -0
- package/core/api/hooks/hooks.authentication.js +74 -0
- package/core/api/hooks/hooks.authorisations.js +376 -0
- package/core/api/hooks/hooks.groups.js +48 -0
- package/core/api/hooks/hooks.logger.js +26 -0
- package/core/api/hooks/hooks.model.js +290 -0
- package/core/api/hooks/hooks.organisations.js +156 -0
- package/core/api/hooks/hooks.push.js +54 -0
- package/core/api/hooks/hooks.query.js +246 -0
- package/core/api/hooks/hooks.schemas.js +73 -0
- package/core/api/hooks/hooks.service.js +78 -0
- package/core/api/hooks/hooks.storage.js +36 -0
- package/core/api/hooks/hooks.users.js +261 -0
- package/core/api/hooks/index.js +12 -0
- package/core/api/index.js +21 -0
- package/core/api/marshall.js +90 -0
- package/core/api/models/groups.model.mongodb.js +8 -0
- package/core/api/models/organisations.model.mongodb.js +3 -0
- package/core/api/models/tags.model.mongodb.js +10 -0
- package/core/api/models/users.model.mongodb.js +10 -0
- package/core/api/services/account/account.hooks.js +37 -0
- package/core/api/services/account/account.service.js +120 -0
- package/core/api/services/authorisations/authorisations.hooks.js +33 -0
- package/core/api/services/authorisations/authorisations.service.js +139 -0
- package/core/api/services/databases/databases.hooks.js +36 -0
- package/core/api/services/databases/databases.service.js +5 -0
- package/core/api/services/groups/groups.hooks.js +31 -0
- package/core/api/services/index.js +126 -0
- package/core/api/services/mailer/mailer.hooks.js +35 -0
- package/core/api/services/mailer/mailer.service.js +11 -0
- package/core/api/services/organisations/organisations.hooks.js +31 -0
- package/core/api/services/organisations/organisations.service.js +86 -0
- package/core/api/services/push/push.hooks.js +35 -0
- package/core/api/services/push/push.service.js +12 -0
- package/core/api/services/storage/storage.hooks.js +35 -0
- package/core/api/services/storage/storage.service.js +29 -0
- package/core/api/services/tags/tags.hooks.js +31 -0
- package/core/api/services/users/users.hooks.js +75 -0
- package/core/api/utils.js +11 -0
- package/core/client/api.js +293 -0
- package/core/client/capabilities.js +22 -0
- package/core/client/components/KAction.vue +393 -0
- package/core/client/components/KAvatar.vue +129 -0
- package/core/client/components/KBlock.vue +67 -0
- package/core/client/components/KChip.vue +68 -0
- package/core/client/components/KChipsPane.vue +103 -0
- package/core/client/components/KContent.vue +105 -0
- package/core/client/components/KDialog.vue +160 -0
- package/core/client/components/KExpandable.vue +49 -0
- package/core/client/components/KLogo.vue +32 -0
- package/core/client/components/KModal.vue +173 -0
- package/core/client/components/KPanel.vue +64 -0
- package/core/client/components/KScrollArea.vue +88 -0
- package/core/client/components/KSponsor.vue +40 -0
- package/core/client/components/KStamp.vue +65 -0
- package/core/client/components/KStore.vue +102 -0
- package/core/client/components/KTextArea.vue +143 -0
- package/core/client/components/KTree.vue +31 -0
- package/core/client/components/KVersion.vue +19 -0
- package/core/client/components/account/KAccount.vue +68 -0
- package/core/client/components/account/KDeleteAccountManager.vue +62 -0
- package/core/client/components/account/KEmailManager.vue +128 -0
- package/core/client/components/account/KPasswordManager.vue +90 -0
- package/core/client/components/account/KProfile.vue +109 -0
- package/core/client/components/account/KResetPassword.vue +120 -0
- package/core/client/components/account/KSendResetPassword.vue +90 -0
- package/core/client/components/account/KSubscription.vue +71 -0
- package/core/client/components/account/KSubscriptionsManager.vue +46 -0
- package/core/client/components/account/KVerifyEmailManager.vue +105 -0
- package/core/client/components/account/index.js +7 -0
- package/core/client/components/app/KAbout.vue +98 -0
- package/core/client/components/app/KHome.vue +12 -0
- package/core/client/components/app/KPlatform.vue +55 -0
- package/core/client/components/app/KSettings.vue +43 -0
- package/core/client/components/app/KTerms.vue +41 -0
- package/core/client/components/app/KTour.vue +448 -0
- package/core/client/components/app/KWelcome.vue +133 -0
- package/core/client/components/app/index.js +11 -0
- package/core/client/components/chart/KChart.vue +197 -0
- package/core/client/components/chart/KDataTable.vue +183 -0
- package/core/client/components/chart/KStatisticsChart.vue +94 -0
- package/core/client/components/chart/KTimeSeriesChart.vue +431 -0
- package/core/client/components/chart/index.js +9 -0
- package/core/client/components/collection/KBoard.vue +65 -0
- package/core/client/components/collection/KCard.vue +196 -0
- package/core/client/components/collection/KCardSection.vue +52 -0
- package/core/client/components/collection/KColumn.vue +225 -0
- package/core/client/components/collection/KFilter.vue +158 -0
- package/core/client/components/collection/KGrid.vue +121 -0
- package/core/client/components/collection/KHistory.vue +112 -0
- package/core/client/components/collection/KHistoryEntry.vue +111 -0
- package/core/client/components/collection/KItem.vue +128 -0
- package/core/client/components/collection/KList.vue +135 -0
- package/core/client/components/collection/KSorter.vue +46 -0
- package/core/client/components/collection/KTable.vue +238 -0
- package/core/client/components/collection/index.js +19 -0
- package/core/client/components/editor/KEditor.vue +52 -0
- package/core/client/components/editor/KModalEditor.vue +96 -0
- package/core/client/components/editor/index.js +7 -0
- package/core/client/components/form/KChipsField.vue +162 -0
- package/core/client/components/form/KColorField.vue +69 -0
- package/core/client/components/form/KColorScaleField.vue +86 -0
- package/core/client/components/form/KDateTimeRangeField.vue +65 -0
- package/core/client/components/form/KDatetimeField.vue +70 -0
- package/core/client/components/form/KEmailField.vue +33 -0
- package/core/client/components/form/KFileField.vue +161 -0
- package/core/client/components/form/KForm.vue +247 -0
- package/core/client/components/form/KIconField.vue +101 -0
- package/core/client/components/form/KItemField.vue +123 -0
- package/core/client/components/form/KNumberField.vue +33 -0
- package/core/client/components/form/KOptionsField.vue +63 -0
- package/core/client/components/form/KPasswordField.vue +57 -0
- package/core/client/components/form/KPhoneField.vue +32 -0
- package/core/client/components/form/KPropertyItemField.vue +119 -0
- package/core/client/components/form/KRoleField.vue +60 -0
- package/core/client/components/form/KSelectField.vue +143 -0
- package/core/client/components/form/KTextField.vue +48 -0
- package/core/client/components/form/KTextareaField.vue +88 -0
- package/core/client/components/form/KToggleField.vue +46 -0
- package/core/client/components/form/KTokenField.vue +80 -0
- package/core/client/components/form/KUnitField.vue +57 -0
- package/core/client/components/form/KUrlField.vue +32 -0
- package/core/client/components/form/KView.vue +118 -0
- package/core/client/components/form/index.js +7 -0
- package/core/client/components/index.js +48 -0
- package/core/client/components/input/KColorChooser.vue +63 -0
- package/core/client/components/input/KIconChooser.vue +308 -0
- package/core/client/components/input/KOptionsChooser.vue +122 -0
- package/core/client/components/input/KPalette.vue +40 -0
- package/core/client/components/input/index.js +11 -0
- package/core/client/components/layout/KFab.vue +113 -0
- package/core/client/components/layout/KLayout.vue +64 -0
- package/core/client/components/layout/KOpener.vue +140 -0
- package/core/client/components/layout/KPage.vue +320 -0
- package/core/client/components/layout/KPageSticky.vue +53 -0
- package/core/client/components/layout/KWindow.vue +443 -0
- package/core/client/components/layout/index.js +13 -0
- package/core/client/components/media/KColorScale.vue +254 -0
- package/core/client/components/media/KImageViewer.vue +44 -0
- package/core/client/components/media/KMarkdownViewer.vue +55 -0
- package/core/client/components/media/KMediaBrowser.vue +340 -0
- package/core/client/components/media/KShape.vue +120 -0
- package/core/client/components/media/index.js +13 -0
- package/core/client/components/menu/KMenu.vue +147 -0
- package/core/client/components/menu/KRadialFab.vue +122 -0
- package/core/client/components/menu/KRadialFabItem.vue +73 -0
- package/core/client/components/menu/index.js +9 -0
- package/core/client/components/screen/KEndpointScreen.vue +80 -0
- package/core/client/components/screen/KErrorScreen.vue +24 -0
- package/core/client/components/screen/KLoginScreen.vue +79 -0
- package/core/client/components/screen/KLogoutScreen.vue +20 -0
- package/core/client/components/screen/KRegisterScreen.vue +114 -0
- package/core/client/components/screen/KScreen.vue +106 -0
- package/core/client/components/screen/KScreenFooter.vue +32 -0
- package/core/client/components/screen/KScreenHeader.vue +17 -0
- package/core/client/components/screen/index.js +5 -0
- package/core/client/components/team/KAddMember.vue +375 -0
- package/core/client/components/team/KAddTag.vue +121 -0
- package/core/client/components/team/KChangeRole.vue +118 -0
- package/core/client/components/team/KGroupCard.vue +110 -0
- package/core/client/components/team/KGroupsActivity.vue +66 -0
- package/core/client/components/team/KJoinGroup.vue +132 -0
- package/core/client/components/team/KMemberCard.vue +328 -0
- package/core/client/components/team/KMemberFilter.vue +49 -0
- package/core/client/components/team/KMembersActivity.vue +126 -0
- package/core/client/components/team/KOrganisationsActivity.vue +53 -0
- package/core/client/components/team/KTagCard.vue +72 -0
- package/core/client/components/team/KTagsActivity.vue +61 -0
- package/core/client/components/team/index.js +9 -0
- package/core/client/components/time/KAbsoluteTimeRange.vue +183 -0
- package/core/client/components/time/KDate.vue +75 -0
- package/core/client/components/time/KDateTime.vue +172 -0
- package/core/client/components/time/KDateTimeRange.vue +118 -0
- package/core/client/components/time/KRelativeTimeRanges.vue +193 -0
- package/core/client/components/time/KTime.vue +74 -0
- package/core/client/components/time/index.js +7 -0
- package/core/client/components/viewer/KModalViewer.vue +47 -0
- package/core/client/components/viewer/KViewer.vue +30 -0
- package/core/client/composables/activity.js +67 -0
- package/core/client/composables/collection.js +181 -0
- package/core/client/composables/index.js +8 -0
- package/core/client/composables/pwa.js +71 -0
- package/core/client/composables/schema.js +64 -0
- package/core/client/composables/selection.js +88 -0
- package/core/client/composables/session.js +150 -0
- package/core/client/composables/store.js +49 -0
- package/core/client/composables/version.js +47 -0
- package/core/client/events.js +3 -0
- package/core/client/filter.js +60 -0
- package/core/client/guards.js +101 -0
- package/core/client/hooks/hooks.events.js +7 -0
- package/core/client/hooks/hooks.logger.js +24 -0
- package/core/client/hooks/hooks.users.js +22 -0
- package/core/client/hooks/index.js +3 -0
- package/core/client/i18n/core_en.json +840 -0
- package/core/client/i18n/core_fr.json +838 -0
- package/core/client/i18n.js +88 -0
- package/core/client/index.js +84 -0
- package/core/client/layout.js +323 -0
- package/core/client/local-storage.js +28 -0
- package/core/client/mixins/index.js +12 -0
- package/core/client/mixins/mixin.account.js +61 -0
- package/core/client/mixins/mixin.base-activity.js +232 -0
- package/core/client/mixins/mixin.base-collection.js +162 -0
- package/core/client/mixins/mixin.base-context.js +54 -0
- package/core/client/mixins/mixin.base-editor.js +194 -0
- package/core/client/mixins/mixin.base-field.js +105 -0
- package/core/client/mixins/mixin.base-item.js +166 -0
- package/core/client/mixins/mixin.base-modal.js +36 -0
- package/core/client/mixins/mixin.base-viewer.js +43 -0
- package/core/client/mixins/mixin.object-proxy.js +46 -0
- package/core/client/mixins/mixin.schema-proxy.js +97 -0
- package/core/client/mixins/mixin.service.js +22 -0
- package/core/client/reader.js +65 -0
- package/core/client/readers/index.js +3 -0
- package/core/client/readers/reader.blob.js +39 -0
- package/core/client/readers/reader.csv.js +36 -0
- package/core/client/readers/reader.json.js +34 -0
- package/core/client/search.js +47 -0
- package/core/client/services/index.js +47 -0
- package/core/client/services/local-settings.service.js +67 -0
- package/core/client/sorter.js +31 -0
- package/core/client/storage.js +102 -0
- package/core/client/store.js +39 -0
- package/core/client/theme.js +40 -0
- package/core/client/time.js +167 -0
- package/core/client/units.js +218 -0
- package/core/client/utils/index.js +203 -0
- package/core/client/utils/utils.account.js +47 -0
- package/core/client/utils/utils.colors.js +36 -0
- package/core/client/utils/utils.content.js +185 -0
- package/core/client/utils/utils.locale.js +28 -0
- package/core/client/utils/utils.platform.js +11 -0
- package/core/client/utils/utils.push.js +53 -0
- package/core/client/utils/utils.pwa.js +63 -0
- package/core/client/utils/utils.session.js +89 -0
- package/core/common/errors.js +1 -0
- package/core/common/index.js +10 -0
- package/core/common/permissions.js +318 -0
- package/core/common/schema.js +35 -0
- package/core/common/schemas/groups.create.json +28 -0
- package/core/common/schemas/groups.update.json +28 -0
- package/core/common/schemas/organisations.create.json +28 -0
- package/core/common/schemas/organisations.update.json +49 -0
- package/core/common/schemas/settings.update.json +234 -0
- package/core/common/schemas/tags.create.json +35 -0
- package/core/common/schemas/tags.update.json +35 -0
- package/core/common/schemas/users.update-profile.json +33 -0
- package/core/common/utils.js +45 -0
- package/coverage/base.css +224 -0
- package/coverage/block-navigation.js +87 -0
- package/coverage/core/api/application.js.html +1849 -0
- package/coverage/core/api/authentication.js.html +694 -0
- package/coverage/core/api/db.js.html +763 -0
- package/coverage/core/api/hooks/hooks.account.js.html +169 -0
- package/coverage/core/api/hooks/hooks.authentication.js.html +274 -0
- package/coverage/core/api/hooks/hooks.authorisations.js.html +1213 -0
- package/coverage/core/api/hooks/hooks.groups.js.html +229 -0
- package/coverage/core/api/hooks/hooks.logger.js.html +163 -0
- package/coverage/core/api/hooks/hooks.model.js.html +994 -0
- package/coverage/core/api/hooks/hooks.organisations.js.html +553 -0
- package/coverage/core/api/hooks/hooks.push.js.html +232 -0
- package/coverage/core/api/hooks/hooks.query.js.html +838 -0
- package/coverage/core/api/hooks/hooks.schemas.js.html +304 -0
- package/coverage/core/api/hooks/hooks.service.js.html +319 -0
- package/coverage/core/api/hooks/hooks.storage.js.html +193 -0
- package/coverage/core/api/hooks/hooks.tags.js.html +850 -0
- package/coverage/core/api/hooks/hooks.users.js.html +826 -0
- package/coverage/core/api/hooks/index.html +296 -0
- package/coverage/core/api/hooks/index.js.html +121 -0
- package/coverage/core/api/index.html +191 -0
- package/coverage/core/api/index.js.html +148 -0
- package/coverage/core/api/marshall.js.html +355 -0
- package/coverage/core/api/models/groups.model.mongodb.js.html +109 -0
- package/coverage/core/api/models/index.html +161 -0
- package/coverage/core/api/models/organisations.model.mongodb.js.html +94 -0
- package/coverage/core/api/models/tags.model.mongodb.js.html +115 -0
- package/coverage/core/api/models/users.model.mongodb.js.html +115 -0
- package/coverage/core/api/services/account/account.hooks.js.html +196 -0
- package/coverage/core/api/services/account/account.service.js.html +445 -0
- package/coverage/core/api/services/account/index.html +131 -0
- package/coverage/core/api/services/authorisations/authorisations.hooks.js.html +184 -0
- package/coverage/core/api/services/authorisations/authorisations.service.js.html +502 -0
- package/coverage/core/api/services/authorisations/index.html +131 -0
- package/coverage/core/api/services/databases/databases.hooks.js.html +193 -0
- package/coverage/core/api/services/databases/databases.service.js.html +100 -0
- package/coverage/core/api/services/databases/index.html +131 -0
- package/coverage/core/api/services/groups/groups.hooks.js.html +178 -0
- package/coverage/core/api/services/groups/index.html +116 -0
- package/coverage/core/api/services/index.html +116 -0
- package/coverage/core/api/services/index.js.html +475 -0
- package/coverage/core/api/services/mailer/index.html +131 -0
- package/coverage/core/api/services/mailer/mailer.hooks.js.html +190 -0
- package/coverage/core/api/services/mailer/mailer.service.js.html +118 -0
- package/coverage/core/api/services/organisations/index.html +131 -0
- package/coverage/core/api/services/organisations/organisations.hooks.js.html +178 -0
- package/coverage/core/api/services/organisations/organisations.service.js.html +343 -0
- package/coverage/core/api/services/push/index.html +131 -0
- package/coverage/core/api/services/push/push.hooks.js.html +193 -0
- package/coverage/core/api/services/push/push.service.js.html +121 -0
- package/coverage/core/api/services/storage/index.html +131 -0
- package/coverage/core/api/services/storage/storage.hooks.js.html +190 -0
- package/coverage/core/api/services/storage/storage.service.js.html +172 -0
- package/coverage/core/api/services/tags/index.html +116 -0
- package/coverage/core/api/services/tags/tags.hooks.js.html +178 -0
- package/coverage/core/api/services/users/index.html +116 -0
- package/coverage/core/api/services/users/users.hooks.js.html +313 -0
- package/coverage/core/api/utils.js.html +118 -0
- package/coverage/core/common/errors.js.html +88 -0
- package/coverage/core/common/index.html +176 -0
- package/coverage/core/common/index.js.html +115 -0
- package/coverage/core/common/permissions.js.html +1039 -0
- package/coverage/core/common/schema.js.html +190 -0
- package/coverage/core/common/utils.js.html +220 -0
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +476 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/core/api/application.js.html +1849 -0
- package/coverage/lcov-report/core/api/authentication.js.html +694 -0
- package/coverage/lcov-report/core/api/db.js.html +763 -0
- package/coverage/lcov-report/core/api/hooks/hooks.account.js.html +169 -0
- package/coverage/lcov-report/core/api/hooks/hooks.authentication.js.html +274 -0
- package/coverage/lcov-report/core/api/hooks/hooks.authorisations.js.html +1213 -0
- package/coverage/lcov-report/core/api/hooks/hooks.groups.js.html +229 -0
- package/coverage/lcov-report/core/api/hooks/hooks.logger.js.html +163 -0
- package/coverage/lcov-report/core/api/hooks/hooks.model.js.html +994 -0
- package/coverage/lcov-report/core/api/hooks/hooks.organisations.js.html +553 -0
- package/coverage/lcov-report/core/api/hooks/hooks.push.js.html +232 -0
- package/coverage/lcov-report/core/api/hooks/hooks.query.js.html +838 -0
- package/coverage/lcov-report/core/api/hooks/hooks.schemas.js.html +304 -0
- package/coverage/lcov-report/core/api/hooks/hooks.service.js.html +319 -0
- package/coverage/lcov-report/core/api/hooks/hooks.storage.js.html +193 -0
- package/coverage/lcov-report/core/api/hooks/hooks.tags.js.html +850 -0
- package/coverage/lcov-report/core/api/hooks/hooks.users.js.html +826 -0
- package/coverage/lcov-report/core/api/hooks/index.html +296 -0
- package/coverage/lcov-report/core/api/hooks/index.js.html +121 -0
- package/coverage/lcov-report/core/api/index.html +191 -0
- package/coverage/lcov-report/core/api/index.js.html +148 -0
- package/coverage/lcov-report/core/api/marshall.js.html +355 -0
- package/coverage/lcov-report/core/api/models/groups.model.mongodb.js.html +109 -0
- package/coverage/lcov-report/core/api/models/index.html +161 -0
- package/coverage/lcov-report/core/api/models/organisations.model.mongodb.js.html +94 -0
- package/coverage/lcov-report/core/api/models/tags.model.mongodb.js.html +115 -0
- package/coverage/lcov-report/core/api/models/users.model.mongodb.js.html +115 -0
- package/coverage/lcov-report/core/api/services/account/account.hooks.js.html +196 -0
- package/coverage/lcov-report/core/api/services/account/account.service.js.html +445 -0
- package/coverage/lcov-report/core/api/services/account/index.html +131 -0
- package/coverage/lcov-report/core/api/services/authorisations/authorisations.hooks.js.html +184 -0
- package/coverage/lcov-report/core/api/services/authorisations/authorisations.service.js.html +502 -0
- package/coverage/lcov-report/core/api/services/authorisations/index.html +131 -0
- package/coverage/lcov-report/core/api/services/databases/databases.hooks.js.html +193 -0
- package/coverage/lcov-report/core/api/services/databases/databases.service.js.html +100 -0
- package/coverage/lcov-report/core/api/services/databases/index.html +131 -0
- package/coverage/lcov-report/core/api/services/groups/groups.hooks.js.html +178 -0
- package/coverage/lcov-report/core/api/services/groups/index.html +116 -0
- package/coverage/lcov-report/core/api/services/index.html +116 -0
- package/coverage/lcov-report/core/api/services/index.js.html +475 -0
- package/coverage/lcov-report/core/api/services/mailer/index.html +131 -0
- package/coverage/lcov-report/core/api/services/mailer/mailer.hooks.js.html +190 -0
- package/coverage/lcov-report/core/api/services/mailer/mailer.service.js.html +118 -0
- package/coverage/lcov-report/core/api/services/organisations/index.html +131 -0
- package/coverage/lcov-report/core/api/services/organisations/organisations.hooks.js.html +178 -0
- package/coverage/lcov-report/core/api/services/organisations/organisations.service.js.html +343 -0
- package/coverage/lcov-report/core/api/services/push/index.html +131 -0
- package/coverage/lcov-report/core/api/services/push/push.hooks.js.html +193 -0
- package/coverage/lcov-report/core/api/services/push/push.service.js.html +121 -0
- package/coverage/lcov-report/core/api/services/storage/index.html +131 -0
- package/coverage/lcov-report/core/api/services/storage/storage.hooks.js.html +190 -0
- package/coverage/lcov-report/core/api/services/storage/storage.service.js.html +172 -0
- package/coverage/lcov-report/core/api/services/tags/index.html +116 -0
- package/coverage/lcov-report/core/api/services/tags/tags.hooks.js.html +178 -0
- package/coverage/lcov-report/core/api/services/users/index.html +116 -0
- package/coverage/lcov-report/core/api/services/users/users.hooks.js.html +313 -0
- package/coverage/lcov-report/core/api/utils.js.html +118 -0
- package/coverage/lcov-report/core/common/errors.js.html +88 -0
- package/coverage/lcov-report/core/common/index.html +176 -0
- package/coverage/lcov-report/core/common/index.js.html +115 -0
- package/coverage/lcov-report/core/common/permissions.js.html +1039 -0
- package/coverage/lcov-report/core/common/schema.js.html +190 -0
- package/coverage/lcov-report/core/common/utils.js.html +220 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +476 -0
- package/coverage/lcov-report/map/api/hooks/hooks.catalog.js.html +340 -0
- package/coverage/lcov-report/map/api/hooks/hooks.features.js.html +337 -0
- package/coverage/lcov-report/map/api/hooks/hooks.query.js.html +1168 -0
- package/coverage/lcov-report/map/api/hooks/index.html +161 -0
- package/coverage/lcov-report/map/api/hooks/index.js.html +94 -0
- package/coverage/lcov-report/map/api/index.html +131 -0
- package/coverage/lcov-report/map/api/index.js.html +139 -0
- package/coverage/lcov-report/map/api/marshall.js.html +178 -0
- package/coverage/lcov-report/map/api/models/alerts.model.mongodb.js.html +106 -0
- package/coverage/lcov-report/map/api/models/catalog.model.mongodb.js.html +127 -0
- package/coverage/lcov-report/map/api/models/features.model.mongodb.js.html +196 -0
- package/coverage/lcov-report/map/api/models/index.html +146 -0
- package/coverage/lcov-report/map/api/services/alerts/alerts.hooks.js.html +274 -0
- package/coverage/lcov-report/map/api/services/alerts/alerts.service.js.html +610 -0
- package/coverage/lcov-report/map/api/services/alerts/index.html +131 -0
- package/coverage/lcov-report/map/api/services/catalog/catalog.hooks.js.html +313 -0
- package/coverage/lcov-report/map/api/services/catalog/index.html +116 -0
- package/coverage/lcov-report/map/api/services/daptiles/daptiles.service.js.html +1510 -0
- package/coverage/lcov-report/map/api/services/daptiles/index.html +116 -0
- package/coverage/lcov-report/map/api/services/features/features.hooks.js.html +205 -0
- package/coverage/lcov-report/map/api/services/features/features.service.js.html +241 -0
- package/coverage/lcov-report/map/api/services/features/index.html +131 -0
- package/coverage/lcov-report/map/api/services/geocoder/geocoder.hooks.js.html +178 -0
- package/coverage/lcov-report/map/api/services/geocoder/geocoder.service.js.html +322 -0
- package/coverage/lcov-report/map/api/services/geocoder/index.html +131 -0
- package/coverage/lcov-report/map/api/services/index.html +116 -0
- package/coverage/lcov-report/map/api/services/index.js.html +769 -0
- package/coverage/lcov-report/map/common/dynamic-grid-source.js.html +466 -0
- package/coverage/lcov-report/map/common/errors.js.html +94 -0
- package/coverage/lcov-report/map/common/geotiff-grid-source.js.html +535 -0
- package/coverage/lcov-report/map/common/grid.js.html +1612 -0
- package/coverage/lcov-report/map/common/index.html +371 -0
- package/coverage/lcov-report/map/common/index.js.html +172 -0
- package/coverage/lcov-report/map/common/meteo-model-grid-source.js.html +556 -0
- package/coverage/lcov-report/map/common/moment-utils.js.html +157 -0
- package/coverage/lcov-report/map/common/opendap-grid-source.js.html +868 -0
- package/coverage/lcov-report/map/common/opendap-utils.js.html +826 -0
- package/coverage/lcov-report/map/common/permissions.js.html +118 -0
- package/coverage/lcov-report/map/common/time-based-grid-source.js.html +418 -0
- package/coverage/lcov-report/map/common/tms-utils.js.html +274 -0
- package/coverage/lcov-report/map/common/wcs-grid-source.js.html +364 -0
- package/coverage/lcov-report/map/common/wcs-utils.js.html +586 -0
- package/coverage/lcov-report/map/common/weacast-grid-source.js.html +1033 -0
- package/coverage/lcov-report/map/common/wfs-utils.js.html +574 -0
- package/coverage/lcov-report/map/common/wms-utils.js.html +436 -0
- package/coverage/lcov-report/map/common/wmts-utils.js.html +547 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +196 -0
- package/coverage/lcov.info +10742 -0
- package/coverage/map/api/hooks/hooks.catalog.js.html +340 -0
- package/coverage/map/api/hooks/hooks.features.js.html +337 -0
- package/coverage/map/api/hooks/hooks.query.js.html +1168 -0
- package/coverage/map/api/hooks/index.html +161 -0
- package/coverage/map/api/hooks/index.js.html +94 -0
- package/coverage/map/api/index.html +131 -0
- package/coverage/map/api/index.js.html +139 -0
- package/coverage/map/api/marshall.js.html +178 -0
- package/coverage/map/api/models/alerts.model.mongodb.js.html +106 -0
- package/coverage/map/api/models/catalog.model.mongodb.js.html +127 -0
- package/coverage/map/api/models/features.model.mongodb.js.html +196 -0
- package/coverage/map/api/models/index.html +146 -0
- package/coverage/map/api/services/alerts/alerts.hooks.js.html +274 -0
- package/coverage/map/api/services/alerts/alerts.service.js.html +610 -0
- package/coverage/map/api/services/alerts/index.html +131 -0
- package/coverage/map/api/services/catalog/catalog.hooks.js.html +313 -0
- package/coverage/map/api/services/catalog/index.html +116 -0
- package/coverage/map/api/services/daptiles/daptiles.service.js.html +1510 -0
- package/coverage/map/api/services/daptiles/index.html +116 -0
- package/coverage/map/api/services/features/features.hooks.js.html +205 -0
- package/coverage/map/api/services/features/features.service.js.html +241 -0
- package/coverage/map/api/services/features/index.html +131 -0
- package/coverage/map/api/services/geocoder/geocoder.hooks.js.html +178 -0
- package/coverage/map/api/services/geocoder/geocoder.service.js.html +322 -0
- package/coverage/map/api/services/geocoder/index.html +131 -0
- package/coverage/map/api/services/index.html +116 -0
- package/coverage/map/api/services/index.js.html +769 -0
- package/coverage/map/common/dynamic-grid-source.js.html +466 -0
- package/coverage/map/common/errors.js.html +94 -0
- package/coverage/map/common/geotiff-grid-source.js.html +535 -0
- package/coverage/map/common/grid.js.html +1612 -0
- package/coverage/map/common/index.html +371 -0
- package/coverage/map/common/index.js.html +172 -0
- package/coverage/map/common/meteo-model-grid-source.js.html +556 -0
- package/coverage/map/common/moment-utils.js.html +157 -0
- package/coverage/map/common/opendap-grid-source.js.html +868 -0
- package/coverage/map/common/opendap-utils.js.html +826 -0
- package/coverage/map/common/permissions.js.html +118 -0
- package/coverage/map/common/time-based-grid-source.js.html +418 -0
- package/coverage/map/common/tms-utils.js.html +274 -0
- package/coverage/map/common/wcs-grid-source.js.html +364 -0
- package/coverage/map/common/wcs-utils.js.html +586 -0
- package/coverage/map/common/weacast-grid-source.js.html +1033 -0
- package/coverage/map/common/wfs-utils.js.html +574 -0
- package/coverage/map/common/wms-utils.js.html +436 -0
- package/coverage/map/common/wmts-utils.js.html +547 -0
- package/coverage/prettify.css +1 -0
- package/coverage/prettify.js +2 -0
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +196 -0
- package/coverage/tmp/coverage-59096-1692631696256-0.json +1 -0
- package/coverage/tmp/coverage-59108-1692631696233-0.json +1 -0
- package/coverage/tmp/coverage-59119-1692631696222-0.json +1 -0
- package/coverage/tmp/coverage-59131-1692631696200-0.json +1 -0
- package/coverage/tmp/coverage-59138-1692631696175-0.json +1 -0
- package/extras/css/core.variables.scss +5 -1
- package/extras/tours/core/account-profile.js +14 -31
- package/extras/tours/core/account.js +143 -0
- package/extras/tours/core/add-member.js +7 -6
- package/extras/tours/core/add-tag.js +13 -0
- package/extras/tours/core/create-tag.js +26 -0
- package/extras/tours/core/edit-member-role.js +13 -0
- package/extras/tours/core/join-group.js +0 -12
- package/extras/tours/core/login.js +0 -7
- package/extras/tours/core/members.js +13 -26
- package/extras/tours/core/send-reset-password.js +1 -1
- package/extras/tours/core/tags.js +17 -4
- package/extras/tours/map/navigation-bar.js +1 -1
- package/extras/tours/map/side-nav.js +3 -2
- package/map/api/config/categories.cjs +42 -0
- package/map/api/config/layers.cjs +43 -0
- package/map/api/config/sublegends.cjs +42 -0
- package/map/api/hooks/hooks.catalog.js +85 -0
- package/map/api/hooks/hooks.features.js +84 -0
- package/map/api/hooks/hooks.query.js +361 -0
- package/map/api/hooks/index.js +3 -0
- package/map/api/index.js +18 -0
- package/map/api/marshall.js +31 -0
- package/map/api/models/alerts.model.mongodb.js +7 -0
- package/map/api/models/catalog.model.mongodb.js +14 -0
- package/map/api/models/features.model.mongodb.js +37 -0
- package/map/api/services/alerts/alerts.hooks.js +63 -0
- package/map/api/services/alerts/alerts.service.js +175 -0
- package/map/api/services/catalog/catalog.hooks.js +76 -0
- package/map/api/services/daptiles/daptiles.service.js +475 -0
- package/map/api/services/features/features.hooks.js +40 -0
- package/map/api/services/features/features.service.js +52 -0
- package/map/api/services/geocoder/geocoder.hooks.js +31 -0
- package/map/api/services/geocoder/geocoder.service.js +79 -0
- package/map/api/services/index.js +228 -0
- package/map/client/canvas-draw-context.js +16 -0
- package/map/client/cesium/utils.js +132 -0
- package/map/client/components/KCaptureToolbar.vue +155 -0
- package/map/client/components/KColorLegend.vue +349 -0
- package/map/client/components/KCompass.vue +143 -0
- package/map/client/components/KEditLayerData.vue +85 -0
- package/map/client/components/KFeatureActionButton.vue +119 -0
- package/map/client/components/KFeatureEditor.vue +92 -0
- package/map/client/components/KFeaturesChart.vue +285 -0
- package/map/client/components/KFeaturesFilter.vue +259 -0
- package/map/client/components/KFeaturesTable.vue +99 -0
- package/map/client/components/KLayerEditionToolbar.vue +54 -0
- package/map/client/components/KLayerEditor.vue +48 -0
- package/map/client/components/KLayerStyleEditor.vue +118 -0
- package/map/client/components/KLayerStyleForm.vue +906 -0
- package/map/client/components/KLevelSlider.vue +100 -0
- package/map/client/components/KMeasureTool.vue +568 -0
- package/map/client/components/KPositionIndicator.vue +90 -0
- package/map/client/components/KTimeline.vue +293 -0
- package/map/client/components/KTimezoneMap.vue +158 -0
- package/map/client/components/KUrlLegend.vue +122 -0
- package/map/client/components/catalog/KAddLayer.vue +66 -0
- package/map/client/components/catalog/KBaseLayersSelector.vue +114 -0
- package/map/client/components/catalog/KConnectLayer.vue +323 -0
- package/map/client/components/catalog/KCreateLayer.vue +184 -0
- package/map/client/components/catalog/KCreateView.vue +108 -0
- package/map/client/components/catalog/KFilteredLayerItem.vue +53 -0
- package/map/client/components/catalog/KImportLayer.vue +168 -0
- package/map/client/components/catalog/KLayerCategories.vue +274 -0
- package/map/client/components/catalog/KLayerItem.vue +71 -0
- package/map/client/components/catalog/KLayersPanel.vue +137 -0
- package/map/client/components/catalog/KLayersSelector.vue +73 -0
- package/map/client/components/catalog/KViewSelector.vue +46 -0
- package/map/client/components/catalog/KViewsPanel.vue +118 -0
- package/map/client/components/catalog/KWeatherLayersSelector.vue +129 -0
- package/map/client/components/form/KDirectionField.vue +113 -0
- package/map/client/components/form/KLayerCategoryField.vue +46 -0
- package/map/client/components/form/KLocationField.vue +189 -0
- package/map/client/components/form/KOwsLayerField.vue +130 -0
- package/map/client/components/form/KOwsServiceField.vue +238 -0
- package/map/client/components/form/KTimezoneField.vue +142 -0
- package/map/client/components/index.js +1 -0
- package/map/client/components/legend/KColorScaleLegend.vue +31 -0
- package/map/client/components/legend/KImageLegend.vue +52 -0
- package/map/client/components/legend/KLegend.vue +191 -0
- package/map/client/components/legend/KLegendRenderer.vue +20 -0
- package/map/client/components/legend/KSymbolsLegend.vue +101 -0
- package/map/client/components/location/KGeocodersFilter.vue +44 -0
- package/map/client/components/location/KLocationCardSection.vue +61 -0
- package/map/client/components/location/KLocationMap.vue +280 -0
- package/map/client/components/location/KLocationSearch.vue +144 -0
- package/map/client/components/location/KLocationTip.vue +29 -0
- package/map/client/components/tools/KGeolocateTool.vue +46 -0
- package/map/client/components/tools/KSearchTool.vue +93 -0
- package/map/client/components/widget/KElevationProfile.vue +454 -0
- package/map/client/components/widget/KInformationBox.vue +145 -0
- package/map/client/components/widget/KMapillaryViewer.vue +178 -0
- package/map/client/components/widget/KStackableTimeSeries.vue +214 -0
- package/map/client/components/widget/KTimeSeries.vue +500 -0
- package/map/client/composables/activity.js +88 -0
- package/map/client/composables/highlight.js +216 -0
- package/map/client/composables/index.js +7 -0
- package/map/client/composables/location.js +53 -0
- package/map/client/composables/measure.js +42 -0
- package/map/client/composables/probe.js +133 -0
- package/map/client/composables/selection.js +300 -0
- package/map/client/composables/weather.js +213 -0
- package/map/client/elevation-utils.js +258 -0
- package/map/client/geolocation.js +119 -0
- package/map/client/globe.js +13 -0
- package/map/client/i18n/map_en.json +645 -0
- package/map/client/i18n/map_fr.json +646 -0
- package/map/client/index.js +18 -0
- package/map/client/init.js +80 -0
- package/map/client/leaflet/BoxSelection.js +142 -0
- package/map/client/leaflet/GSMaPLayer.js +55 -0
- package/map/client/leaflet/GradientPath.js +180 -0
- package/map/client/leaflet/MaskLayer.js +57 -0
- package/map/client/leaflet/TiledFeatureLayer.js +572 -0
- package/map/client/leaflet/TiledMeshLayer.js +486 -0
- package/map/client/leaflet/TiledWindLayer.js +384 -0
- package/map/client/leaflet/utils.js +246 -0
- package/map/client/map.js +15 -0
- package/map/client/mixins/globe/index.js +8 -0
- package/map/client/mixins/globe/mixin.base-globe.js +462 -0
- package/map/client/mixins/globe/mixin.file-layers.js +40 -0
- package/map/client/mixins/globe/mixin.geojson-layers.js +314 -0
- package/map/client/mixins/globe/mixin.globe-activity.js +52 -0
- package/map/client/mixins/globe/mixin.opendap-layers.js +51 -0
- package/map/client/mixins/globe/mixin.popup.js +82 -0
- package/map/client/mixins/globe/mixin.style.js +110 -0
- package/map/client/mixins/globe/mixin.tooltip.js +101 -0
- package/map/client/mixins/index.js +9 -0
- package/map/client/mixins/map/index.js +16 -0
- package/map/client/mixins/map/mixin.base-map.js +592 -0
- package/map/client/mixins/map/mixin.canvas-layers.js +529 -0
- package/map/client/mixins/map/mixin.edit-layers.js +474 -0
- package/map/client/mixins/map/mixin.file-layers.js +49 -0
- package/map/client/mixins/map/mixin.forecast-layers.js +79 -0
- package/map/client/mixins/map/mixin.geojson-layers.js +557 -0
- package/map/client/mixins/map/mixin.georaster-layers.js +114 -0
- package/map/client/mixins/map/mixin.gsmap-layers.js +27 -0
- package/map/client/mixins/map/mixin.heatmap-layers.js +116 -0
- package/map/client/mixins/map/mixin.map-activity.js +38 -0
- package/map/client/mixins/map/mixin.mapillary-layers.js +45 -0
- package/map/client/mixins/map/mixin.popup.js +53 -0
- package/map/client/mixins/map/mixin.style.js +73 -0
- package/map/client/mixins/map/mixin.tiled-mesh-layers.js +120 -0
- package/map/client/mixins/map/mixin.tiled-wind-layers.js +126 -0
- package/map/client/mixins/map/mixin.tooltip.js +47 -0
- package/map/client/mixins/mixin.activity.js +477 -0
- package/map/client/mixins/mixin.catalog-panel.js +25 -0
- package/map/client/mixins/mixin.context.js +252 -0
- package/map/client/mixins/mixin.feature-selection.js +28 -0
- package/map/client/mixins/mixin.feature-service.js +403 -0
- package/map/client/mixins/mixin.infobox.js +29 -0
- package/map/client/mixins/mixin.levels.js +66 -0
- package/map/client/mixins/mixin.style.js +29 -0
- package/map/client/mixins/mixin.weacast.js +212 -0
- package/map/client/pixi-utils.js +256 -0
- package/map/client/readers/index.js +4 -0
- package/map/client/readers/reader.geojson.js +64 -0
- package/map/client/readers/reader.gpx.js +36 -0
- package/map/client/readers/reader.kml.js +36 -0
- package/map/client/readers/reader.shp.js +82 -0
- package/map/client/utils/utils.location.js +45 -0
- package/map/client/utils.js +303 -0
- package/map/common/dynamic-grid-source.js +127 -0
- package/map/common/errors.js +3 -0
- package/map/common/geotiff-grid-source.js +150 -0
- package/map/common/grid.js +509 -0
- package/map/common/index.js +29 -0
- package/map/common/meteo-model-grid-source.js +157 -0
- package/map/common/moment-utils.js +24 -0
- package/map/common/opendap-grid-source.js +261 -0
- package/map/common/opendap-utils.js +247 -0
- package/map/common/permissions.js +11 -0
- package/map/common/schemas/catalog.update.json +28 -0
- package/map/common/time-based-grid-source.js +111 -0
- package/map/common/tms-utils.js +63 -0
- package/map/common/wcs-grid-source.js +93 -0
- package/map/common/wcs-utils.js +167 -0
- package/map/common/weacast-grid-source.js +316 -0
- package/map/common/wfs-utils.js +163 -0
- package/map/common/wms-utils.js +117 -0
- package/map/common/wmts-utils.js +154 -0
- package/package.json +18 -15
- package/test/api/core/account.test.js +452 -0
- package/test/api/core/client.test.js.skip +37 -0
- package/test/api/core/config/default.cjs +115 -0
- package/test/api/core/config/email-templates/confirmInvitation/html.ejs +18 -0
- package/test/api/core/config/email-templates/identityChange/html.ejs +14 -0
- package/test/api/core/config/email-templates/newDevice/html.ejs +7 -0
- package/test/api/core/config/email-templates/newSubscription/html.ejs +7 -0
- package/test/api/core/config/email-templates/passwordChange/html.ejs +5 -0
- package/test/api/core/config/email-templates/resendVerifySignup/html.ejs +12 -0
- package/test/api/core/config/email-templates/resetPwd/html.ejs +5 -0
- package/test/api/core/config/email-templates/sendResetPwd/html.ejs +12 -0
- package/test/api/core/config/email-templates/verifySignup/html.ejs +3 -0
- package/test/api/core/data/10k_most_common_passwords.txt +10000 -0
- package/test/api/core/data/invalid-objects.json +60 -0
- package/test/api/core/data/logo.png +0 -0
- package/test/api/core/data/schema.json +57 -0
- package/test/api/core/data/valid-objects.json +38 -0
- package/test/api/core/hooks.test.js +330 -0
- package/test/api/core/index.js +1 -0
- package/test/api/core/index.test.js +478 -0
- package/test/api/core/push.test.js +191 -0
- package/test/api/core/schemas.test.js +82 -0
- package/test/api/core/storage.test.js +153 -0
- package/test/api/core/team.test.js +670 -0
- package/test/api/core/test-log-2023-07-04.log +0 -0
- package/test/api/core/test-log-2023-07-10.log +2 -0
- package/test/api/core/test-log-2023-07-12.log +0 -0
- package/test/api/core/test-log-2023-07-18.log +78 -0
- package/test/api/core/test-log-2023-07-19.log +44 -0
- package/test/api/core/test-log-2023-08-01.log +162 -0
- package/test/api/core/test-log-2023-08-21.log +66 -0
- package/test/api/core/test-log-2023-08-22.log +96 -0
- package/test/api/core/test-log-2023-08-23.log +22 -0
- package/test/api/core/test-log-2023-09-20.log +22 -0
- package/test/api/core/utils.js +83 -0
- package/test/api/index.js +4 -0
- package/test/api/map/alerts.test.js +560 -0
- package/test/api/map/config/default.cjs +125 -0
- package/test/api/map/config/layers.json +38 -0
- package/test/api/map/data/DescribeCoverage.xml +55 -0
- package/test/api/map/data/GetCoverage.tif +0 -0
- package/test/api/map/data/adsb.observations.json +132 -0
- package/test/api/map/data/dataset.grb.das +55 -0
- package/test/api/map/data/dataset.grb.dds +17 -0
- package/test/api/map/data/dataset.grb.dods +0 -0
- package/test/api/map/data/lat_lon_bounds.grb.dods +0 -0
- package/test/api/map/data/subdataset.grb.dods +0 -0
- package/test/api/map/data/vigicrues.observations.json +47042 -0
- package/test/api/map/data/vigicrues.stations.json +15422 -0
- package/test/api/map/data/zones.json +1228 -0
- package/test/api/map/grid-sources.test.js +313 -0
- package/test/api/map/hooks.test.js +98 -0
- package/test/api/map/index.js +0 -0
- package/test/api/map/index.test.js +563 -0
- package/test/api/map/test-log-2023-07-18.log +62 -0
- package/test/api/map/test-log-2023-07-19.log +13 -0
- package/test/api/map/test-log-2023-08-21.log +65 -0
- package/test/api/map/test-log-2023-09-20.log +60 -0
- package/test/client/core/account.js +36 -0
- package/test/client/core/api.js +361 -0
- package/test/client/core/collection.js +64 -0
- package/test/client/core/index.js +8 -0
- package/test/client/core/layout.js +116 -0
- package/test/client/core/runner.js +224 -0
- package/test/client/core/screens.js +35 -0
- package/test/client/core/time.js +10 -0
- package/test/client/core/utils.js +260 -0
- package/test/client/index.js +4 -0
- package/test/client/map/catalog.js +175 -0
- package/test/client/map/controls.js +41 -0
- package/test/client/map/index.js +4 -0
- package/test/client/map/time.js +24 -0
- package/test/client/map/utils.js +27 -0
- package/extras/tours/core/account-dz.js +0 -37
- package/extras/tours/core/account-security.js +0 -52
- package/extras/tours/core/change-password.js +0 -34
- package/extras/tours/core/edit-member-tags.js +0 -18
- package/extras/tours/core/send-change-identity.js +0 -28
|
@@ -0,0 +1,645 @@
|
|
|
1
|
+
{
|
|
2
|
+
"CLOSE": "Close",
|
|
3
|
+
"SEARCH": "Search",
|
|
4
|
+
"errors": {
|
|
5
|
+
"GEOLOCATION_NOT_SUPPORTED": "Geolocation does not seem to be supported on your device or browser.",
|
|
6
|
+
"GEOLOCATION_ERROR": "We are not able to locate your position, this might affect some features of the application.",
|
|
7
|
+
"GEOLOCATION_PERMISSION_DENIED": "@:errors.GEOLOCATION_ERROR It seems you did not give permission to locate you.",
|
|
8
|
+
"GEOLOCATION_POSITION_UNAVAILABLE": "@:errors.GEOLOCATION_ERROR It seems the internal source of position returned an internal error.",
|
|
9
|
+
"GEOLOCATION_POSITION_TIMEOUT": "@:errors.GEOLOCATION_ERROR It seems the time allowed to acquire it was reached before the information was obtained.",
|
|
10
|
+
"CANNOT_PROCESS_SCHEMA_DATA": "Invalid or incomplete data scheme",
|
|
11
|
+
"ALERTS_LIMIT": "Too much alerts to display all of them",
|
|
12
|
+
"FILE_IMPORT_ERROR": "File import has failed",
|
|
13
|
+
"CANNOT_CHECK_ALERT_MISSING_SERVICE": "Last check failed due to unavailable service",
|
|
14
|
+
"CANNOT_CHECK_ALERT_MISSING_DATA": "Last check failed due to unavailable data",
|
|
15
|
+
"INVALID_GEOJSON_FILE": "{file} is not a valid GeoJSON file",
|
|
16
|
+
"INVALID_GEOJSON_CRS": "{file} has an unsupported Coordinates Reference System (CRS)",
|
|
17
|
+
"INVALID_GPX_FILE": "{file} is not a valid GPX file",
|
|
18
|
+
"INVALID_KML_FILE": "{file} is not a valid KML file"
|
|
19
|
+
},
|
|
20
|
+
"mixins": {
|
|
21
|
+
"fileLayers": {
|
|
22
|
+
"IMPORTED_DATA_NAME": "My data"
|
|
23
|
+
},
|
|
24
|
+
"legend": {
|
|
25
|
+
"CONVERT_UNITS": "Click to change unit"
|
|
26
|
+
},
|
|
27
|
+
"activity": {
|
|
28
|
+
"ADD_LAYER": "Add a new layer",
|
|
29
|
+
"SAVE_LABEL": "Save layer",
|
|
30
|
+
"SAVING_LABEL": "Please wait while saving layer data,</br>processed {processed} over {total} features",
|
|
31
|
+
"INVALID_FEATURES_DIALOG_TITLE": "Invalid elements",
|
|
32
|
+
"INVALID_FEATURES_DIALOG_MESSAGE": "Your layer contains {features.length} elements with invalid geometry (e.g. self-intersection). As a consequence they will be removed prior to saving.",
|
|
33
|
+
"DOWNLOAD_INVALID_FEATURES_LABEL": "By checking this option the invalid features will be exported to a file before saving",
|
|
34
|
+
"INVALID_FEATURES_FILE": "InvalidFeatures.geojson",
|
|
35
|
+
"SAVE_DIALOG_TITLE": "Tiling layer {layer}",
|
|
36
|
+
"SAVE_DIALOG_MESSAGE": "Your layer contains too much elements and has been optimized to be smoothly displayed.</br>As a consequence, it will only be visible at a local scale from a given zoom level.",
|
|
37
|
+
"EDIT_LABEL": "Edit properties",
|
|
38
|
+
"EDIT_LAYER_STYLE_LABEL": "Edit style",
|
|
39
|
+
"FILTER_DATA_LABEL": "Filter data",
|
|
40
|
+
"VIEW_DATA_LABEL": "View data",
|
|
41
|
+
"CHART_DATA_LABEL": "Chart data",
|
|
42
|
+
"START_EDIT_DATA_LABEL": "Start data edit",
|
|
43
|
+
"STOP_EDIT_DATA_LABEL": "Stop data edit",
|
|
44
|
+
"EDITING_DATA_MESSAGE": "Editing",
|
|
45
|
+
"REMOVE_LABEL": "Remove",
|
|
46
|
+
"REMOVING_LABEL": "Please wait while removing layer data",
|
|
47
|
+
"REMOVE_DIALOG_TITLE": "Remove {layer} ?",
|
|
48
|
+
"REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove <b>{layer}</b> from your workspace ?",
|
|
49
|
+
"ZOOM_TO_LABEL": "Zoom to",
|
|
50
|
+
"ZOOM_IN": "Zoom in",
|
|
51
|
+
"ZOOM_OUT": "Zoom out",
|
|
52
|
+
"SHOW_USER_LOCATION": "Display my location",
|
|
53
|
+
"HIDE_USER_LOCATION": "Hide my location",
|
|
54
|
+
"TOGGLE_SIDENAV": "Menu",
|
|
55
|
+
"ENTER_FULLSCREEN": "Toggle fullscreen mode",
|
|
56
|
+
"EXIT_FULLSCREEN": "Exit fullscreen mode",
|
|
57
|
+
"TOGGLE_CATALOG": "Catalog",
|
|
58
|
+
"TOGGLE_MAP": "View in 2D",
|
|
59
|
+
"TOGGLE_GLOBE": "View in 3D",
|
|
60
|
+
"ENTER_VR": "Enter VR mode",
|
|
61
|
+
"EXIT_VR": "Exit VR mod",
|
|
62
|
+
"PROBE": "Probe",
|
|
63
|
+
"DISPLAY_POSITION": "Display the coordinates",
|
|
64
|
+
"DISPLAY_LEGEND": "Display legend",
|
|
65
|
+
"HIDE_LEGEND": "Hide legend",
|
|
66
|
+
"SEARCH_LOCATION": "Search a location",
|
|
67
|
+
"CREATE_VIEW": "Create view",
|
|
68
|
+
"SYNCHRONIZE_TIMELINE_LABEL": "Synchronize with timeline",
|
|
69
|
+
"TOOLS": "Tools",
|
|
70
|
+
"SAVE_LAYER_EDITION_CHANGES": "Save edition changes",
|
|
71
|
+
"DISCARD_LAYER_EDITION_CHANGES": "Discard edition changes",
|
|
72
|
+
"CAPTURE_VIEW": "Capture the view"
|
|
73
|
+
},
|
|
74
|
+
"timeseries": {
|
|
75
|
+
"FORECAST_PROBE": "Forecast"
|
|
76
|
+
},
|
|
77
|
+
"editLayers": {
|
|
78
|
+
"REMOVE_FEATURE_DIALOG_TITLE": "Remove this feature ?",
|
|
79
|
+
"REMOVE_FEATURE_DIALOG_MESSAGE": "Are you sure you want to remove this feature from your workspace ?",
|
|
80
|
+
"draw": {
|
|
81
|
+
"toolbar": {
|
|
82
|
+
"actions": {
|
|
83
|
+
"title": "Cancel drawing",
|
|
84
|
+
"text": "Cancel"
|
|
85
|
+
},
|
|
86
|
+
"finish": {
|
|
87
|
+
"title": "Finish drawing",
|
|
88
|
+
"text": "Finish"
|
|
89
|
+
},
|
|
90
|
+
"undo": {
|
|
91
|
+
"title": "Delete last point drawn",
|
|
92
|
+
"text": "Delete last point"
|
|
93
|
+
},
|
|
94
|
+
"buttons": {
|
|
95
|
+
"polyline": "Draw a polyline",
|
|
96
|
+
"polygon": "Draw a polygon",
|
|
97
|
+
"rectangle": "Draw a rectangle",
|
|
98
|
+
"circle": "Draw a circle",
|
|
99
|
+
"marker": "Draw a marker",
|
|
100
|
+
"circlemarker": "Draw a circlemarker"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"handlers": {
|
|
104
|
+
"circle": {
|
|
105
|
+
"tooltip": {
|
|
106
|
+
"start": "Click and drag to draw circle."
|
|
107
|
+
},
|
|
108
|
+
"radius": "Radius"
|
|
109
|
+
},
|
|
110
|
+
"circlemarker": {
|
|
111
|
+
"tooltip": {
|
|
112
|
+
"start": "Click map to place circle marker."
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"marker": {
|
|
116
|
+
"tooltip": {
|
|
117
|
+
"start": "Click map to place marker."
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"polygon": {
|
|
121
|
+
"tooltip": {
|
|
122
|
+
"start": "Click to start drawing shape.",
|
|
123
|
+
"cont": "Click to continue drawing shape.",
|
|
124
|
+
"end": "Click first point to close this shape."
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"polyline": {
|
|
128
|
+
"error": "<strong>Error:</strong> shape edges cannot cross!",
|
|
129
|
+
"tooltip": {
|
|
130
|
+
"start": "Click to start drawing line.",
|
|
131
|
+
"cont": "Click to continue drawing line.",
|
|
132
|
+
"end": "Click last point to finish line."
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"rectangle": {
|
|
136
|
+
"tooltip": {
|
|
137
|
+
"start": "Click and drag to draw rectangle."
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"simpleshape": {
|
|
141
|
+
"tooltip": {
|
|
142
|
+
"end": "Release mouse to finish drawing."
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"edit": {
|
|
148
|
+
"toolbar": {
|
|
149
|
+
"actions": {
|
|
150
|
+
"save": {
|
|
151
|
+
"title": "Save changes",
|
|
152
|
+
"text": "Save"
|
|
153
|
+
},
|
|
154
|
+
"cancel": {
|
|
155
|
+
"title": "Cancel editing, discards all changes",
|
|
156
|
+
"text": "Cancel"
|
|
157
|
+
},
|
|
158
|
+
"clearAll": {
|
|
159
|
+
"title": "Clear all layers",
|
|
160
|
+
"text": "Clear All"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"buttons": {
|
|
164
|
+
"edit": "Edit layers",
|
|
165
|
+
"editDisabled": "No layers to edit",
|
|
166
|
+
"remove": "Delete layers",
|
|
167
|
+
"removeDisabled": "No layers to delete"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"handlers": {
|
|
171
|
+
"edit": {
|
|
172
|
+
"tooltip": {
|
|
173
|
+
"text": "Drag handles or markers to edit features.",
|
|
174
|
+
"subtext": "Click cancel to undo changes."
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"remove": {
|
|
178
|
+
"tooltip": {
|
|
179
|
+
"text": "Click on a feature to remove."
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"geolocation": {
|
|
187
|
+
"TITLE": "My position",
|
|
188
|
+
"METERS": "meters",
|
|
189
|
+
"FEET": "feet",
|
|
190
|
+
"POPUP": "You are within {distance} {unit} from this point",
|
|
191
|
+
"OUTSIDE_MAP_BOUNDS": "You seem located outside the boundaries of the map"
|
|
192
|
+
},
|
|
193
|
+
"geocoders": {
|
|
194
|
+
"BAN": "BAN",
|
|
195
|
+
"NOMINATIN": "Nominatin"
|
|
196
|
+
},
|
|
197
|
+
"schemas": {
|
|
198
|
+
"CATALOG_CREATE_TITLE": "Create a new data layer",
|
|
199
|
+
"CATALOG_NAME_FIELD_LABEL": "Enter the name of the new layer",
|
|
200
|
+
"CATALOG_DESCRIPTION_FIELD_LABEL": "Enter the description of the new layer",
|
|
201
|
+
"CATALOG_FEATURE_ID_FIELD_LABEL": "Enter a unique feature ID",
|
|
202
|
+
"CATALOG_SCHEMA_FIELD_LABEL": "Select a data scheme",
|
|
203
|
+
"LAYER_CATEGORY_CREATE_TITLE": "Create a new category?",
|
|
204
|
+
"LAYER_CATEGORY_NAME_FIELD_LABEL": "Enter the name of this category",
|
|
205
|
+
"LAYER_CATEGORY_ICON_FIELD_LABEL": "Select an icon for this category",
|
|
206
|
+
"LAYER_CATEGORY_LAYERS_FIELD_LABEL": "Select the layers in this category",
|
|
207
|
+
"LAYER_CATEGORY_EXCLUSIVE_FIELD_LABEL": "Make selection exclusive within this category",
|
|
208
|
+
"MAP_SETTINGS": "Map parameters",
|
|
209
|
+
"RESTORE_VIEW_FIELD_LABEL": "Save current extent",
|
|
210
|
+
"RESTORE_LAYERS_FIELD_LABEL": "Save active layers",
|
|
211
|
+
"LOCATION_FORMAT_LABEL": "Location format",
|
|
212
|
+
"LOCATION_FORMAT_HELPER": "<a target='_blank' href='https://github.com/nerik/formatcoords#formatting'>🛈</a>",
|
|
213
|
+
"TIMELINE_SETTINGS": "Timeline parameters",
|
|
214
|
+
"TIMELINE_STEP": "Timeline step (in minutes)",
|
|
215
|
+
"TIMELINE_INTERVAL": "Real-time data refresh update interval",
|
|
216
|
+
"TIMESERIES_SETTINGS": "Timeseries parameters",
|
|
217
|
+
"TIMESERIES_SPAN": "Timeseries span (in hours)"
|
|
218
|
+
},
|
|
219
|
+
"tours": {
|
|
220
|
+
"navigation-bar": {
|
|
221
|
+
"NAVIGATION_BAR_LABEL": "This bar allows to quickly execute recurring actions on the map.",
|
|
222
|
+
"ZOOM_LABEL": "Zoom in/out using these buttons.",
|
|
223
|
+
"TOGGLE_MAP_LABEL": "Switch to 2D map view using this button.",
|
|
224
|
+
"TOGGLE_GLOBE_LABEL": "Switch to 3D map view using this button.",
|
|
225
|
+
"GEOLOCATE_LABEL": "Recenter the map on your location and display it using this button.",
|
|
226
|
+
"SEARCH_LOCATION_LABEL": "Seek for an address using this button.",
|
|
227
|
+
"LOCATION_SEARCHING_LABEL": "Type part of your address and select among the proposed locations to center the map on.",
|
|
228
|
+
"SEARCH_BACK_LABEL": "Then stop searching by going back to the actions.",
|
|
229
|
+
"TOOLS_LABEL": "Select among available tools using this button.",
|
|
230
|
+
"TRACK_LOCATION_LABEL": "Display the coordinates of a location using this button.",
|
|
231
|
+
"COPY_LOCATION_LABEL": "Copy the coordinates in your clipboard using this button.",
|
|
232
|
+
"LOCATION_TRACKING_LABEL": "Drag the screen to display the coordinates of its center and release to keep track of it.",
|
|
233
|
+
"TRACK_BACK_LABEL": "Then stop tracking by going back to the actions.",
|
|
234
|
+
"MEASURE_LABEL": "Activate measure tools using this button.",
|
|
235
|
+
"MEASURE_DISTANCE_LABEL": "Measure a distance using this button.",
|
|
236
|
+
"MEASURE_DISTANCE_DETAILS_LABEL": "Draw the line segment(s) you'd like to measure on the map and hover any elements to get measure information.",
|
|
237
|
+
"MEASURE_AREA_LABEL": "Measure an area using this button.",
|
|
238
|
+
"MEASURE_AREA_DETAILS_LABEL": "Draw the polygons(s) you'd like to measure on the map and hover any elements to get measure information.",
|
|
239
|
+
"MEASURE_CIRCLE_LABEL": "Measure an isodistance using this button.",
|
|
240
|
+
"MEASURE_CIRCLE_DETAILS_LABEL": "Draw the circle(s) you'd like to measure on the map and hover any elements to get measure information.",
|
|
241
|
+
"MEASURE_FEATURE_LABEL": "Measure a geographical feature using this button.",
|
|
242
|
+
"MEASURE_FEATURE_DETAILS_LABEL": "Select the feature you'd like to measure on the map to get measure information.",
|
|
243
|
+
"CAPTURE_MAP_LABEL": "Capture the view using this button.",
|
|
244
|
+
"CAPTURE_BUTTON_LABEL": "Capture and download the view using this button.",
|
|
245
|
+
"CAPTURE_BACK_LABEL": "Then stop capturing by going back to the actions.",
|
|
246
|
+
"CLEAR_MEASURE_LABEL": "Clear your current measurements using this button.",
|
|
247
|
+
"MEASURE_BACK_LABEL": "Then stop measuring by going back to the actions.",
|
|
248
|
+
"TOGGLE_VR_LABEL": "Switch to Virtual Reality (VR) mode with this button.",
|
|
249
|
+
"TOGGLE_FULLSCREEN_LABEL": "Switch to fullscreen mode with this button.",
|
|
250
|
+
"TOGGLE_CATALOG_LABEL": "Open the catalog with this button."
|
|
251
|
+
},
|
|
252
|
+
"catalog-panel": {
|
|
253
|
+
"CATALOG_LABEL": "The <b>catalog</b> allows to manage data displayed on your map.<br/>The catalogd is divided into 3 different tabs.",
|
|
254
|
+
"USER_LAYERS_LABEL": "Your data space. You can import data files, connect to a map server or create a new dataset.",
|
|
255
|
+
"CATEGORIES_LABEL": "The data are organised into different categories.",
|
|
256
|
+
"USER_VIEWS_LABEL": "Your favorite views.</br>The views allow you to position yourself at defined places while activating some data layers.",
|
|
257
|
+
"USER_VIEWS_CREATE_LABEL": "How to create a view.",
|
|
258
|
+
"USER_VIEWS_FILTER_LABEL": "Filter the views",
|
|
259
|
+
"USER_VIEWS_SORTER_LABEL": "Sort the views",
|
|
260
|
+
"USER_VIEWS_VIEW_LABEL": "Click on the view to update the map.",
|
|
261
|
+
"USER_VIEWS_SET_HOME_LABEL": "Set this view as the default view",
|
|
262
|
+
"USER_VIEWS_REMOVE_LABEL": "Remove the view",
|
|
263
|
+
"CATEGORY_LABEL": "Select a category to list all available data layers.",
|
|
264
|
+
"SHOW_LAYER_LABEL": "Select a layer to show it on the map, it will then be highlighted in the list.",
|
|
265
|
+
"MIN_LEVEL_LABEL": "When a layer is not visible according to your scale it will be disabled, you must zoom in to make it show on the map.",
|
|
266
|
+
"HIDE_LAYER_LABEL": "A new selection will hide it.",
|
|
267
|
+
"METEO_MODEL_LABEL": "Regarding meteorological data you can also switch the prediction model if multiple are available.",
|
|
268
|
+
"METEO_LAYERS_LABEL": "Each layer will then target data of a specific meteorological element from this model.",
|
|
269
|
+
"MANAGE_LAYER_CATEGORIES_LABEL": "You can manage the categories of your own data layers.",
|
|
270
|
+
"MANAGE_LAYER_CATEGORIES_LINK_LABEL": "How to manage the categories",
|
|
271
|
+
"CATEGORIES_LIST_LABEL": "When you have defined some categories they are listed here, otherwise you can directly create your first one.",
|
|
272
|
+
"CATEGORIES_LIST_ACTIONS_LABEL": "Sort your categories by name or update time and seek for a target one.",
|
|
273
|
+
"CATEGORY_ACTIONS_LABEL": "Update or remove a category by using these buttons.",
|
|
274
|
+
"ADD_CATEGORY_LABEL": "Add a new category using this button.",
|
|
275
|
+
"LAYER_CATEGORY_NAME_LABEL": "Enter the name of your new category.",
|
|
276
|
+
"LAYER_CATEGORY_ICON_LABEL": "Enter the icon of your new category.",
|
|
277
|
+
"LAYER_CATEGORY_LAYERS_LABEL": "Select the layers to be part of this category.",
|
|
278
|
+
"LAYER_CATEGORY_EXCLUSIVE_LABEL": "Set if only one layer should be visible at a time in this category.",
|
|
279
|
+
"CREATE_NEW_LAYER_CATEGORY_LABEL": "Confirm the creation of your new category in the catalog."
|
|
280
|
+
},
|
|
281
|
+
"timeline": {
|
|
282
|
+
"TIMELINE_LABEL": "The timeline allows to quickly execute actions related to the time of displayed data.",
|
|
283
|
+
"DATE_LABEL": "Jump to any given date by using this button.",
|
|
284
|
+
"NOW_LABEL": "Stick to real-time using this button.",
|
|
285
|
+
"NEXT_STEP_LABEL": "Go forward in time to the next step as configured in your settings.",
|
|
286
|
+
"PREVIOUS_STEP_LABEL": "Go backward in time to the previous step as configured in your settings.",
|
|
287
|
+
"SETTINGS_LINK_LABEL": "How to update your settings in the main menu",
|
|
288
|
+
"PICK_MINUTES_LABEL": "Change the minutes of current time.",
|
|
289
|
+
"NEXT_HOUR_LABEL": "Go forward in time to the next hour.",
|
|
290
|
+
"PREVIOUS_HOUR_LABEL": "Go backward in time to the previous hour.",
|
|
291
|
+
"PICK_HOUR_LABEL": "Or pick the hours of current time.",
|
|
292
|
+
"NEXT_DAY_LABEL": "Go forward in time to the next day.",
|
|
293
|
+
"PREVIOUS_DAY_LABEL": "Go backward in time to the previous day.",
|
|
294
|
+
"PICK_DAY_LABEL": "Or pick a given day."
|
|
295
|
+
},
|
|
296
|
+
"fab": {
|
|
297
|
+
"PROBE_LABEL": "Probe weather forecast data at a specific location.",
|
|
298
|
+
"PROBE_CURSOR_LABEL": "After selecting this option click on a target location on the map to display related forecast data.",
|
|
299
|
+
"ADD_LAYER_LABEL": "Add a new data layer.",
|
|
300
|
+
"ADD_LAYER_LINK_LABEL": "How to add a new data layer",
|
|
301
|
+
"CREATE_VIEW_LABEL": "Add a new views using this button.",
|
|
302
|
+
"CREATE_VIEW_LINK_LABEL": "How to create a new view"
|
|
303
|
+
},
|
|
304
|
+
"add-layer": {
|
|
305
|
+
"ADD_LAYER_LINK_LABEL": "How to add others types of data layers",
|
|
306
|
+
"FILE_LABEL": "Select your data file in GeoJSON format.",
|
|
307
|
+
"SERVICE_LABEL": "Enter the URL of the GetCapabilities request for the target OGC service.",
|
|
308
|
+
"SERVICE_LAYER_LABEL": "Select the target OGC service layer to connect to.",
|
|
309
|
+
"LAYER_NAME_LABEL": "Enter the name of your new data layer.",
|
|
310
|
+
"LAYER_DESCRIPTION_LABEL": "Then provide a description for your new data layer.",
|
|
311
|
+
"LAYER_FEATURE_ID_LABEL": "Last, choose an identifier to uniquely identify the features of your layer.",
|
|
312
|
+
"LAYER_STYLE_LABEL": "Select the style to be used for your layer.",
|
|
313
|
+
"LAYER_SCHEMA_LABEL": "Select the data schema of your features (JSON schema file).",
|
|
314
|
+
"IMPORT_LAYER_LABEL": "Import existing data as a new data layer.",
|
|
315
|
+
"IMPORT_LAYER_LINK_LABEL": "How to import map data",
|
|
316
|
+
"IMPORT_NEW_LAYER_LABEL": "Confirm the creation of your new layer and the map will be centered on your new layer.",
|
|
317
|
+
"CONNECT_LAYER_LABEL": "Connect your layer to a remote OGC service (WMS, WFS, WMTS, TMS).",
|
|
318
|
+
"CONNECT_LAYER_LINK_LABEL": "How to connect a layer",
|
|
319
|
+
"CONNECT_NEW_LAYER_LABEL": "Confirm the creation of your new layer.",
|
|
320
|
+
"CREATE_LAYER_LABEL": "Create a new blank data layer based on a data schema.",
|
|
321
|
+
"CREATE_LAYER_LINK_LABEL": "How to create a new data layer",
|
|
322
|
+
"CREATE_NEW_LAYER_LABEL": "Confirm the creation of your new layer and start editing the data on the map."
|
|
323
|
+
},
|
|
324
|
+
"create-view": {
|
|
325
|
+
"NAME_FIELD_LABEL": "Saisissez un nom pour votre nouvelle vue",
|
|
326
|
+
"DESCRIPTION_FIELD_LABEL": "Enter the name of your new view.",
|
|
327
|
+
"LAYERS_FIELD_LABEL": "Select whether the currently active layers will be restaured with this view or not.",
|
|
328
|
+
"APPLY_BUTTON_LABEL": "Confirm the creation of your new favorite view."
|
|
329
|
+
},
|
|
330
|
+
"side-nav": {
|
|
331
|
+
"HELP_LABEL": "Access our online help anytime",
|
|
332
|
+
"CONTEXT_HELP_LABEL": "To get contextual help whenever your are lost simply click on the following icon",
|
|
333
|
+
"ABOUT_LABEL": "Display detailed system information and send us bug reports.",
|
|
334
|
+
"BUG_LABEL": "Send us a bug report with a preformatted email containing required information.",
|
|
335
|
+
"SETTINGS_LABEL": "Update general settings of the system on your device.",
|
|
336
|
+
"LOGOUT_LABEL": "Logout in order to close your work session.",
|
|
337
|
+
"SESSION_LABEL": "Otherwise the session will remain active on your device for <b>24H</b>, you will not have to login again in this time frame."
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"KOwsServiceField": {
|
|
341
|
+
"INVALID_URL": "Invalid URL",
|
|
342
|
+
"CANNOT_FETCH_URL": "Failed fetching resource.",
|
|
343
|
+
"WFS_MISSING_GEOJSON_SUPPORT": "The WFS service has no support for GeoJSON, which is required."
|
|
344
|
+
},
|
|
345
|
+
"KOwsLayerField": {
|
|
346
|
+
"UNABLE_TO_DESCRIBE_FEATURE_TYPE": "Failed fetching layer's description.",
|
|
347
|
+
"UNSUPPORTED_LAYER_CRS": "The projection used by this layer is not supported.",
|
|
348
|
+
"UNSUPPORTED_LAYER_FORMAT": "The data format used by this layer is not supported."
|
|
349
|
+
},
|
|
350
|
+
"KLocationSearch": {
|
|
351
|
+
"SEARCH": "@:SEARCH",
|
|
352
|
+
"NO_RESULTS": "@:EMPTY",
|
|
353
|
+
"FILTER": "Filter search services",
|
|
354
|
+
"GEOLOCATE": "Locate me",
|
|
355
|
+
"EDIT": "Edit on a map"
|
|
356
|
+
},
|
|
357
|
+
"KLocationField": {
|
|
358
|
+
"SEARCH": "@:SEARCH",
|
|
359
|
+
"NO_RESULTS": "@:EMPTY",
|
|
360
|
+
"FILTER": "Filter search services",
|
|
361
|
+
"GEOLOCATE": "Locate me",
|
|
362
|
+
"DRAW": "Draw on a map"
|
|
363
|
+
},
|
|
364
|
+
"KLocationMap": {
|
|
365
|
+
"RECENTER_MAP": "Recenter map",
|
|
366
|
+
"LOCATE_ME": "Locate me",
|
|
367
|
+
"DRAW_POINT": "Designate a point",
|
|
368
|
+
"DRAW_LINE": "Draw a path",
|
|
369
|
+
"DRAW_RECTANGLE": "Draw a rectangle",
|
|
370
|
+
"DRAW_POLYGON": "Draw a polygon",
|
|
371
|
+
"ZONE": "Zone",
|
|
372
|
+
"PATH": "Path"
|
|
373
|
+
},
|
|
374
|
+
"KLocationCardSection": {
|
|
375
|
+
"TITLE": "Location",
|
|
376
|
+
"NO_LOCATION": "Undefined location"
|
|
377
|
+
},
|
|
378
|
+
"KTimezoneField": {
|
|
379
|
+
"TIMEZONE_MAP_TOOLTIP": "Select timezone on a map",
|
|
380
|
+
"TIMEZONE_MAP_TITLE": "Select the target timezone"
|
|
381
|
+
},
|
|
382
|
+
"KPositionIndicator": {
|
|
383
|
+
"PLACEHOLDER": "Navigate the see the coordinates",
|
|
384
|
+
"COPY": "Copy the coordinates",
|
|
385
|
+
"CLEAR": "Clear",
|
|
386
|
+
"POSITION_COPIED":"Position copied to clipboard",
|
|
387
|
+
"CANNOT_COPY_POSITION": "Unable to copy the position to clipboard. Your browser does not support this functionality"
|
|
388
|
+
},
|
|
389
|
+
"KTimeSeries": {
|
|
390
|
+
"LABEL": "Time Series",
|
|
391
|
+
"RESTORE_TIME_RANGE": "Restore previous view",
|
|
392
|
+
"NO_DATA_AVAILABLE": "No data available",
|
|
393
|
+
"CENTER_ON": "Center the view on the probed location",
|
|
394
|
+
"SPAN": "Timeseries span",
|
|
395
|
+
"RUN": "Forecast run",
|
|
396
|
+
"TIME_LABEL": "Time",
|
|
397
|
+
"EXPORT_SERIES": "Export data",
|
|
398
|
+
"SERIES_EXPORT_FILE": "Series"
|
|
399
|
+
},
|
|
400
|
+
"KStackableTimeSeries": {
|
|
401
|
+
"NO_DATA_AVAILABLE": "No data available"
|
|
402
|
+
},
|
|
403
|
+
"KViewsPanel": {
|
|
404
|
+
"SORT_VIEWS": "Sort view",
|
|
405
|
+
"REMOVE_VIEW": "@:REMOVE",
|
|
406
|
+
"SET_HOME_VIEW": "Set as default view"
|
|
407
|
+
},
|
|
408
|
+
"KFeaturesFilter": {
|
|
409
|
+
"TITLE": "Data filter for layer",
|
|
410
|
+
"SELECT_PROPERTY_LABEL": "Select a target property to start",
|
|
411
|
+
"ADD_FILTER": "Select a target property to add a filter on",
|
|
412
|
+
"REMOVE_FILTER": "Remove filter for this value",
|
|
413
|
+
"$in": "value in",
|
|
414
|
+
"$nin": "value not in",
|
|
415
|
+
"$eq": "value equals to",
|
|
416
|
+
"$neq": "value different from",
|
|
417
|
+
"$gt": "value greater than",
|
|
418
|
+
"$lt": "value lower than"
|
|
419
|
+
},
|
|
420
|
+
"KFeaturesTable": {
|
|
421
|
+
"TITLE": "Data for layer"
|
|
422
|
+
},
|
|
423
|
+
"KFeaturesChart": {
|
|
424
|
+
"SELECT_PROPERTY_LABEL": "Select a target property to start",
|
|
425
|
+
"TITLE": "Graphs for layer",
|
|
426
|
+
"PROPERTY_LABEL": "Target property",
|
|
427
|
+
"CHART_LABEL": "Chart type",
|
|
428
|
+
"PAGINATION_LABEL": "Number of values",
|
|
429
|
+
"CHART_LABEL_PIE": "Pie",
|
|
430
|
+
"CHART_LABEL_POLARAREA": "Polar",
|
|
431
|
+
"CHART_LABEL_RADAR": "Radar",
|
|
432
|
+
"CHART_LABEL_BAR": "Bar",
|
|
433
|
+
"NULL_VALUE_LABEL": "None",
|
|
434
|
+
"ALL_VALUES": "All",
|
|
435
|
+
"RENDER_LABEL": "Display type",
|
|
436
|
+
"VALUE_LABEL": "Count",
|
|
437
|
+
"PERCENTAGE_LABEL": "Percentage",
|
|
438
|
+
"CHARTING_LABEL": "Please wait while computing chart",
|
|
439
|
+
"CHART_VALUE_LABEL": "Value",
|
|
440
|
+
"CHART_COUNT_LABEL": "Count",
|
|
441
|
+
"CHART_SETTINGS_LABEL": "Graph settings",
|
|
442
|
+
"CHART_EXPORT_LABEL": "Export data",
|
|
443
|
+
"CHART_EXPORT_FILE": "Chart-{layer}.csv"
|
|
444
|
+
},
|
|
445
|
+
"KLayerStyleForm": {
|
|
446
|
+
"BASE": "Base properties",
|
|
447
|
+
"DEFAULT_VISIBILITY": "Visible by default",
|
|
448
|
+
"MIN_ZOOM": "Visible from level",
|
|
449
|
+
"MAX_ZOOM": "Visible until level",
|
|
450
|
+
"SELECTABLE": "Selectable",
|
|
451
|
+
"LAYER_OPACITY": "Transparent layer",
|
|
452
|
+
"OPACITY": "Opacity",
|
|
453
|
+
"POINTS": "Markers",
|
|
454
|
+
"LINES": "Lines",
|
|
455
|
+
"POLYGONS": "Polygons",
|
|
456
|
+
"DEFAULT_POINT_STYLE": "Default icon",
|
|
457
|
+
"POINT_CLUSTERING": "Cluster icons until level",
|
|
458
|
+
"ADD_POINT_STYLE": "Select a target property to add an icon for",
|
|
459
|
+
"REMOVE_POINT_STYLE": "Remove icon for this value",
|
|
460
|
+
"DEFAULT_LINE_STYLE": "Default line style",
|
|
461
|
+
"LINE_WIDTH": "Width ",
|
|
462
|
+
"LINE_OPACITY": "Opacity ",
|
|
463
|
+
"ADD_LINE_STYLE": "Select a target property to add a style for",
|
|
464
|
+
"REMOVE_LINE_STYLE": "Remove style for this value",
|
|
465
|
+
"DEFAULT_POLYGON_LINE_STYLE": "Default boundary style",
|
|
466
|
+
"DEFAULT_POLYGON_FILL_STYLE": "Default fill style",
|
|
467
|
+
"POLYGON_LINE_WIDTH": "Width ",
|
|
468
|
+
"POLYGON_LINE_OPACITY": "Opacity ",
|
|
469
|
+
"POLYGON_FILL_OPACITY": "Opacity ",
|
|
470
|
+
"ADD_POLYGON_STYLE": "Select a target property to add a style for",
|
|
471
|
+
"REMOVE_POLYGON_STYLE": "Remove style for this value",
|
|
472
|
+
"POPUP": "Popup",
|
|
473
|
+
"ADD_POPUP": "Select target properties to use as popup",
|
|
474
|
+
"TOOLTIP": "Tooltip",
|
|
475
|
+
"ADD_TOOLTIP": "Select a target property to use as tooltip",
|
|
476
|
+
"INFOBOX": "Information box",
|
|
477
|
+
"ADD_INFOBOX": "Select target properties to use as information box",
|
|
478
|
+
"IN": "value in",
|
|
479
|
+
"NOT_IN": "not in",
|
|
480
|
+
"EQUAL": "equals to",
|
|
481
|
+
"NOT_EQUAL": "different from",
|
|
482
|
+
"GREATER_THAN": "greater than",
|
|
483
|
+
"LOWER_THAN": "lower than"
|
|
484
|
+
},
|
|
485
|
+
"KLayerStyleEditor": {
|
|
486
|
+
"EDIT_LAYER_STYLE_TITLE": "Edit layer style"
|
|
487
|
+
},
|
|
488
|
+
"KLayersSelector": {
|
|
489
|
+
"NO_LAYER_AVAILABLE": "No layer available",
|
|
490
|
+
"LAYER_DISABLED": "Zoom in to visualise this layer"
|
|
491
|
+
},
|
|
492
|
+
"KWeatherLayersSelector": {
|
|
493
|
+
"FORECASTS_LABEL": "Forecasts",
|
|
494
|
+
"ARCHIVES_LABEL": "Archives",
|
|
495
|
+
"NO_MODEL_AVAILABLE": "No model available"
|
|
496
|
+
},
|
|
497
|
+
"KTimeline": {
|
|
498
|
+
"PREVIOUS_DAY": "Previous day",
|
|
499
|
+
"NEXT_DAY": "Next day",
|
|
500
|
+
"PREVIOUS_HOUR": "Previous hour",
|
|
501
|
+
"NEXT_HOUR": "Next hour",
|
|
502
|
+
"PREVIOUS_STEP": "Previsous step",
|
|
503
|
+
"NEXT_STEP": "Next step",
|
|
504
|
+
"SET_NOW": "Real time",
|
|
505
|
+
"SET_DATE": "Go on a date"
|
|
506
|
+
},
|
|
507
|
+
"KInformationBox": {
|
|
508
|
+
"LABEL": "Information box",
|
|
509
|
+
"NO_FEATURE_PROPERTIES": "No information available",
|
|
510
|
+
"CENTER_ON": "Center the view on the object",
|
|
511
|
+
"COPY_PROPERTIES": "Copy the values to the clipboard",
|
|
512
|
+
"PROPERTIES_COPIED": "Values copied to clipboard",
|
|
513
|
+
"CANNOT_COPY_PROPERTIES": "Unable to copy the values to clipboard. Your browser does not support this functionality",
|
|
514
|
+
"EXPORT_FEATURE": "Export the object",
|
|
515
|
+
"FEATURE_EXPORTED": "Object exported to file {file}",
|
|
516
|
+
"CANNOT_EXPORT_FEATURE": "Unable to export the object. Your browser does not support this functionality"
|
|
517
|
+
},
|
|
518
|
+
"KMapillaryViewer": {
|
|
519
|
+
"LABEL": "Mapillary Viewer",
|
|
520
|
+
"CENTER_ON": "Center the view on the Mapillary marker",
|
|
521
|
+
"MOVE_CLOSE_TO": "Move to the closest image",
|
|
522
|
+
"NO_IMAGE_FOUND_CLOSE_TO": "No image found close to your location"
|
|
523
|
+
},
|
|
524
|
+
"KLayerCategories": {
|
|
525
|
+
"LAYER_CATEGORIES_LABEL": "Manage my categories",
|
|
526
|
+
"ADD_TITLE": "Add a new layer category",
|
|
527
|
+
"UPDATE_TITLE": "Update a layer category",
|
|
528
|
+
"TITLE": "Manage layer categories",
|
|
529
|
+
"SORT": "Sort categories",
|
|
530
|
+
"CREATE_CATEGORY": "Create a new category",
|
|
531
|
+
"BACK_BUTTON": "Back",
|
|
532
|
+
"ADD_BUTTON": "Add",
|
|
533
|
+
"EDIT_BUTTON": "Update",
|
|
534
|
+
"CATEGORY_LIST": "Back to list",
|
|
535
|
+
"EDIT_CATEGORY": "@:EDIT",
|
|
536
|
+
"REMOVE_CATEGORY": "@:REMOVE"
|
|
537
|
+
},
|
|
538
|
+
"KAddLayer": {
|
|
539
|
+
"TITLE": "Add a new layer",
|
|
540
|
+
"NAME_FIELD_LABEL": "Enter the name of the new layer",
|
|
541
|
+
"DESCRIPTION_FIELD_LABEL": "Enter the description of the new layer",
|
|
542
|
+
"CATEGORY_FIELD_LABEL": "Select or enter a category",
|
|
543
|
+
"FEATURE_ID_FIELD_LABEL": "Enter a unique feature ID"
|
|
544
|
+
},
|
|
545
|
+
"KImportLayer": {
|
|
546
|
+
"FILE_FIELD_LABEL": "Select the file to import",
|
|
547
|
+
"NAME_FIELD_LABEL": "@:KAddLayer.NAME_FIELD_LABEL",
|
|
548
|
+
"DESCRIPTION_FIELD_LABEL": "@:KAddLayer.DESCRIPTION_FIELD_LABEL",
|
|
549
|
+
"FEATURE_ID_FIELD_LABEL": "@:KAddLayer.FEATURE_ID_FIELD_LABEL",
|
|
550
|
+
"CATEGORY_FIELD_LABEL": "@:KAddLayer.CATEGORY_FIELD_LABEL",
|
|
551
|
+
"IMPORT_BUTTON": "Import"
|
|
552
|
+
},
|
|
553
|
+
"KConnectLayer": {
|
|
554
|
+
"SERVICE_FIELD_LABEL": "Select or enter a query to get the capabilities of the remote service",
|
|
555
|
+
"LAYER_FIELD_LABEL": "Select the layer to access to",
|
|
556
|
+
"NAME_FIELD_LABEL": "@:KAddLayer.NAME_FIELD_LABEL",
|
|
557
|
+
"DESCRIPTION_FIELD_LABEL": "@:KAddLayer.DESCRIPTION_FIELD_LABEL",
|
|
558
|
+
"STYLE_FIELD_LABEL": "Select the style of the new layer",
|
|
559
|
+
"FEATURE_ID_FIELD_LABEL": "@:KAddLayer.FEATURE_ID_FIELD_LABEL",
|
|
560
|
+
"CATEGORY_FIELD_LABEL": "@:KAddLayer.CATEGORY_FIELD_LABEL",
|
|
561
|
+
"CONNECT_BUTTON": "Connect"
|
|
562
|
+
},
|
|
563
|
+
"KCreateLayer": {
|
|
564
|
+
"NAME_FIELD_LABEL": "@:KAddLayer.NAME_FIELD_LABEL",
|
|
565
|
+
"DESCRIPTION_FIELD_LABEL": "@:KAddLayer.DESCRIPTION_FIELD_LABEL",
|
|
566
|
+
"CATALOG_SCHEMA_FIELD_LABEL": "@:schemas.CATALOG_SCHEMA_FIELD_LABEL",
|
|
567
|
+
"FEATURE_ID_FIELD_LABEL": "@:KAddLayer.FEATURE_ID_FIELD_LABEL",
|
|
568
|
+
"CATEGORY_FIELD_LABEL": "@:KAddLayer.CATEGORY_FIELD_LABEL",
|
|
569
|
+
"CREATE_BUTTON": "Create"
|
|
570
|
+
},
|
|
571
|
+
"KCreateView": {
|
|
572
|
+
"MODAL_TITLE": "Create a new view ?",
|
|
573
|
+
"NAME_FIELD_LABEL": "Enter the name of this view",
|
|
574
|
+
"DESCRIPTION_FIELD_LABEL": "Enter the description of this view",
|
|
575
|
+
"LAYERS_FIELD_LABEL": "Save the active layers"
|
|
576
|
+
},
|
|
577
|
+
"KLayerEditionToolbar": {
|
|
578
|
+
"ADD_POLYGON_FEATURES": "Add polygon features",
|
|
579
|
+
"ADD_RECTANGLE_FEATURES": "Add rectangle features",
|
|
580
|
+
"ADD_LINE_FEATURES": "Add linear features",
|
|
581
|
+
"ADD_POINT_FEATURES": "Add point features",
|
|
582
|
+
"EDIT_GEOMETRY": "Edit feature geometry",
|
|
583
|
+
"EDIT_PROPERTIES": "Edit feature properties",
|
|
584
|
+
"DRAG_FEATURES": "Move features",
|
|
585
|
+
"ROTATE_FEATURES": "Rotate features",
|
|
586
|
+
"REMOVE_FEATURES": "Remove features"
|
|
587
|
+
},
|
|
588
|
+
"KCaptureToolbar": {
|
|
589
|
+
"SD_LABEL": "Standard Definition",
|
|
590
|
+
"SD_DESCRIPTION": "4:3, 640 x 480",
|
|
591
|
+
"HD_LABEL": "High Definition",
|
|
592
|
+
"HD_DESCRIPTION": "16:9, 1280 x 720",
|
|
593
|
+
"FHD_LABEL": "Full HD",
|
|
594
|
+
"FHD_DESCRIPTION": "16:9, 1920 x 1080",
|
|
595
|
+
"QHD_LABEL": "Quad HD",
|
|
596
|
+
"QHD_DESCRIPTION": "16:9, 2560 x 1440",
|
|
597
|
+
"2K_LABEL": "2K",
|
|
598
|
+
"2K_DESCRIPTION": "1:1.77, 2048 x 1080",
|
|
599
|
+
"4K_LABEL": "4K or Ultra HD",
|
|
600
|
+
"4K_DESCRIPTION": "1:1.9, 3840 x 2160",
|
|
601
|
+
"8K_LABEL": "8K or Full Ultra HD",
|
|
602
|
+
"8K_DESCRIPTION": "16∶9, 7680 x 4320",
|
|
603
|
+
"CAPTURE_ACTION": "Capture view",
|
|
604
|
+
"CAPTURING_VIEW": "Waiting for capturing view"
|
|
605
|
+
},
|
|
606
|
+
"KMeasureTool": {
|
|
607
|
+
"TOOL_BUTTON_LABEL": "Display the measure tool",
|
|
608
|
+
"CLEAR": "Clear all measurements",
|
|
609
|
+
"MEASURE_DISTANCE": "Measure a distance",
|
|
610
|
+
"MEASURE_AREA": "Measure an area",
|
|
611
|
+
"MEASURE_FEATURE": "Measure a feature",
|
|
612
|
+
"MEASURE_CIRCLE": "Measure an isodistance",
|
|
613
|
+
"DISPLAY_MEASURE_VALUE": "Display measure values",
|
|
614
|
+
"CLICK_TO_CHANGE_UNIT": "Click to change unit"
|
|
615
|
+
},
|
|
616
|
+
"KElevationProfile": {
|
|
617
|
+
"LABEL": "Elevation profile",
|
|
618
|
+
"NO_DATA_AVAILABLE": "No profile available",
|
|
619
|
+
"INVALID_GEOMETRY": "Selected object geometry is invalid",
|
|
620
|
+
"COMPUTING_PROFILE": "Profile computation in progress",
|
|
621
|
+
"CENTER_ON": "Center the view on the object",
|
|
622
|
+
"COPY_PROFILE": "Copy the profile to the clipboard",
|
|
623
|
+
"PROFILE_COPIED": "Profile copied to clipboard",
|
|
624
|
+
"CANNOT_COPY_PROFILE": "Unable to copy the profile to clipboard. Your browser does not support this functionality",
|
|
625
|
+
"EXPORT_PROFILE": "Export the profile",
|
|
626
|
+
"PROFILE_EXPORTED": "Profile exported to file {file}",
|
|
627
|
+
"CANNOT_EXPORT_PROFILE": "Unable to export the profile. Your browser does not support this functionality",
|
|
628
|
+
"CURVILINEAR_AXIS_LEGEND": "Curvilinear abscissa ({unit})",
|
|
629
|
+
"HEIGHT_AXIS_LEGEND": "Height ({unit})",
|
|
630
|
+
"TERRAIN_CHART_LEGEND": "Terrain elevation",
|
|
631
|
+
"PROFILE_CHART_LEGEND": "Profile elevation"
|
|
632
|
+
},
|
|
633
|
+
"KLegend": {
|
|
634
|
+
"LABEL": "Legend"
|
|
635
|
+
},
|
|
636
|
+
"KCompass": {
|
|
637
|
+
"NORTH": "N",
|
|
638
|
+
"EAST": "E",
|
|
639
|
+
"SOUTH": "S",
|
|
640
|
+
"WEST": "W"
|
|
641
|
+
},
|
|
642
|
+
"KDirectionField": {
|
|
643
|
+
"COMPASS": "Compass"
|
|
644
|
+
}
|
|
645
|
+
}
|