@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,840 @@
|
|
|
1
|
+
{
|
|
2
|
+
"OOPS": "Oops !",
|
|
3
|
+
"OK": "Ok",
|
|
4
|
+
"YES": "Yes",
|
|
5
|
+
"NO": "No",
|
|
6
|
+
"CANCEL": "Cancel",
|
|
7
|
+
"UPDATE": "Update",
|
|
8
|
+
"CREATE": "Create",
|
|
9
|
+
"DELETE": "Delete",
|
|
10
|
+
"RESET": "Reset",
|
|
11
|
+
"CLOSE": "Close",
|
|
12
|
+
"SEARCH": "Search",
|
|
13
|
+
"DONE": "Done",
|
|
14
|
+
"APPLY": "Apply",
|
|
15
|
+
"RETRY": "Retry",
|
|
16
|
+
"NO_ITEM": "No elements found",
|
|
17
|
+
"NIL": "Undefined",
|
|
18
|
+
"MEMBERS": "Members",
|
|
19
|
+
"TAGS": "Tags",
|
|
20
|
+
"GROUPS": "Groups",
|
|
21
|
+
"EDIT": "Edit",
|
|
22
|
+
"REMOVE": "Remove",
|
|
23
|
+
"OWNER": "Owner",
|
|
24
|
+
"MANAGER": "Manager",
|
|
25
|
+
"MEMBER": "Member",
|
|
26
|
+
"UNAMED": "Unamed",
|
|
27
|
+
"HELP": "Help",
|
|
28
|
+
"NEED_HELP": "Help needed ?",
|
|
29
|
+
"CONTEXTUAL_HELP": "Contextual help",
|
|
30
|
+
"ABOUT": "About",
|
|
31
|
+
"BACK": "Return",
|
|
32
|
+
"SETTINGS": "My settings",
|
|
33
|
+
"errors": {
|
|
34
|
+
"400": "Operation cannot be performed: bad parameters",
|
|
35
|
+
"401": "Operation cannot be performed: authentication required",
|
|
36
|
+
"402": "Operation cannot be performed: payment error",
|
|
37
|
+
"403": "Operation cannot be performed: not allowed",
|
|
38
|
+
"404": "Operation cannot be performed: not found",
|
|
39
|
+
"405": "Operation cannot be performed: not allowed",
|
|
40
|
+
"406": "Operation cannot be performed: not acceptable",
|
|
41
|
+
"408": "Operation cannot be performed: timeout",
|
|
42
|
+
"409": "Operation cannot be performed: conflict",
|
|
43
|
+
"411": "Operation cannot be performed: length required",
|
|
44
|
+
"422": "Operation cannot be performed: unprocessable",
|
|
45
|
+
"429": "Operation cannot be performed: too many requests",
|
|
46
|
+
"498": "This system or browser does not support web push notifications",
|
|
47
|
+
"499": "Please change your application or browser settings to allow notifications",
|
|
48
|
+
"500": "Operation cannot be performed: an error occured",
|
|
49
|
+
"501": "Operation cannot be performed: not implemented",
|
|
50
|
+
"502": "Operation cannot be performed: service unavailable",
|
|
51
|
+
"503": "Operation cannot be performed: service unavailable",
|
|
52
|
+
"RETRY": "Please try again later or modify your parameters",
|
|
53
|
+
"RATE_LIMITING": "Too many API requests in a given amount of time (rate limiting)",
|
|
54
|
+
"RATE_LIMITING_AUTHENTICATION": "Too many authentication requests in a given amount of time (rate limiting)",
|
|
55
|
+
"RATE_LIMITING_CONCURRENCY": "Too many concurrent connections (rate limiting)",
|
|
56
|
+
"COUNT_LIMITING": "Too many resources used (count limiting)",
|
|
57
|
+
"WEAK_PASSWORD": "The provided password does not comply our password policy",
|
|
58
|
+
"WEAK_PASSWORD_MIN": "Minimum length of {minLength} characters",
|
|
59
|
+
"WEAK_PASSWORD_MAX": "Maximum length of {maxLength} characters",
|
|
60
|
+
"WEAK_PASSWORD_LOWERCASE": "A least one lower case letter",
|
|
61
|
+
"WEAK_PASSWORD_UPPERCASE": "A least one upper case letter",
|
|
62
|
+
"WEAK_PASSWORD_DIGITS": "A least one digit",
|
|
63
|
+
"WEAK_PASSWORD_SYMBOLS": "A least one special symbol like :;?!+-.,^@",
|
|
64
|
+
"WEAK_PASSWORD_ONEOF": "Not known as one of the most common passwords",
|
|
65
|
+
"WEAK_PASSWORD_PREVIOUS": "Not one of your {history} last passwords",
|
|
66
|
+
"CANNOT_PROCESS_DOWNLOAD_DATA": "Invalid or incomplete data file",
|
|
67
|
+
"CANNOT_REMOVE_USER": "Your are not allowed to remove this accound.<br>Please remove the organisations owned by <b>{user}</b> first.",
|
|
68
|
+
"CANNOT_REMOVE_ORGANISATION": "You are not allowed to remove this organisation.<br>Please remove all the groups first.",
|
|
69
|
+
"CANNOT_REMOVE_LAST_OWNER": "You are not allowed to remove the last owner of <b>{resource}</b>",
|
|
70
|
+
"OAUTH2_PROVIDER": "You cannot update your account because it is managed by {provider}, in order to switch to a local account reset your password first",
|
|
71
|
+
"EMAIL_ALREADY_TAKEN": "A user with this email address seems to be already registered",
|
|
72
|
+
"OBJECT_ID_ALREADY_TAKEN": "An item with this identifier seems to already exist. Please try again with another value.",
|
|
73
|
+
"DUPLICATED_FILE": "The file {file} is already added",
|
|
74
|
+
"UNSUPPORTED_FILE_FORMAT": "The {file} file format is not supported",
|
|
75
|
+
"CANNOT_READ_FILE": "Unable to read the file {file}",
|
|
76
|
+
"INVALID_JSON_FILE": "{file} is not a valid JSON file",
|
|
77
|
+
"INVALID_CSV_FILE": "{file} is not a valid CSV file",
|
|
78
|
+
"NETWORK_ERROR": "Network error occured"
|
|
79
|
+
},
|
|
80
|
+
"units": {
|
|
81
|
+
"METER_SYMBOL": "m",
|
|
82
|
+
"FEET_SYMBOL": "ft",
|
|
83
|
+
"MILE_SYMBOL": "mi",
|
|
84
|
+
"NAUTICAL_MILE_SYMBOL": "NM",
|
|
85
|
+
"SQUARED_METER_SYMBOL": "m²",
|
|
86
|
+
"SQUARED_KILOMETER_SYMBOL": "km²",
|
|
87
|
+
"ACRE_SYMBOL": "a",
|
|
88
|
+
"HECTARE_SYMBOL": "ha",
|
|
89
|
+
"METER_PER_SECOND_SYMBOL": "m/s",
|
|
90
|
+
"KILOMETER_PER_HOUR_SYMBOL": "km/h",
|
|
91
|
+
"MILES_PER_HOUR_SYMBOL": "mph",
|
|
92
|
+
"KNOT_SYMBOL": "kt",
|
|
93
|
+
"CELSIUS_SYMBOL": "°C",
|
|
94
|
+
"FAHRENHEIT_SYMBOL": "°F",
|
|
95
|
+
"KELVIN_SYMBOL": "K",
|
|
96
|
+
"DEGREE_SYMBOL": "°",
|
|
97
|
+
"RADIAN_SYMBOL": "rad",
|
|
98
|
+
"METER_LABEL": "Meters",
|
|
99
|
+
"FEET_LABEL": "Feet",
|
|
100
|
+
"MILE_LABEL": "Miles",
|
|
101
|
+
"NAUTICAL_MILE_LABEL": "Nautical miles",
|
|
102
|
+
"SQUARED_METER_LABEL": "Squared meters",
|
|
103
|
+
"SQUARED_KILOMETER_LABEL": "Squared kilometers",
|
|
104
|
+
"ACRE_LABEL": "Acres",
|
|
105
|
+
"HECTARE_LABEL": "Hectares",
|
|
106
|
+
"METER_PER_SECOND_LABEL": "Meters per second",
|
|
107
|
+
"KILOMETER_PER_HOUR_LABEL": "Kilometers per hour",
|
|
108
|
+
"MILES_PER_HOUR_LABEL": "Miles per hour",
|
|
109
|
+
"KNOT_LABEL": "Knots",
|
|
110
|
+
"CELSIUS_LABEL": "Celcius degrees",
|
|
111
|
+
"FAHRENHEIT_LABEL": "Fahrenhiet degrees",
|
|
112
|
+
"KELVIN_LABEL": "Kelvins",
|
|
113
|
+
"DEGREE_LABEL": "Degrees",
|
|
114
|
+
"RADIAN_LABEL": "Radians"
|
|
115
|
+
},
|
|
116
|
+
"mixins": {
|
|
117
|
+
"baseItem": {
|
|
118
|
+
"REMOVE_ITEM_TITLE": "Are you sure you want to delete <b>{name}</b> ?",
|
|
119
|
+
"REMOVE_ITEM_MESSAGE": "Please enter the name to confirm the deletion",
|
|
120
|
+
"ITEM_EXPORTED": "Exporting the content of {name} within {file}",
|
|
121
|
+
"CANNOT_EXPORT_ITEM": "Cannot export {name}. Is your browser support such a feature ?"
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"composables": {
|
|
125
|
+
"ANONYMOUS": "Anonymous",
|
|
126
|
+
"VERSION_MISMATCH": "Application version mismatch, please install the latest available version or check your end point",
|
|
127
|
+
"session": {
|
|
128
|
+
"DISCONNECT": "The server connection has been lost, please wait until reconnection...",
|
|
129
|
+
"RECONNECT": "We are trying to reconnect...",
|
|
130
|
+
"REFUSED": "Your connection have been refused by the server, you have been disconnected...",
|
|
131
|
+
"RETRY": "Retry",
|
|
132
|
+
"ALERT": "Alert"
|
|
133
|
+
},
|
|
134
|
+
"pwa": {
|
|
135
|
+
"INSTALL_TITLE": "Install the application ?",
|
|
136
|
+
"INSTALL_MESSAGE": "We recommend that you install the application to take full advantage of all the features",
|
|
137
|
+
"IOS_INSTALL_MESSAGE": "We recommend that you install the application to take full advantage of all the features.<br>From Safari, click or tap <i class=\"material-icons\">ios_share</i> and then on <b>Add to home screen</b>",
|
|
138
|
+
"FIREFOX_DESKTOP_INSTALL_MESSAGE": "We recommend that you install the application to take full advantage of all the features. To install it, use <a href='https://addons.mozilla.org/fr/firefox/addon/pwas-for-firefox/' target='_blank'>Progressive Web Apps for Firefox</a> extension.",
|
|
139
|
+
"INSTALL": "Install",
|
|
140
|
+
"IGNORE": "Ignore",
|
|
141
|
+
"UPDATE_TITLE": "Updates available",
|
|
142
|
+
"UPDATE_MESSAGE": "To find out more consult the <a href=\"{changelog}\" target=\"_\">release note</a>",
|
|
143
|
+
"UPDATE": "Update"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"schemas": {
|
|
147
|
+
"OBJECT_NAME": "{name}",
|
|
148
|
+
"AVATAR_FIELD_LABEL": "Select an avatar",
|
|
149
|
+
"NAME_FIELD_LABEL": "Enter your name",
|
|
150
|
+
"COLOR_FIELD_LABEL": "Pick a color",
|
|
151
|
+
"ORGANISATIONS_CREATE_TITLE": "Create a new organisation ?",
|
|
152
|
+
"ORGANISATIONS_NAME_FIELD_LABEL": "Enter the name of this organisation",
|
|
153
|
+
"ORGANISATIONS_DESCRIPTION_FIELD_LABEL": "Enter a description name of this organisation",
|
|
154
|
+
"MEMBERS_TAGS_FIELD_LABEL": "Add somes tags to qualify this member",
|
|
155
|
+
"TAG_NAME": "{ object.value }",
|
|
156
|
+
"TAGS_CREATE_TITLE": "Create a new tag ?",
|
|
157
|
+
"TAGS_NAME_FIELD_LABEL": "Enter the name of this tag",
|
|
158
|
+
"TAGS_ICON_FIELD_LABEL": "Set the icon of this tag",
|
|
159
|
+
"TAGS_DESCRIPTION_FIELD_LABEL": "Enter a description of this tag",
|
|
160
|
+
"GROUPS_CREATE_TITLE": "Create a new group ?",
|
|
161
|
+
"GROUPS_NAME_FIELD_LABEL": "Enter the name of this group",
|
|
162
|
+
"GROUPS_DESCRIPTION_FIELD_LABEL": "Enter a description for this group",
|
|
163
|
+
"UPDATE_SETTINGS_TITLE": "Your settings",
|
|
164
|
+
"TIME_FORMAT_SETTINGS": "Time/Date format",
|
|
165
|
+
"TIME_FORMAT_SHORT_TIME_FIELD_LABEL": "Short time format",
|
|
166
|
+
"TIME_FORMAT_SHORT_TIME_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>🛈</a>",
|
|
167
|
+
"TIME_FORMAT_LONG_TIME_FIELD_LABEL": "Long time format",
|
|
168
|
+
"TIME_FORMAT_LONG_TIME_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>🛈</a>",
|
|
169
|
+
"TIME_FORMAT_SHORT_DATE_FIELD_LABEL": "Short date format",
|
|
170
|
+
"TIME_FORMAT_SHORT_DATE_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>🛈</a>",
|
|
171
|
+
"TIME_FORMAT_LONG_DATE_FIELD_LABEL": "Long date format",
|
|
172
|
+
"TIME_FORMAT_LONG_DATE_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>🛈</a>",
|
|
173
|
+
"TIME_FORMAT_SHORT_YEAR_FIELD_LABEL": "Short year format",
|
|
174
|
+
"TIME_FORMAT_SHORT_YEAR_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>🛈</a>",
|
|
175
|
+
"TIME_FORMAT_LONG_YEAR_FIELD_LABEL": "Long year format",
|
|
176
|
+
"TIME_FORMAT_LONG_YEAR_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>🛈</a>",
|
|
177
|
+
"TIME_FORMAT_TIMEZONE_FIELD_LABEL": "Target timezone to use",
|
|
178
|
+
"UNITS_SETTINGS": "Units settings",
|
|
179
|
+
"LENGTH_FIELD_LABEL": "Default length unit",
|
|
180
|
+
"ALTITUDE_FIELD_LABEL": "Default altitude unit",
|
|
181
|
+
"AREA_FIELD_LABEL": "Default area unit",
|
|
182
|
+
"VELOCITY_FIELD_LABEL": "Default velocity unit",
|
|
183
|
+
"TEMPERATURE_FIELD_LABEL": "Default temperature unit",
|
|
184
|
+
"ANGLE_FIELD_LABEL": "Default angle unit",
|
|
185
|
+
"NOTATION_SETTINGS": "Number notation settings",
|
|
186
|
+
"NOTATION_FIELD_LABEL": "Default number notation",
|
|
187
|
+
"AUTO_NOTATION_FIELD_LABEL": "Select the best-suited number notation",
|
|
188
|
+
"FIXED_NOTATION_FIELD_LABEL": "Fixed precision number notation",
|
|
189
|
+
"EXPONENTIAL_NOTATION_FIELD_LABEL": "Exponential number notation",
|
|
190
|
+
"PRECISION_FIELD_LABEL": "Default number of decimal or significant digits"
|
|
191
|
+
},
|
|
192
|
+
"tours": {
|
|
193
|
+
"APP_BAR_OVERFLOW_MENU_LABEL": "When not visible, you can find it using the popup menu.",
|
|
194
|
+
"APP_BAR_ACTIONS_LABEL": "When not visible, you can find it in the actions bar.",
|
|
195
|
+
"CARD_OVERFLOW_MENU_LABEL": "Open the popup menu to see more actions.",
|
|
196
|
+
"REMOVE_CONFIRMATION_LABEL": "A confirmation will be required before final removal.",
|
|
197
|
+
"login": {
|
|
198
|
+
"LOCAL_LABEL": "You can login using your <b>personal identifiers</b>.",
|
|
199
|
+
"EMAIL_LABEL": "Enter your email address first.",
|
|
200
|
+
"PASSWORD_LABEL": "Then enter your password.",
|
|
201
|
+
"PASSWORD_VISIBILITY_LABEL": "Display you password clearly if there is any doubt about.",
|
|
202
|
+
"LOGIN_LABEL": "Now, finish by login.",
|
|
203
|
+
"LOST_PASSWORD_LINK_LABEL": "If you have lost your password launch the <b>recovery procedure</b>",
|
|
204
|
+
"REGISTER_LINK_LABEL": "If you don't yet have an account launch the <b>registration procedure</b>"
|
|
205
|
+
},
|
|
206
|
+
"reset-password": {
|
|
207
|
+
"RESET_PROCEDURE_LABEL": "If you have lost your password we will send you an email back containing a code to <b>define a new one</b>.",
|
|
208
|
+
"EMAIL_LABEL": "First, enter the email address you have used to register or to get invited.",
|
|
209
|
+
"RESET_LABEL": "Now finish by sending the email containing the link (<b>please check the email is not in your spam folder</b>)."
|
|
210
|
+
},
|
|
211
|
+
"register": {
|
|
212
|
+
"LOCAL_LABEL": "You can register to the system by defining your <b>personal identifiers</b>.",
|
|
213
|
+
"NAME_LABEL": "Enter your name as viewed by others users first.",
|
|
214
|
+
"EMAIL_LABEL": "Enter the email address you will use to connect and receive security related messages.",
|
|
215
|
+
"PASSWORD_LABEL": "Choose a password, if it does not comply our security policy an alert will inform you about the rules to follow.",
|
|
216
|
+
"PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
|
|
217
|
+
"CONFIRM_PASSWORD_LABEL": "Confirm your password to avoid any error.",
|
|
218
|
+
"CONFIRM_PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
|
|
219
|
+
"TERMS_LABEL": "Read and accept our <b><a style='color:white' href='/#/terms'>terms of service</a></b> in order to use the system.",
|
|
220
|
+
"REGISTER_LABEL": "Last, create your account.",
|
|
221
|
+
"EMAIL_VERIFICATION_LABEL": "We will send you an email back containing a link to <b>verify your address</b>.",
|
|
222
|
+
"LOGIN_LINK_LABEL": "You can now login whenever you want using your <b>personal identifiers</b>"
|
|
223
|
+
},
|
|
224
|
+
"create-organisation": {
|
|
225
|
+
"ORGANISATION_NAME_LABEL": "Enter the organisation name as viewed by others users.",
|
|
226
|
+
"ORGANISATION_DESCRIPTION_LABEL": "Enter a detailed description.",
|
|
227
|
+
"ORGANISATION_AVATAR_LABEL": "Select the image or the logo of your organisation as seen by your members.",
|
|
228
|
+
"CREATE_ORGANISATION_LABEL": "Confirm the creation of your new organisation."
|
|
229
|
+
},
|
|
230
|
+
"account": {
|
|
231
|
+
"PROFILE_LABEL": "This activity allows to update your profile information",
|
|
232
|
+
"AVATAR_LABEL": "Your avatar visible in the side menu when an image file has been selected.",
|
|
233
|
+
"NAME_LABEL": "Your name as viewed by others users.",
|
|
234
|
+
"UPDATE_LABEL": "Confirm the update in order to apply the modifications to your profile information.",
|
|
235
|
+
"ACCOUNT_LABEL": "Manage <b>your identifiers</b> and their security",
|
|
236
|
+
"VERIFY_EMAIL_LABEL": "This section allows you to check your email.",
|
|
237
|
+
"TOKEN_FIELD_LABEL": "Enter the code received by email.",
|
|
238
|
+
"RESEND_VERIFY_SIGNUP_LABEL": "If you haven't received it or have lost it, you can have a new one sent to you.",
|
|
239
|
+
"CONFIRM_VERIFY_EMAIL_LABEL": "Finally, confirm that.",
|
|
240
|
+
"PASSWORD_PROCEDURE_LABEL": "This section allows you to initiate the password change procedure.",
|
|
241
|
+
"OLD_PASSWORD_LABEL": "First, enter your previous password.",
|
|
242
|
+
"NEW_PASSWORD_LABEL": "Choose a new password, if it does not comply our security policy an alert will inform you about the rules to follow.",
|
|
243
|
+
"NEW_PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
|
|
244
|
+
"CONFIRM_NEW_PASSWORD_LABEL": "Confirm your password to avoid any error.",
|
|
245
|
+
"CHANGE_PASSWORD_LABEL": "Last, confirm the modification request.",
|
|
246
|
+
"CHANGE_IDENTITY_PROCEDURE_LABEL": "This section allows you to initiate the e-mail address change procedure.",
|
|
247
|
+
"PASSWORD_LABEL": "First, enter your password.",
|
|
248
|
+
"PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
|
|
249
|
+
"EMAIL_LABEL": "Enter your <b>new email address</b>.",
|
|
250
|
+
"CHANGE_EMAIL_LABEL": "An email containing a code to confirm the modification will be sent to your new address (<b>please check the email is not in your spam folder</b>).",
|
|
251
|
+
"SUBSCRIPTIONS_LABEL": "This section list all the subscriptions you have.",
|
|
252
|
+
"UNSUBSCRIBE_LABEL": "Check for any suspect activity and remove outdated subscriptions.",
|
|
253
|
+
"DANGER_ZONE_LABEL": "This activity allows to remove your account",
|
|
254
|
+
"DELETE_LABEL": "A manual confirmation will be required before final removal."
|
|
255
|
+
},
|
|
256
|
+
"groups": {
|
|
257
|
+
"GROUPS_LABEL": "This activity allows to manage the <b>groups</b> in your organisation.",
|
|
258
|
+
"GROUP_DEFINITION_LABEL": "A group allows to delegate the management of a shared workspace limited to its members.",
|
|
259
|
+
"OVERFLOW_MENU_LABEL": "@:tours.APP_BAR_OVERFLOW_MENU_LABEL",
|
|
260
|
+
"SEARCH_LABEL": "Type part of a word contained in the name of your groups in the arising bar to perform a search.",
|
|
261
|
+
"SORT_LABEL": "Sort your groups by ascending or descending alphabetical order this button.",
|
|
262
|
+
"NEW_GROUP_LABEL": "Create a <b>new group</b> using this button.",
|
|
263
|
+
"CREATE_GROUP_LINK_LABEL": "How to create a group",
|
|
264
|
+
"GROUP_CARD_LABEL": "Each group is viewed as a card providing available actions.",
|
|
265
|
+
"GROUP_MEMBERS_LABEL": "This section shows you the <b>members</b> count of your group.",
|
|
266
|
+
"LIST_GROUP_MEMBERS_LABEL": "Shows the <b>members</b> of your group by selecting it.",
|
|
267
|
+
"UPDATE_GROUP_LABEL": "Update the name of your group through this action.",
|
|
268
|
+
"UPDATE_GROUP_DESCRIPTION_LABEL": "Update the description of your group through this action.",
|
|
269
|
+
"GROUP_OVERFLOW_MENU_LABEL": "@:tours.CARD_OVERFLOW_MENU_LABEL",
|
|
270
|
+
"REMOVE_GROUP_LABEL": "Remove your group through this action.",
|
|
271
|
+
"REMOVE_CONFIRMATION_LABEL": "@:tours.REMOVE_CONFIRMATION_LABEL"
|
|
272
|
+
},
|
|
273
|
+
"create-group": {
|
|
274
|
+
"GROUP_NAME_LABEL": "Choose a name for your group.",
|
|
275
|
+
"GROUP_DESCRIPTION_LABEL": "Choose a detailed description for your group.",
|
|
276
|
+
"CREATE_GROUP_LABEL": "Confirm the creation of your new group."
|
|
277
|
+
},
|
|
278
|
+
"members": {
|
|
279
|
+
"MEMBERS_LABEL": "This activity allows to manage the <b>members</b> in your organisation.",
|
|
280
|
+
"MEMBER_DEFINITION_LABEL": "A <b>member</b> is a user able to access the shared workspace offered by your organisation.",
|
|
281
|
+
"OVERFLOW_MENU_LABEL": "@:tours.APP_BAR_OVERFLOW_MENU_LABEL",
|
|
282
|
+
"SEARCH_LABEL": "Type part of a word contained in the name of your members in the arising bar to perform a search.",
|
|
283
|
+
"SEARCH_MORE_LABEL": "Type also a word contained in the name of a group or a tag associated to your members to filter accordingly.",
|
|
284
|
+
"FILTER_LABEL": "Filter your members according to their status using this button.",
|
|
285
|
+
"SORT_LABEL": "Sort your members by ascending or descending alphabetical order this button.",
|
|
286
|
+
"ADD_INVITE_MEMBER_LABEL": "Add members to your organisation through this action.",
|
|
287
|
+
"ADD_MEMBER_LABEL": "If your future member <b>already has an account</b>, <b>add him</b> using this button.",
|
|
288
|
+
"ADD_MEMBER_LINK_LABEL": "How to add a member",
|
|
289
|
+
"INVITE_MEMBER_LABEL": "If your future member <b>does not yet have an account</b>, <b>invite him</b> using this button and we will create it .",
|
|
290
|
+
"INVITE_MEMBER_LINK_LABEL": "How to invite a member",
|
|
291
|
+
"MEMBER_CARD_LABEL": "Each member is viewed as a card providing available actions.",
|
|
292
|
+
"ROLE_LABEL": "Visualise the role of your member at a glance.",
|
|
293
|
+
"TAGS_LABEL": "Visualise tags of your member at a glance as well.",
|
|
294
|
+
"TAGS_CONTENT_LABEL": "Use the cross to delete a tag.",
|
|
295
|
+
"GROUPS_LABEL": "Visualise groups of your member at a glance as well.",
|
|
296
|
+
"GROUPS_CONTENT_LABEL": "Select one of the member groups to show available actions.",
|
|
297
|
+
"ADD_TAG_LABEL": "Add tag of your member through this action.",
|
|
298
|
+
"ADD_TAG_LINK_LABEL": "How to manage tags",
|
|
299
|
+
"JOIN_GROUP_LABEL": "Add your member to a <b>group</b> through this action.",
|
|
300
|
+
"JOIN_GROUP_LINK_LABEL": "How to manage groups",
|
|
301
|
+
"CHANGE_ROLE_LABEL": "Update the role of your member through this action.",
|
|
302
|
+
"CHANGE_ROLE_LINK_LABEL": "How to manage roles",
|
|
303
|
+
"REMOVE_MEMBER_LABEL": "Remove the member from your organisation through this action.",
|
|
304
|
+
"REMOVE_CONFIRMATION_LABEL": "@:tours.REMOVE_CONFIRMATION_LABEL"
|
|
305
|
+
},
|
|
306
|
+
"add-member": {
|
|
307
|
+
"UNIQUE_TAB_LABEL": "Add a unique person to your organisation using his email adress.",
|
|
308
|
+
"UNIQUE_EMAIL_LABEL": "Enter the email of the desired person",
|
|
309
|
+
"UNIQUE_CONTINUE_BUTTON_LABEL": "Click this button to procced with the invitation or to add the person if they already have an account.",
|
|
310
|
+
"UNIQUE_NAME_LABEL": "Enter the name of the person.",
|
|
311
|
+
"UNIQUE_ROLE_LABEL": "Select its role within your organisation. A <b>member</b> has a read-only access to your organisation while a <b>manager</b> can edit it, and a <b>owner</b> has full control.",
|
|
312
|
+
"UNIQUE_ADD_BUTTON_LABEL": "Click this button to send the invitation.",
|
|
313
|
+
"MULTIPLE_TAB_LABEL": "Add multiple persons to your organisation using a CSV file.",
|
|
314
|
+
"MULTIPLE_FILE_LABEL": "Upload the CSV file listing the persons to be invited. Each person is represented by a row containing the fields <b>name</b>, <b>email</b> and <b>role</b> separated using a <b>,</b> separator.",
|
|
315
|
+
"MULTIPLE_ADD_BUTTON_LABEL": "Click this button to proceed with the invitations."
|
|
316
|
+
},
|
|
317
|
+
"role-member": {
|
|
318
|
+
"ROLE_LABEL": "Select its role within your organisation. A <b>member</b> has a read-only access to your organisation while a <b>manager</b> can edit it, and a <b>owner</b> has full control.",
|
|
319
|
+
"UPDATE_ROLE_LABEL": "Update the role of your member"
|
|
320
|
+
},
|
|
321
|
+
"join-group": {
|
|
322
|
+
"GROUP_NAME_LABEL": "Typing <b>the first characters</b> of a group name to make it selectable.",
|
|
323
|
+
"MEMBER_ROLE_LABEL": "Choisissez le rôle de la personne au sein du groupe.",
|
|
324
|
+
"ROLES_LABEL": "Un <b>membre</b> a un accès consultatif au groupe alors qu'un <b>gestionnaire</b> a le pouvoir de gérer les membres du groupe (ajout/suppression).",
|
|
325
|
+
"ADD_MEMBER_LABEL": "Confirm adding the member to the group."
|
|
326
|
+
},
|
|
327
|
+
"add-tag": {
|
|
328
|
+
"TAG_NAME_LABEL": "Typing <b>the first characters</b> of a tag name to make it selectable if it already exists using the Return key.",
|
|
329
|
+
"ADD_TAG_LABEL": "Confirm addition the tags on your members."
|
|
330
|
+
},
|
|
331
|
+
"tags": {
|
|
332
|
+
"TAGS_LABEL": "This activity allows to manage the <b>tags</b> in your organisation.",
|
|
333
|
+
"TAG_DEFINITION_LABEL": "A tag allows to classify a subset of your organisation members (e.g. a skill or a service).",
|
|
334
|
+
"OVERFLOW_MENU_LABEL": "@:tours.APP_BAR_OVERFLOW_MENU_LABEL",
|
|
335
|
+
"SEARCH_LABEL": "Type part of a word contained in the name of your tags in the arising bar to perform a search.",
|
|
336
|
+
"SORT_LABEL": "Sort your tags by ascending or descending alphabetical order this button.",
|
|
337
|
+
"TAG_CARD_LABEL": "Each tag is viewed as a card providing available actions.",
|
|
338
|
+
"NEW_TAG_LABEL": "Create a <b>new tag</b> using this button.",
|
|
339
|
+
"CREATE_TAG_LINK_LABEL": "How to create a tag",
|
|
340
|
+
"TAG_COUNT_LABEL": "This section shows you the number of <b>members</b> having your tag.",
|
|
341
|
+
"LIST_MEMBERS_LABEL": "Shows the <b>members</b> with this tag by selecting it.",
|
|
342
|
+
"REMOVE_TAG_LABEL": "Remove your tag through this action.",
|
|
343
|
+
"REMOVE_CONFIRMATION_LABEL": "@:tours.REMOVE_CONFIRMATION_LABEL",
|
|
344
|
+
"UPDATE_TAG_LABEL": "Update properties of your tag through this action, this will update all members having this tag.",
|
|
345
|
+
"UPDATE_TAG_DESCRIPTION_LABEL": "Update the description of your tag through this action."
|
|
346
|
+
},
|
|
347
|
+
"create-tag": {
|
|
348
|
+
"TAG_NAME_LABEL": "Choose a name for your tag.",
|
|
349
|
+
"TAG_ICON_LABEL": "Choose an icon to easily recognize your tag.",
|
|
350
|
+
"TAG_DESCRIPTION_LABEL": "Choose a detailed description for your tag.",
|
|
351
|
+
"CREATE_TAG_LABEL": "Confirm the creation of your new tag."
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
"reader": {
|
|
355
|
+
"READING_FILE": "Reading file {file}"
|
|
356
|
+
},
|
|
357
|
+
"storage": {
|
|
358
|
+
"UPLOADING_FILE": "Uploading file {file}"
|
|
359
|
+
},
|
|
360
|
+
"KVersion": {
|
|
361
|
+
"CLIENT_VERSION": "Client v{version}",
|
|
362
|
+
"API_VERSION": "API v{version}"
|
|
363
|
+
},
|
|
364
|
+
"KSponsor": {
|
|
365
|
+
"KDK_POWERED": "Powered by Kalisio's Development Kit",
|
|
366
|
+
"MORE_ABOUT_KDK": "More about KDK",
|
|
367
|
+
"MORE_ABOUT_KALISIO": "More about Kalisio"
|
|
368
|
+
},
|
|
369
|
+
"KPlatform": {
|
|
370
|
+
"PROPERTY": "Property",
|
|
371
|
+
"VALUE": "Value",
|
|
372
|
+
"COPY_INFO": "Copy info",
|
|
373
|
+
"INFO_COPIED": "Platform info copied",
|
|
374
|
+
"CANNOT_COPY_INFO": "Cannot copy platform info"
|
|
375
|
+
},
|
|
376
|
+
"KAbout": {
|
|
377
|
+
"DOMAIN": "Hosted on",
|
|
378
|
+
"FLAVOR": "Flavor",
|
|
379
|
+
"VIEW_CHANGELOG": "Changlog",
|
|
380
|
+
"BUG_REPORT": "Report us a bug",
|
|
381
|
+
"BUG_REPORT_SUBJECT": "[{appName}] Bug report - Client v{clientVersion} - API v{apiVersion}",
|
|
382
|
+
"BUG_REPORT_BODY": "Please detail your problem here%0D%0A%0D%0APlatform information to be kept%0D%0A%0D%0A",
|
|
383
|
+
"PLATFORM_INFO": "Platform information"
|
|
384
|
+
},
|
|
385
|
+
"KWelcome": {
|
|
386
|
+
"WELCOME_TITLE": "Welcome !",
|
|
387
|
+
"WELCOME_MESSAGE": "This quick start guide covers the main application features.",
|
|
388
|
+
"ONLINE_HELP": "Read first our online help to get an overview of the basic concepts",
|
|
389
|
+
"CONTEXTUAL_HELP": "To get contextual help whenever your are lost simply click on the following icon",
|
|
390
|
+
"TOUR_MESSAGE": "Launch now a quick overview tutorial detailing the main menu by clicking on the following icon",
|
|
391
|
+
"TOUR_LINK_MESSAGE": "Each time a tutorial step exhibits this icon it allows to launch a new one detailing the target feature.",
|
|
392
|
+
"GOODBYE_MESSAGE": "Thanks for reading this tutorial, you are now ready to use the application !",
|
|
393
|
+
"HIDE_WELCOME": "Don't display this message again"
|
|
394
|
+
},
|
|
395
|
+
"KTour": {
|
|
396
|
+
"SKIP_LABEL": "Skip",
|
|
397
|
+
"NEXT_LABEL": "Next",
|
|
398
|
+
"PREVIOUS_LABEL": "Previous",
|
|
399
|
+
"FINISH_LABEL": "Finish",
|
|
400
|
+
"MISS_ERROR": "Before going further please perform the required actions"
|
|
401
|
+
},
|
|
402
|
+
"KScreen": {
|
|
403
|
+
"CLIENT_VERSION": "Client v",
|
|
404
|
+
"API_VERSION": "API v",
|
|
405
|
+
"EMAIL_FIELD_LABEL": "Enter your email address",
|
|
406
|
+
"CHANGE_ENDPOINT_LINK": "Change endpoint",
|
|
407
|
+
"DEVELOPMENT_VERSION": "DEVELOPMENT VERSION",
|
|
408
|
+
"TEST_VERSION": "TEST VERSION"
|
|
409
|
+
},
|
|
410
|
+
"KErrorScreen": {
|
|
411
|
+
"MESSAGE": "Oups... page not found",
|
|
412
|
+
"GO_HOME_LABEL": "Go home page"
|
|
413
|
+
},
|
|
414
|
+
"KLoginScreen": {
|
|
415
|
+
"EMAIL_FIELD_LABEL": "@:KScreen.EMAIL_FIELD_LABEL",
|
|
416
|
+
"PASSWORD_FIELD_LABEL": "Enter your password",
|
|
417
|
+
"LOGIN_LABEL": "Log in",
|
|
418
|
+
"FORGOT_YOUR_PASSWORD_LABEL": "Forgot your password ?",
|
|
419
|
+
"DONT_HAVE_AN_ACCOUNT_LABEL": "Don't have an account ?",
|
|
420
|
+
"LOGIN_ERROR": "Wrong credentials or service unavailable, please try again",
|
|
421
|
+
"CONTEXTUAL_HELP": "@:NEED_HELP"
|
|
422
|
+
},
|
|
423
|
+
"KRegisterScreen": {
|
|
424
|
+
"TITLE": "Register",
|
|
425
|
+
"NAME_FIELD_LABEL": "@:schemas.NAME_FIELD_LABEL",
|
|
426
|
+
"EMAIL_FIELD_LABEL": "@:KScreen.EMAIL_FIELD_LABEL",
|
|
427
|
+
"PASSWORD_FIELD_LABEL": "Enter a password",
|
|
428
|
+
"CONFIRM_PASSWORD_FIELD_LABEL": "Confirm your password",
|
|
429
|
+
"ACCEPT_TERMS_LABEL": "I accept the terms and policies",
|
|
430
|
+
"ACCEPT_TERMS_HELPER": "<a href='{domain}/#/terms' target='_blank'>terms and policies</a>",
|
|
431
|
+
"ACCEPT_TERMS_ERROR_LABEL": "You must accept our terms and policies to register",
|
|
432
|
+
"REGISTER_LABEL": "Register",
|
|
433
|
+
"ALREADY_HAVE_AN_ACCOUNT_LINK": "Already have an account ?",
|
|
434
|
+
"EMAIL_ALREADY_TAKEN": "Email already taken !",
|
|
435
|
+
"REGISTER_ERROR": "Wrong input or service unavailable, please try again",
|
|
436
|
+
"CONTEXTUAL_HELP": "@:NEED_HELP"
|
|
437
|
+
},
|
|
438
|
+
"KLogoutScreen": {
|
|
439
|
+
"TITLE": "You are now logged out",
|
|
440
|
+
"LOG_IN_AGAIN_LABEL": "Log in again ?"
|
|
441
|
+
},
|
|
442
|
+
"KEndpointScreen": {
|
|
443
|
+
"TITLE": "Change endpoint",
|
|
444
|
+
"BASE_URL_FIELD_LABEL": "Enter the address of the server to be used",
|
|
445
|
+
"APPLY_LABEL": "Apply",
|
|
446
|
+
"RESET_LABEL": "Reset",
|
|
447
|
+
"LOG_IN_LABEL": "Log in ?"
|
|
448
|
+
},
|
|
449
|
+
"KProfile": {
|
|
450
|
+
"EDIT_PROFILE": "Edit my profile",
|
|
451
|
+
"MANAGE_ACCOUNT": "Manage my account"
|
|
452
|
+
},
|
|
453
|
+
"KDeleteAccountManager": {
|
|
454
|
+
"TITLE": "Delete my account",
|
|
455
|
+
"QUESTION": "Are you sure you want to delete your account ?",
|
|
456
|
+
"CONFIRMATION_TITLE": "Warning: the deletion of your account is irrevocable and all data attached to it will be lost",
|
|
457
|
+
"CONFIRMATION": "Enter your account name to confirm the deletion"
|
|
458
|
+
},
|
|
459
|
+
"KPasswordManager": {
|
|
460
|
+
"TITLE": "Change my password",
|
|
461
|
+
"PASSWORD_CHANGED": "Your password has been successfully changed",
|
|
462
|
+
"OLD_PASSWORD_FIELD_LABEL": "Enter your old password",
|
|
463
|
+
"PASSWORD_FIELD_LABEL": "Enter your new password",
|
|
464
|
+
"CONFIRM_PASSWORD_FIELD_LABEL": "Confirm your new password"
|
|
465
|
+
},
|
|
466
|
+
"KEmailManager": {
|
|
467
|
+
"TITLE": "Change my email address",
|
|
468
|
+
"PASSWORD_FIELD_LABEL": "Enter your password",
|
|
469
|
+
"EMAIL_FIELD_LABEL": "Enter your new email address",
|
|
470
|
+
"TOKEN_LABEL": "To validate your new email address, enter the code you received by email",
|
|
471
|
+
"EMAIL_CHANGED": "You new address has been taken into account. An email has been sent to you to confirm the change.",
|
|
472
|
+
"ERROR_MESSAGE": "Invalid code"
|
|
473
|
+
},
|
|
474
|
+
"KVerifyEmailManager": {
|
|
475
|
+
"TITLE": "Check my email address",
|
|
476
|
+
"HELP_LABEL": "Why should I verify my email address ?",
|
|
477
|
+
"HELP_TEXT": "Verifying your email address improves the security of your account. Once you have verified your email address, both your password and access to your email account are required in order to make any changes to your account credentials, such as your password and contact email address. This helps further protect your account from being stolen by a potential phisher.",
|
|
478
|
+
"HELP_EMAIL_LABEL": "I never received the verification email, what should I do ?",
|
|
479
|
+
"HELP_EMAIL_TEXT": "If you do not receive your signup verification email and you are running a Spam filter, check and make sure the message has not been filtered as spam. Please try adding {email} to your contacts or trusted senders list within your email client and attempt to re-verify your email address. You can also click the button below and we'll send you the email again.",
|
|
480
|
+
"TOKEN_LABEL": "Enter the code received by email to validate your email address",
|
|
481
|
+
"EMAIL_VERIFIED": "Your address has been verified. An email has been sent to you to confirm the change.",
|
|
482
|
+
"ACTION": "Resend verification code",
|
|
483
|
+
"ERROR_MESSAGE": "Invalid code, request a new one"
|
|
484
|
+
},
|
|
485
|
+
"KSubscriptionsManager": {
|
|
486
|
+
"TITLE": "Manage my subscriptions",
|
|
487
|
+
"EMPTY": "No subscriptions"
|
|
488
|
+
},
|
|
489
|
+
"KSubscription": {
|
|
490
|
+
"UNSUBSCRIBE_LABEL": "Unsubscribe",
|
|
491
|
+
"LAST_ACTIVITY": "Last activity",
|
|
492
|
+
"UNSUBSCRIBE_DIALOG_TITLE": "Unsubscribe from {description} ?",
|
|
493
|
+
"UNSUBSCRIBE_DIALOG_MESSAGE": "Are you sure you want to unsubscribe your account from <b>{description}</b> ?<br><br>You will not be able to receive notifications until you reconnect using this service."
|
|
494
|
+
},
|
|
495
|
+
"KGrid": {
|
|
496
|
+
"EMPTY_GRID": "@:NO_ITEM"
|
|
497
|
+
},
|
|
498
|
+
"KList": {
|
|
499
|
+
"EMPTY_LIST": "@:NO_ITEM"
|
|
500
|
+
},
|
|
501
|
+
"KTable": {
|
|
502
|
+
"EMPTY_TABLE": "@:NO_ITEM",
|
|
503
|
+
"TABLE_COLUMNS": "Properties"
|
|
504
|
+
},
|
|
505
|
+
"KDataTable": {
|
|
506
|
+
"EMPTY_TABLE": "@:NO_ITEM",
|
|
507
|
+
"TABLE_COLUMNS": "Properties",
|
|
508
|
+
"NO_DATA_AVAILABLE": "No data available",
|
|
509
|
+
"EXPORT_DATA": "Export data",
|
|
510
|
+
"DATA_EXPORT_FILE": "Data.csv"
|
|
511
|
+
},
|
|
512
|
+
"KHistory": {
|
|
513
|
+
"EMPTY_HISTORY": "@:NO_ITEM"
|
|
514
|
+
},
|
|
515
|
+
"KColumn": {
|
|
516
|
+
"EMPTY_COLUMN": "@:NO_ITEM"
|
|
517
|
+
},
|
|
518
|
+
"KCard": {
|
|
519
|
+
"DESCRIPTION_SECTION": "Description",
|
|
520
|
+
"NO_DESCRIPTION_LABEL": "No description",
|
|
521
|
+
"MORE_ACTION": "More details",
|
|
522
|
+
"LESS_ACTION": "Less details"
|
|
523
|
+
},
|
|
524
|
+
"KColorChooser": {
|
|
525
|
+
"CANCEL_BUTTON": "@:CANCEL",
|
|
526
|
+
"DONE_BUTTON": "@:DONE"
|
|
527
|
+
},
|
|
528
|
+
"KIconChooser": {
|
|
529
|
+
"CLOSE_ACTION": "@:CANCEL",
|
|
530
|
+
"DONE_BUTTON": "@:DONE",
|
|
531
|
+
"SEARCH_FIELD_LABEL": "Type to search",
|
|
532
|
+
"SEARCH_CATEGORY_LABEL": "All categories",
|
|
533
|
+
"categories": {
|
|
534
|
+
"accessibility": "accessibility",
|
|
535
|
+
"alert": "alert",
|
|
536
|
+
"animals": "animals",
|
|
537
|
+
"arrows": "arrows",
|
|
538
|
+
"audio-video": "audio-video",
|
|
539
|
+
"automotive": "automotive",
|
|
540
|
+
"autumn": "autumn",
|
|
541
|
+
"beverage": "beverage",
|
|
542
|
+
"buildings": "buildings",
|
|
543
|
+
"business": "business",
|
|
544
|
+
"camping": "camping",
|
|
545
|
+
"charity": "charity",
|
|
546
|
+
"chat": "chat",
|
|
547
|
+
"chess": "chess",
|
|
548
|
+
"childhood": "childhood",
|
|
549
|
+
"clothing": "clothing",
|
|
550
|
+
"code": "code",
|
|
551
|
+
"communication": "communication",
|
|
552
|
+
"computers": "computers",
|
|
553
|
+
"construction": "construction",
|
|
554
|
+
"currency": "currency",
|
|
555
|
+
"date-time": "date-time",
|
|
556
|
+
"design": "design",
|
|
557
|
+
"editors": "editors",
|
|
558
|
+
"education": "education",
|
|
559
|
+
"emoji": "emoji",
|
|
560
|
+
"energy": "energy",
|
|
561
|
+
"files": "files",
|
|
562
|
+
"finance": "finance",
|
|
563
|
+
"fitness": "fitness",
|
|
564
|
+
"food": "food",
|
|
565
|
+
"fruit-vegetable": "fruit-vegetable",
|
|
566
|
+
"games": "games",
|
|
567
|
+
"gaming-tabletop": "gaming-tabletop",
|
|
568
|
+
"gender": "gender",
|
|
569
|
+
"halloween": "halloween",
|
|
570
|
+
"hands": "hands",
|
|
571
|
+
"health": "health",
|
|
572
|
+
"holiday": "holiday",
|
|
573
|
+
"hotel": "hotel",
|
|
574
|
+
"household": "household",
|
|
575
|
+
"images": "images",
|
|
576
|
+
"interfaces": "interfaces",
|
|
577
|
+
"logistics": "logistics",
|
|
578
|
+
"maps": "maps",
|
|
579
|
+
"maritime": "maritime",
|
|
580
|
+
"marketing": "marketing",
|
|
581
|
+
"mathematics": "mathematics",
|
|
582
|
+
"medical": "medical",
|
|
583
|
+
"moving": "moving",
|
|
584
|
+
"music": "music",
|
|
585
|
+
"objects": "objects",
|
|
586
|
+
"payments-shopping": "payments-shopping",
|
|
587
|
+
"pharmacy": "pharmacy",
|
|
588
|
+
"political": "political",
|
|
589
|
+
"religion": "religion",
|
|
590
|
+
"science": "science",
|
|
591
|
+
"science-fiction": "science-fiction",
|
|
592
|
+
"security": "security",
|
|
593
|
+
"shapes": "shapes",
|
|
594
|
+
"shopping": "shopping",
|
|
595
|
+
"social": "social",
|
|
596
|
+
"spinners": "spinners",
|
|
597
|
+
"sports": "sports",
|
|
598
|
+
"spring": "spring",
|
|
599
|
+
"status": "status",
|
|
600
|
+
"summer": "summer",
|
|
601
|
+
"toggle": "toggle",
|
|
602
|
+
"travel": "travel",
|
|
603
|
+
"users-people": "users-people",
|
|
604
|
+
"vehicles": "vehicles",
|
|
605
|
+
"weather": "weather",
|
|
606
|
+
"winter": "winter",
|
|
607
|
+
"writing": "writing"
|
|
608
|
+
}
|
|
609
|
+
},
|
|
610
|
+
"KTagField": {
|
|
611
|
+
"CREATE_TAG": "Create <b>c</b>"
|
|
612
|
+
},
|
|
613
|
+
"KFileField": {
|
|
614
|
+
"INVALID_FILE_TYPE": "Invalid file type, please select the right file type",
|
|
615
|
+
"INVALID_FILE_SIZE": "Invalid file size, the file is too large",
|
|
616
|
+
"UPLOAD_FILE_SUCCEEDED": "File {file} has been successfully uploaded",
|
|
617
|
+
"UPLOAD_FILE_ERRORED": "Cannot upload file {file} !"
|
|
618
|
+
},
|
|
619
|
+
"KCronField": {
|
|
620
|
+
"INVALID_CRON": "Invalid CRON expression"
|
|
621
|
+
},
|
|
622
|
+
"KMediaBrowser": {
|
|
623
|
+
"CLOSE_ACTION": "@:CLOSE",
|
|
624
|
+
"DOWNLOAD_MEDIA_ACTION": "Donwload media",
|
|
625
|
+
"RESTORE_IMAGE_ACTION": "Restore image",
|
|
626
|
+
"REMOVE_MEDIA_ACTION": "Remove the media",
|
|
627
|
+
"REMOVE_DIALOG_TITLE": "Remove the media {media} ?",
|
|
628
|
+
"REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove the media <b>{media}</b> ?",
|
|
629
|
+
"ADD_MEDIA_ACTION": "Add a media",
|
|
630
|
+
"ADD_PHOTO_ACTION": "Add a photo",
|
|
631
|
+
"UPLOAD_TITLE": "Add a media",
|
|
632
|
+
"UPLOAD_FILE_FIELD_LABEL": "Select a file",
|
|
633
|
+
"UPLOAD": "Add",
|
|
634
|
+
"NO_MEDIA": "There is no media to show, please add a media first with one of the action buttons."
|
|
635
|
+
},
|
|
636
|
+
"KFab": {
|
|
637
|
+
"CLOSE_ACTION": "@:CLOSE"
|
|
638
|
+
},
|
|
639
|
+
"KModal": {
|
|
640
|
+
"CLOSE_ACTION": "@:CLOSE"
|
|
641
|
+
},
|
|
642
|
+
"KWindow": {
|
|
643
|
+
"CLOSE_ACTION": "@:CLOSE",
|
|
644
|
+
"PIN_ACTION": "Pin",
|
|
645
|
+
"RESTORE_ACTION": "Restore",
|
|
646
|
+
"MAXIMIZE_ACTION": "Maximize"
|
|
647
|
+
},
|
|
648
|
+
"KOrganisationsActivity": {
|
|
649
|
+
"ORGANISATIONS_LABEL": "My organisations",
|
|
650
|
+
"CREATE_ORGANISATION_LABEL": "Create an organisation",
|
|
651
|
+
"SEARCH_ORGANISATIONS": "Rechercher des organisations",
|
|
652
|
+
"SORT_ORGANISATIONS": "Trier les organisations"
|
|
653
|
+
},
|
|
654
|
+
"KMembersActivity": {
|
|
655
|
+
"MEMBERS_LABEL": "@:MEMBERS",
|
|
656
|
+
"SORT_MEMBERS": "Sort members",
|
|
657
|
+
"SEARCH_MEMBERS": "Search members",
|
|
658
|
+
"ADD_USER_LABEL": "Add a member",
|
|
659
|
+
"INVITE_GUEST_LABEL": "Invite guests"
|
|
660
|
+
},
|
|
661
|
+
"KAddMember": {
|
|
662
|
+
"TITLE": "Add one or more persons ?",
|
|
663
|
+
"EMAIL_FIELD_LABEL": "Enter the email address of the person to be added",
|
|
664
|
+
"NAME_FIELD_LABEL": "Enter the name of this person",
|
|
665
|
+
"ROLE_FIELD_LABEL": "Select the role granted to this person",
|
|
666
|
+
"ADD_MESSAGE": "<b>{email}</b> is already registered. Would you like to add this persion to your organisation ?",
|
|
667
|
+
"INVITE_MESSAGE": "<b>{email}</b> is not registered. Would you like to invite this person ?",
|
|
668
|
+
"FILE_FIELD_LABEL": "Select the CSV file you want to import",
|
|
669
|
+
"OWNER_LABEL": "@:OWNER",
|
|
670
|
+
"MANAGER_LABEL": "@:MANAGER",
|
|
671
|
+
"MEMBER_LABEL": "@:MEMBER",
|
|
672
|
+
"CANCEL_BUTTON": "@:CANCEL",
|
|
673
|
+
"CONTINUE_BUTTON": "Continue",
|
|
674
|
+
"BACK_BUTTON": "Back",
|
|
675
|
+
"ADD_BUTTON": "Add",
|
|
676
|
+
"INVITE_BUTTON": "Invite",
|
|
677
|
+
"ALREADY_MEMBER_ERROR": "This person is already a member of your organisation",
|
|
678
|
+
"CONTENT_FILE_ERROR": "Are you sure your file is correclty formatted ?",
|
|
679
|
+
"INVALID_FIELDS_VALUES_ERROR": "Invalid values",
|
|
680
|
+
"INVALID_FIELDS_NUMBER_ERROR": "Invalid field number",
|
|
681
|
+
"ALERT_FILE_IMPORT_MESSAGE": "No valid record detected. Please ensure your file is correctly formatted",
|
|
682
|
+
"CONFIRM_FILE_IMPORT_MESSAGE": "<b>{errors} error(s)</b> detected among {records}] record(s). Would you to continue ?",
|
|
683
|
+
"USER_ADDED_MESSAGE": "This person as been added",
|
|
684
|
+
"GUEST_ADDED_MESSAGE": "This person as been invited"
|
|
685
|
+
},
|
|
686
|
+
"KAddTag": {
|
|
687
|
+
"TITLE": "Tag {member} with an existing tag ?",
|
|
688
|
+
"TAG_FIELD_LABEL": "Enter the name of the tag",
|
|
689
|
+
"CLOSE_ACTION": "@:CLOSE",
|
|
690
|
+
"ADD_BUTTON": "Tag"
|
|
691
|
+
},
|
|
692
|
+
"KJoinGroup": {
|
|
693
|
+
"TITLE": "Add {member} to an existing group ?",
|
|
694
|
+
"GROUP_FIELD_LABEL": "Enter the name of the group",
|
|
695
|
+
"ROLE_FIELD_LABEL": "Delegate group management to this member?",
|
|
696
|
+
"OWNER_LABEL": "@:OWNER",
|
|
697
|
+
"MANAGER_LABEL": "@:MANAGER",
|
|
698
|
+
"MEMBER_LABEL": "@:MEMBER",
|
|
699
|
+
"CLOSE_ACTION": "@:CLOSE",
|
|
700
|
+
"ADD_BUTTON": "Add"
|
|
701
|
+
},
|
|
702
|
+
"KChangeRole": {
|
|
703
|
+
"TITLE": "Change role of {member} ?",
|
|
704
|
+
"ROLE_FIELD_LABEL": "Select the role to be granted to the user",
|
|
705
|
+
"CLOSE_ACTION": "@:CLOSE",
|
|
706
|
+
"UPDATE_BUTTON": "Update"
|
|
707
|
+
},
|
|
708
|
+
"KMemberCard": {
|
|
709
|
+
"EDIT_ACTION": "@:EDIT",
|
|
710
|
+
"REMOVE_ACTION": "@:REMOVE",
|
|
711
|
+
"TAGS_SECTION": "Tags",
|
|
712
|
+
"NO_TAGS_LABEL": "Update tags",
|
|
713
|
+
"TAG_ACTION": "Add a tag",
|
|
714
|
+
"REMOVE_TAG_DIALOG_TITLE": "Remove tag {tag} ?",
|
|
715
|
+
"REMOVE_TAG_DIALOG_MESSAGE": "Are you sure you want to remove tag <b>{tag}</b> for <b>{member}</b>?",
|
|
716
|
+
"GROUPS_SECTION": "Groups",
|
|
717
|
+
"NO_GROUPS_LABEL": "No groups",
|
|
718
|
+
"JOIN_GROUP_ACTION": "Join a group",
|
|
719
|
+
"EXPIRE_AT_LABEL": "Invitation expire at",
|
|
720
|
+
"CHANGE_ROLE_ACTION": "Change role",
|
|
721
|
+
"RESEND_INVITATION_ACTION": "Resend an invitation",
|
|
722
|
+
"REMOVE_DIALOG_TITLE": "Remove {member} ?",
|
|
723
|
+
"REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove <b>{member}</b> from your organisation ?",
|
|
724
|
+
"LEAVE_GROUP_DIALOG_TITLE": "Leave the group {group} '?",
|
|
725
|
+
"LEAVE_GROUP_DIALOG_MESSAGE": "Are you sure you want <b>{member}</b> to leave the group <b>{group}</b> ?",
|
|
726
|
+
"RESEND_INVITATION_DIALOG_TITLE": "Resend the invitation for {member} ?",
|
|
727
|
+
"RESEND_INVITATION_DIALOG_MESSAGE": "Is <b>{member}</b>'s email address correct ?"
|
|
728
|
+
},
|
|
729
|
+
"KTagsActivity": {
|
|
730
|
+
"TAGS_LABEL": "@:TAGS",
|
|
731
|
+
"SORT_TAGS": "Sort tags",
|
|
732
|
+
"SEARCH_TAGS": "Search tags",
|
|
733
|
+
"CREATE_TAG_LABEL": "Create a tag"
|
|
734
|
+
},
|
|
735
|
+
"KTagCard": {
|
|
736
|
+
"EDIT_ACTION": "@:EDIT",
|
|
737
|
+
"REMOVE_ACTION": "@:REMOVE",
|
|
738
|
+
"MEMBERS_SECTION": "Members",
|
|
739
|
+
"MEMBERS_LABEL": "{count} member(s)",
|
|
740
|
+
"VIEW_MEMBERS_LABEL": "View members with tag"
|
|
741
|
+
},
|
|
742
|
+
"KGroupsActivity": {
|
|
743
|
+
"GROUPS_LABEL": "@:GROUPS",
|
|
744
|
+
"SORT_GROUPS": "Sort groups",
|
|
745
|
+
"SEARCH_GROUPS": "Search groups",
|
|
746
|
+
"CREATE_GROUP_LABEL": "Create a group"
|
|
747
|
+
},
|
|
748
|
+
"KGroupCard": {
|
|
749
|
+
"EDIT_ACTION": "@:EDIT",
|
|
750
|
+
"REMOVE_ACTION": "@:REMOVE",
|
|
751
|
+
"DESCRIPTION_SECTION": "Description",
|
|
752
|
+
"NO_DESCRIPTION_LABEL": "No description",
|
|
753
|
+
"MEMBERS_SECTION": "Members",
|
|
754
|
+
"MEMBERS_LABEL": "{count} member(s)",
|
|
755
|
+
"VIEW_MEMBERS_LABEL": "View members"
|
|
756
|
+
},
|
|
757
|
+
"KResetPassword": {
|
|
758
|
+
"TITLE": "Reset your password ?",
|
|
759
|
+
"MESSAGE": "Please enter your new password to proceed",
|
|
760
|
+
"ACTION": "Reset",
|
|
761
|
+
"RESEND_LINK": "Resend reset password code",
|
|
762
|
+
"EMAIL_FIELD_LABEL": "Enter your email address",
|
|
763
|
+
"PASSWORD_FIELD_LABEL": "Enter your new password",
|
|
764
|
+
"CONFIRM_PASSWORD_FIELD_LABEL": "Confirm your new password",
|
|
765
|
+
"TOKEN_FIELD_LABEL": "Enter the code received by email",
|
|
766
|
+
"SUCCESS_MESSAGE": "Password reset, you will receive a confirmation email",
|
|
767
|
+
"ERROR_MESSAGE_BAD_PARAMS": "Your password has already been reset or your account has been removed",
|
|
768
|
+
"ERROR_MESSAGE_VERIFY_EXPIRED": "The delay to reset has expired, please resend the reset password email with the link below",
|
|
769
|
+
"ERROR_MESSAGE_DEFAULT": "Error while trying to reset password, please try again later"
|
|
770
|
+
},
|
|
771
|
+
"KSendResetPassword": {
|
|
772
|
+
"TITLE": "Reset my password ?",
|
|
773
|
+
"MESSAGE": "Enter your email address and we will send you a code to reset your password",
|
|
774
|
+
"ACTION": "Send",
|
|
775
|
+
"EMAIL_FIELD_LABEL": "Enter your email address",
|
|
776
|
+
"ERROR_MESSAGE_IS_VERIFIED": "Check your inbox and verify your email address first",
|
|
777
|
+
"ERROR_MESSAGE_DEFAULT": "Error while sending email, please check the address and send it again or try again later"
|
|
778
|
+
},
|
|
779
|
+
"KMemberFilter": {
|
|
780
|
+
"NONE": "None",
|
|
781
|
+
"OWNER": "Owner",
|
|
782
|
+
"MANAGER": "Manager",
|
|
783
|
+
"MEMBER": "Member",
|
|
784
|
+
"GUEST": "Guest"
|
|
785
|
+
},
|
|
786
|
+
"KSorter": {
|
|
787
|
+
"SORT": "Sort"
|
|
788
|
+
},
|
|
789
|
+
"KAbsoluteTimeRange": {
|
|
790
|
+
"PICK_START_DATE_LABEL": "Update start date",
|
|
791
|
+
"PICK_START_TIME_LABEL": "Update start time",
|
|
792
|
+
"PICK_END_DATE_LABEL": "Update end date",
|
|
793
|
+
"PICK_END_TIME_LABEL": "Update end time"
|
|
794
|
+
},
|
|
795
|
+
"KRelativeTimeRanges": {
|
|
796
|
+
"LAST_HOUR_LABEL": "Last hour",
|
|
797
|
+
"LAST_2_HOURS_LABEL": "Last 2 hours",
|
|
798
|
+
"LAST_3_HOURS_LABEL": "Last 3 hours",
|
|
799
|
+
"LAST_6_HOURS_LABEL": "Last 6 hours",
|
|
800
|
+
"LAST_12_HOURS_LABEL": "Last 12 hours",
|
|
801
|
+
"LAST_DAY_LABEL": "Last day",
|
|
802
|
+
"LAST_2_DAYS_LABEL": "Last 2 days",
|
|
803
|
+
"LAST_3_DAYS_LABEL": "Last 3 days",
|
|
804
|
+
"LAST_WEEK_LABEL": "Last week",
|
|
805
|
+
"LAST_2_WEEKS_LABEL": "Last 2 weeks",
|
|
806
|
+
"LAST_MONTH_LABEL": "Last month",
|
|
807
|
+
"LAST_3_MONTHS_LABEL": "Last 3 months",
|
|
808
|
+
"LAST_6_MONTHS_LABEL": "Last 6 months",
|
|
809
|
+
"LAST_YEAR_LABEL": "Last year",
|
|
810
|
+
"NEXT_HOUR_LABEL": "Next hour",
|
|
811
|
+
"NEXT_2_HOURS_LABEL": "Next 2 hours",
|
|
812
|
+
"NEXT_3_HOURS_LABEL": "Next 3 hours",
|
|
813
|
+
"NEXT_6_HOURS_LABEL": "Next 6 hours",
|
|
814
|
+
"NEXT_12_HOURS_LABEL": "Next 12 hours",
|
|
815
|
+
"NEXT_DAY_LABEL": "Next day",
|
|
816
|
+
"NEXT_2_DAYS_LABEL": "Next 2 days",
|
|
817
|
+
"NEXT_3_DAYS_LABEL": "Next 3 days",
|
|
818
|
+
"NEXT_WEEK_LABEL": "Next week",
|
|
819
|
+
"NEXT_2_WEEKS_LABEL": "Next 2 weeks",
|
|
820
|
+
"NEXT_MONTH_LABEL": "Next month",
|
|
821
|
+
"NEXT_3_MONTHS_LABEL": "Next 3 months",
|
|
822
|
+
"NEXT_6_MONTHS_LABEL": "Next 6 months",
|
|
823
|
+
"NEXT_YEAR_LABEL": "Next year"
|
|
824
|
+
},
|
|
825
|
+
"KChart": {
|
|
826
|
+
"NO_DATA_AVAILABLE": "No data available"
|
|
827
|
+
},
|
|
828
|
+
"KTimeSeriesChart": {
|
|
829
|
+
"TIME_LABEL": "Time",
|
|
830
|
+
"EXPORT_SERIES": "Export series",
|
|
831
|
+
"SERIES_EXPORT_FILE": "Series.csv"
|
|
832
|
+
},
|
|
833
|
+
"KFilter": {
|
|
834
|
+
"SEARCH_LABEL": "Search"
|
|
835
|
+
},
|
|
836
|
+
"KTextArea": {
|
|
837
|
+
"COLLAPSE": "Collapse"
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
|