@kalisio/kdk 2.1.7 → 2.1.8

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.
Files changed (792) hide show
  1. package/.codeclimate.yml +34 -34
  2. package/.nycrc +5 -5
  3. package/.travis.doc.sh +8 -8
  4. package/.travis.test.sh +40 -40
  5. package/CHANGELOG.md +727 -727
  6. package/LICENSE +21 -21
  7. package/README.md +32 -32
  8. package/core/api/application.js +591 -591
  9. package/core/api/authentication.js +203 -203
  10. package/core/api/db.js +226 -226
  11. package/core/api/hooks/hooks.authentication.js +73 -73
  12. package/core/api/hooks/hooks.authorisations.js +376 -376
  13. package/core/api/hooks/hooks.groups.js +48 -48
  14. package/core/api/hooks/hooks.logger.js +26 -26
  15. package/core/api/hooks/hooks.model.js +290 -290
  16. package/core/api/hooks/hooks.organisations.js +156 -156
  17. package/core/api/hooks/hooks.push.js +56 -56
  18. package/core/api/hooks/hooks.query.js +246 -246
  19. package/core/api/hooks/hooks.schemas.js +73 -73
  20. package/core/api/hooks/hooks.service.js +78 -78
  21. package/core/api/hooks/hooks.storage.js +36 -36
  22. package/core/api/hooks/hooks.users.js +261 -261
  23. package/core/api/hooks/index.js +12 -12
  24. package/core/api/index.js +21 -21
  25. package/core/api/marshall.js +90 -90
  26. package/core/api/models/groups.model.mongodb.js +8 -8
  27. package/core/api/models/organisations.model.mongodb.js +3 -3
  28. package/core/api/models/tags.model.mongodb.js +10 -10
  29. package/core/api/models/users.model.mongodb.js +10 -10
  30. package/core/api/services/account/account.hooks.js +37 -37
  31. package/core/api/services/account/account.service.js +117 -117
  32. package/core/api/services/authorisations/authorisations.hooks.js +33 -33
  33. package/core/api/services/authorisations/authorisations.service.js +139 -139
  34. package/core/api/services/databases/databases.hooks.js +36 -36
  35. package/core/api/services/databases/databases.service.js +5 -5
  36. package/core/api/services/groups/groups.hooks.js +31 -31
  37. package/core/api/services/index.js +126 -126
  38. package/core/api/services/mailer/mailer.hooks.js +35 -35
  39. package/core/api/services/mailer/mailer.service.js +11 -11
  40. package/core/api/services/organisations/organisations.hooks.js +31 -31
  41. package/core/api/services/organisations/organisations.service.js +86 -86
  42. package/core/api/services/push/push.hooks.js +35 -35
  43. package/core/api/services/push/push.service.js +12 -12
  44. package/core/api/services/storage/storage.hooks.js +35 -35
  45. package/core/api/services/storage/storage.service.js +29 -29
  46. package/core/api/services/tags/tags.hooks.js +31 -31
  47. package/core/api/services/users/users.hooks.js +75 -75
  48. package/core/api/utils.js +11 -11
  49. package/core/client/api.js +293 -293
  50. package/core/client/capabilities.js +22 -22
  51. package/core/client/components/KAction.vue +393 -393
  52. package/core/client/components/KAvatar.vue +129 -129
  53. package/core/client/components/KBlock.vue +67 -67
  54. package/core/client/components/KChip.vue +68 -68
  55. package/core/client/components/KChipsPane.vue +103 -103
  56. package/core/client/components/KContent.vue +105 -105
  57. package/core/client/components/KDialog.vue +160 -160
  58. package/core/client/components/KExpandable.vue +49 -49
  59. package/core/client/components/KLogo.vue +32 -32
  60. package/core/client/components/KModal.vue +173 -173
  61. package/core/client/components/KPanel.vue +64 -64
  62. package/core/client/components/KScrollArea.vue +88 -88
  63. package/core/client/components/KSponsor.vue +40 -40
  64. package/core/client/components/KStamp.vue +65 -65
  65. package/core/client/components/KStore.vue +102 -102
  66. package/core/client/components/KTextArea.vue +143 -143
  67. package/core/client/components/KTree.vue +31 -31
  68. package/core/client/components/KVersion.vue +19 -19
  69. package/core/client/components/account/KAccount.vue +68 -68
  70. package/core/client/components/account/KDeleteAccountManager.vue +62 -62
  71. package/core/client/components/account/KEmailManager.vue +128 -128
  72. package/core/client/components/account/KPasswordManager.vue +90 -90
  73. package/core/client/components/account/KProfile.vue +109 -109
  74. package/core/client/components/account/KResetPassword.vue +126 -120
  75. package/core/client/components/account/KSendResetPassword.vue +97 -97
  76. package/core/client/components/account/KSubscription.vue +71 -71
  77. package/core/client/components/account/KSubscriptionsManager.vue +46 -46
  78. package/core/client/components/account/KVerifyEmailManager.vue +105 -105
  79. package/core/client/components/account/index.js +7 -7
  80. package/core/client/components/app/KAbout.vue +98 -98
  81. package/core/client/components/app/KHome.vue +12 -12
  82. package/core/client/components/app/KPlatform.vue +55 -55
  83. package/core/client/components/app/KSettings.vue +42 -42
  84. package/core/client/components/app/KTerms.vue +41 -41
  85. package/core/client/components/app/KTour.vue +448 -448
  86. package/core/client/components/app/KWelcome.vue +133 -133
  87. package/core/client/components/app/index.js +11 -11
  88. package/core/client/components/chart/KChart.vue +197 -197
  89. package/core/client/components/chart/KDataTable.vue +183 -183
  90. package/core/client/components/chart/KStatisticsChart.vue +94 -94
  91. package/core/client/components/chart/KTimeSeriesChart.vue +431 -431
  92. package/core/client/components/chart/index.js +9 -9
  93. package/core/client/components/collection/KBoard.vue +65 -65
  94. package/core/client/components/collection/KCard.vue +196 -196
  95. package/core/client/components/collection/KCardSection.vue +52 -52
  96. package/core/client/components/collection/KColumn.vue +229 -229
  97. package/core/client/components/collection/KFilter.vue +158 -158
  98. package/core/client/components/collection/KGrid.vue +121 -121
  99. package/core/client/components/collection/KHistory.vue +118 -118
  100. package/core/client/components/collection/KHistoryEntry.vue +111 -111
  101. package/core/client/components/collection/KItem.vue +128 -128
  102. package/core/client/components/collection/KList.vue +135 -135
  103. package/core/client/components/collection/KSorter.vue +46 -46
  104. package/core/client/components/collection/KTable.vue +238 -238
  105. package/core/client/components/collection/index.js +19 -19
  106. package/core/client/components/editor/KEditor.vue +52 -52
  107. package/core/client/components/editor/KModalEditor.vue +96 -96
  108. package/core/client/components/editor/index.js +7 -7
  109. package/core/client/components/form/KChipsField.vue +162 -162
  110. package/core/client/components/form/KColorField.vue +69 -69
  111. package/core/client/components/form/KColorScaleField.vue +86 -86
  112. package/core/client/components/form/KDateTimeRangeField.vue +65 -65
  113. package/core/client/components/form/KDatetimeField.vue +70 -70
  114. package/core/client/components/form/KEmailField.vue +33 -33
  115. package/core/client/components/form/KFileField.vue +161 -161
  116. package/core/client/components/form/KForm.vue +247 -247
  117. package/core/client/components/form/KIconField.vue +101 -101
  118. package/core/client/components/form/KItemField.vue +123 -123
  119. package/core/client/components/form/KNumberField.vue +33 -33
  120. package/core/client/components/form/KOptionsField.vue +63 -63
  121. package/core/client/components/form/KPasswordField.vue +57 -57
  122. package/core/client/components/form/KPhoneField.vue +32 -32
  123. package/core/client/components/form/KPropertyItemField.vue +119 -119
  124. package/core/client/components/form/KRoleField.vue +60 -60
  125. package/core/client/components/form/KSelectField.vue +143 -143
  126. package/core/client/components/form/KTextField.vue +48 -48
  127. package/core/client/components/form/KTextareaField.vue +88 -88
  128. package/core/client/components/form/KToggleField.vue +46 -46
  129. package/core/client/components/form/KTokenField.vue +80 -80
  130. package/core/client/components/form/KUnitField.vue +57 -57
  131. package/core/client/components/form/KUrlField.vue +32 -32
  132. package/core/client/components/form/KView.vue +118 -118
  133. package/core/client/components/form/index.js +7 -7
  134. package/core/client/components/index.js +48 -48
  135. package/core/client/components/input/KColorChooser.vue +63 -63
  136. package/core/client/components/input/KIconChooser.vue +308 -308
  137. package/core/client/components/input/KOptionsChooser.vue +122 -122
  138. package/core/client/components/input/KPalette.vue +40 -40
  139. package/core/client/components/input/index.js +11 -11
  140. package/core/client/components/layout/KFab.vue +113 -113
  141. package/core/client/components/layout/KLayout.vue +64 -64
  142. package/core/client/components/layout/KOpener.vue +140 -140
  143. package/core/client/components/layout/KPage.vue +320 -320
  144. package/core/client/components/layout/KPageSticky.vue +53 -53
  145. package/core/client/components/layout/KWindow.vue +443 -443
  146. package/core/client/components/layout/index.js +13 -13
  147. package/core/client/components/media/KColorScale.vue +254 -254
  148. package/core/client/components/media/KImageViewer.vue +44 -44
  149. package/core/client/components/media/KMarkdownViewer.vue +55 -55
  150. package/core/client/components/media/KMediaBrowser.vue +301 -340
  151. package/core/client/components/media/KShape.vue +120 -120
  152. package/core/client/components/media/index.js +13 -13
  153. package/core/client/components/menu/KMenu.vue +147 -147
  154. package/core/client/components/menu/KRadialFab.vue +122 -122
  155. package/core/client/components/menu/KRadialFabItem.vue +73 -73
  156. package/core/client/components/menu/index.js +9 -9
  157. package/core/client/components/screen/KEndpointScreen.vue +80 -80
  158. package/core/client/components/screen/KErrorScreen.vue +24 -24
  159. package/core/client/components/screen/KLoginScreen.vue +84 -84
  160. package/core/client/components/screen/KLogoutScreen.vue +20 -20
  161. package/core/client/components/screen/KRegisterScreen.vue +114 -114
  162. package/core/client/components/screen/KScreen.vue +106 -106
  163. package/core/client/components/screen/KScreenFooter.vue +32 -32
  164. package/core/client/components/screen/KScreenHeader.vue +17 -17
  165. package/core/client/components/screen/index.js +5 -5
  166. package/core/client/components/team/KAddMember.vue +375 -375
  167. package/core/client/components/team/KAddTag.vue +121 -121
  168. package/core/client/components/team/KChangeRole.vue +118 -118
  169. package/core/client/components/team/KGroupCard.vue +110 -110
  170. package/core/client/components/team/KGroupsActivity.vue +66 -66
  171. package/core/client/components/team/KJoinGroup.vue +132 -132
  172. package/core/client/components/team/KMemberCard.vue +328 -328
  173. package/core/client/components/team/KMemberFilter.vue +49 -49
  174. package/core/client/components/team/KMembersActivity.vue +126 -126
  175. package/core/client/components/team/KOrganisationsActivity.vue +53 -53
  176. package/core/client/components/team/KTagCard.vue +72 -72
  177. package/core/client/components/team/KTagsActivity.vue +61 -61
  178. package/core/client/components/team/index.js +9 -9
  179. package/core/client/components/time/KAbsoluteTimeRange.vue +183 -183
  180. package/core/client/components/time/KDate.vue +75 -75
  181. package/core/client/components/time/KDateTime.vue +172 -172
  182. package/core/client/components/time/KDateTimeRange.vue +118 -118
  183. package/core/client/components/time/KRelativeTimeRanges.vue +193 -193
  184. package/core/client/components/time/KTime.vue +74 -74
  185. package/core/client/components/time/index.js +7 -7
  186. package/core/client/components/viewer/KModalViewer.vue +47 -47
  187. package/core/client/components/viewer/KViewer.vue +30 -30
  188. package/core/client/composables/activity.js +67 -67
  189. package/core/client/composables/collection.js +181 -181
  190. package/core/client/composables/index.js +8 -8
  191. package/core/client/composables/pwa.js +71 -71
  192. package/core/client/composables/schema.js +64 -64
  193. package/core/client/composables/selection.js +88 -88
  194. package/core/client/composables/session.js +172 -172
  195. package/core/client/composables/store.js +49 -49
  196. package/core/client/composables/version.js +47 -47
  197. package/core/client/events.js +3 -3
  198. package/core/client/filter.js +60 -60
  199. package/core/client/guards.js +101 -101
  200. package/core/client/hooks/hooks.events.js +7 -7
  201. package/core/client/hooks/hooks.logger.js +24 -24
  202. package/core/client/hooks/hooks.users.js +22 -22
  203. package/core/client/hooks/index.js +3 -3
  204. package/core/client/i18n/core_en.json +845 -845
  205. package/core/client/i18n/core_fr.json +843 -843
  206. package/core/client/i18n.js +88 -88
  207. package/core/client/index.js +84 -84
  208. package/core/client/layout.js +323 -323
  209. package/core/client/local-storage.js +28 -28
  210. package/core/client/mixins/index.js +12 -12
  211. package/core/client/mixins/mixin.account.js +61 -61
  212. package/core/client/mixins/mixin.base-activity.js +232 -232
  213. package/core/client/mixins/mixin.base-collection.js +162 -162
  214. package/core/client/mixins/mixin.base-context.js +54 -54
  215. package/core/client/mixins/mixin.base-editor.js +194 -194
  216. package/core/client/mixins/mixin.base-field.js +105 -105
  217. package/core/client/mixins/mixin.base-item.js +166 -166
  218. package/core/client/mixins/mixin.base-modal.js +36 -36
  219. package/core/client/mixins/mixin.base-viewer.js +43 -43
  220. package/core/client/mixins/mixin.object-proxy.js +46 -46
  221. package/core/client/mixins/mixin.schema-proxy.js +97 -97
  222. package/core/client/mixins/mixin.service.js +22 -22
  223. package/core/client/reader.js +65 -65
  224. package/core/client/readers/index.js +3 -3
  225. package/core/client/readers/reader.blob.js +39 -39
  226. package/core/client/readers/reader.csv.js +36 -36
  227. package/core/client/readers/reader.json.js +34 -34
  228. package/core/client/search.js +47 -47
  229. package/core/client/services/index.js +49 -49
  230. package/core/client/services/local-settings.service.js +67 -67
  231. package/core/client/sorter.js +31 -31
  232. package/core/client/storage.js +110 -102
  233. package/core/client/store.js +39 -39
  234. package/core/client/theme.js +40 -40
  235. package/core/client/time.js +167 -167
  236. package/core/client/units.js +218 -218
  237. package/core/client/utils/index.js +203 -203
  238. package/core/client/utils/utils.account.js +52 -52
  239. package/core/client/utils/utils.colors.js +36 -36
  240. package/core/client/utils/utils.content.js +185 -185
  241. package/core/client/utils/utils.locale.js +28 -28
  242. package/core/client/utils/utils.platform.js +11 -11
  243. package/core/client/utils/utils.push.js +53 -53
  244. package/core/client/utils/utils.pwa.js +62 -62
  245. package/core/client/utils/utils.session.js +89 -89
  246. package/core/common/errors.js +1 -1
  247. package/core/common/index.js +10 -10
  248. package/core/common/permissions.js +318 -318
  249. package/core/common/schema.js +35 -35
  250. package/core/common/schemas/groups.create.json +28 -28
  251. package/core/common/schemas/groups.update.json +28 -28
  252. package/core/common/schemas/organisations.create.json +28 -28
  253. package/core/common/schemas/organisations.update.json +49 -49
  254. package/core/common/schemas/settings.update.json +234 -234
  255. package/core/common/schemas/tags.create.json +35 -35
  256. package/core/common/schemas/tags.update.json +35 -35
  257. package/core/common/schemas/users.update-profile.json +33 -33
  258. package/core/common/utils.js +45 -45
  259. package/core.api.js +5 -5
  260. package/core.client.js +5 -5
  261. package/core.common.js +1 -1
  262. package/extras/css/core.variables.scss +38 -38
  263. package/extras/icons/center-on-feature.svg +315 -315
  264. package/extras/icons/json.svg +83 -83
  265. package/extras/icons/map-legend.svg +251 -251
  266. package/extras/icons/target.svg +37 -37
  267. package/extras/tours/core/account-profile.js +32 -32
  268. package/extras/tours/core/account.js +143 -143
  269. package/extras/tours/core/add-member.js +74 -74
  270. package/extras/tours/core/add-tag.js +12 -12
  271. package/extras/tours/core/create-group.js +19 -19
  272. package/extras/tours/core/create-organisation.js +19 -19
  273. package/extras/tours/core/create-tag.js +26 -26
  274. package/extras/tours/core/edit-member-role.js +13 -13
  275. package/extras/tours/core/groups.js +65 -65
  276. package/extras/tours/core/join-group.js +13 -13
  277. package/extras/tours/core/login.js +41 -41
  278. package/extras/tours/core/members.js +108 -108
  279. package/extras/tours/core/register.js +61 -61
  280. package/extras/tours/core/send-reset-password.js +14 -14
  281. package/extras/tours/core/tags.js +65 -65
  282. package/extras/tours/map/add-layer.js +28 -28
  283. package/extras/tours/map/catalog-categories.js +59 -59
  284. package/extras/tours/map/catalog-panel.js +112 -112
  285. package/extras/tours/map/connect-layer.js +39 -39
  286. package/extras/tours/map/create-layer.js +33 -33
  287. package/extras/tours/map/create-view.js +25 -25
  288. package/extras/tours/map/fab.js +26 -26
  289. package/extras/tours/map/import-layer.js +33 -33
  290. package/extras/tours/map/navigation-bar.js +185 -185
  291. package/extras/tours/map/side-nav.js +35 -35
  292. package/extras/tours/map/timeline.js +77 -77
  293. package/map/api/config/categories.cjs +42 -42
  294. package/map/api/config/layers.cjs +43 -43
  295. package/map/api/config/sublegends.cjs +42 -42
  296. package/map/api/hooks/hooks.catalog.js +85 -85
  297. package/map/api/hooks/hooks.features.js +84 -84
  298. package/map/api/hooks/hooks.query.js +361 -361
  299. package/map/api/hooks/index.js +3 -3
  300. package/map/api/index.js +18 -18
  301. package/map/api/marshall.js +31 -31
  302. package/map/api/models/alerts.model.mongodb.js +7 -7
  303. package/map/api/models/catalog.model.mongodb.js +14 -14
  304. package/map/api/models/features.model.mongodb.js +37 -37
  305. package/map/api/services/alerts/alerts.hooks.js +63 -63
  306. package/map/api/services/alerts/alerts.service.js +175 -175
  307. package/map/api/services/catalog/catalog.hooks.js +76 -76
  308. package/map/api/services/daptiles/daptiles.service.js +475 -475
  309. package/map/api/services/features/features.hooks.js +40 -40
  310. package/map/api/services/features/features.service.js +52 -52
  311. package/map/api/services/geocoder/geocoder.hooks.js +31 -31
  312. package/map/api/services/geocoder/geocoder.service.js +79 -79
  313. package/map/api/services/index.js +228 -228
  314. package/map/client/canvas-draw-context.js +16 -16
  315. package/map/client/cesium/utils.js +133 -133
  316. package/map/client/components/KCaptureToolbar.vue +155 -155
  317. package/map/client/components/KColorLegend.vue +349 -349
  318. package/map/client/components/KCompass.vue +143 -143
  319. package/map/client/components/KEditLayerData.vue +85 -85
  320. package/map/client/components/KFeatureActionButton.vue +119 -119
  321. package/map/client/components/KFeatureEditor.vue +92 -92
  322. package/map/client/components/KFeaturesChart.vue +285 -285
  323. package/map/client/components/KFeaturesFilter.vue +259 -259
  324. package/map/client/components/KFeaturesTable.vue +99 -99
  325. package/map/client/components/KLayerEditionToolbar.vue +54 -54
  326. package/map/client/components/KLayerEditor.vue +48 -48
  327. package/map/client/components/KLayerStyleEditor.vue +118 -118
  328. package/map/client/components/KLayerStyleForm.vue +906 -906
  329. package/map/client/components/KLevelSlider.vue +100 -100
  330. package/map/client/components/KMeasureTool.vue +568 -568
  331. package/map/client/components/KPositionIndicator.vue +90 -90
  332. package/map/client/components/KTimeline.vue +293 -293
  333. package/map/client/components/KTimezoneMap.vue +158 -158
  334. package/map/client/components/KUrlLegend.vue +122 -122
  335. package/map/client/components/catalog/KAddLayer.vue +66 -66
  336. package/map/client/components/catalog/KBaseLayersSelector.vue +114 -114
  337. package/map/client/components/catalog/KConnectLayer.vue +323 -323
  338. package/map/client/components/catalog/KCreateLayer.vue +184 -184
  339. package/map/client/components/catalog/KCreateView.vue +108 -108
  340. package/map/client/components/catalog/KFilteredLayerItem.vue +53 -53
  341. package/map/client/components/catalog/KImportLayer.vue +168 -168
  342. package/map/client/components/catalog/KLayerCategories.vue +274 -274
  343. package/map/client/components/catalog/KLayerItem.vue +70 -70
  344. package/map/client/components/catalog/KLayersPanel.vue +137 -137
  345. package/map/client/components/catalog/KLayersSelector.vue +78 -78
  346. package/map/client/components/catalog/KViewSelector.vue +46 -46
  347. package/map/client/components/catalog/KViewsPanel.vue +123 -123
  348. package/map/client/components/catalog/KWeatherLayersSelector.vue +129 -129
  349. package/map/client/components/form/KDirectionField.vue +113 -113
  350. package/map/client/components/form/KLayerCategoryField.vue +46 -46
  351. package/map/client/components/form/KLocationField.vue +189 -189
  352. package/map/client/components/form/KOwsLayerField.vue +130 -130
  353. package/map/client/components/form/KOwsServiceField.vue +238 -238
  354. package/map/client/components/form/KTimezoneField.vue +142 -142
  355. package/map/client/components/index.js +1 -1
  356. package/map/client/components/legend/KColorScaleLegend.vue +31 -31
  357. package/map/client/components/legend/KImageLegend.vue +52 -52
  358. package/map/client/components/legend/KLegend.vue +191 -191
  359. package/map/client/components/legend/KLegendRenderer.vue +20 -20
  360. package/map/client/components/legend/KSymbolsLegend.vue +101 -101
  361. package/map/client/components/location/KGeocodersFilter.vue +44 -44
  362. package/map/client/components/location/KLocationCardSection.vue +61 -61
  363. package/map/client/components/location/KLocationMap.vue +280 -280
  364. package/map/client/components/location/KLocationSearch.vue +144 -144
  365. package/map/client/components/location/KLocationTip.vue +29 -29
  366. package/map/client/components/tools/KGeolocateTool.vue +46 -46
  367. package/map/client/components/tools/KSearchTool.vue +93 -93
  368. package/map/client/components/widget/KElevationProfile.vue +454 -454
  369. package/map/client/components/widget/KInformationBox.vue +145 -145
  370. package/map/client/components/widget/KMapillaryViewer.vue +178 -178
  371. package/map/client/components/widget/KStackableTimeSeries.vue +214 -214
  372. package/map/client/components/widget/KTimeSeries.vue +500 -500
  373. package/map/client/composables/activity.js +88 -88
  374. package/map/client/composables/highlight.js +214 -214
  375. package/map/client/composables/index.js +7 -7
  376. package/map/client/composables/location.js +53 -53
  377. package/map/client/composables/measure.js +42 -42
  378. package/map/client/composables/probe.js +133 -133
  379. package/map/client/composables/selection.js +300 -300
  380. package/map/client/composables/weather.js +213 -213
  381. package/map/client/elevation-utils.js +258 -258
  382. package/map/client/geolocation.js +119 -119
  383. package/map/client/globe.js +13 -13
  384. package/map/client/i18n/map_en.json +645 -645
  385. package/map/client/i18n/map_fr.json +646 -646
  386. package/map/client/index.js +18 -18
  387. package/map/client/init.js +80 -80
  388. package/map/client/leaflet/GSMaPLayer.js +55 -55
  389. package/map/client/leaflet/GradientPath.js +180 -180
  390. package/map/client/leaflet/MaskLayer.js +57 -57
  391. package/map/client/leaflet/TiledFeatureLayer.js +572 -572
  392. package/map/client/leaflet/TiledMeshLayer.js +486 -486
  393. package/map/client/leaflet/TiledWindLayer.js +384 -384
  394. package/map/client/leaflet/utils.js +246 -246
  395. package/map/client/map.js +15 -15
  396. package/map/client/mixins/globe/index.js +8 -8
  397. package/map/client/mixins/globe/mixin.base-globe.js +462 -462
  398. package/map/client/mixins/globe/mixin.file-layers.js +40 -40
  399. package/map/client/mixins/globe/mixin.geojson-layers.js +314 -314
  400. package/map/client/mixins/globe/mixin.globe-activity.js +52 -52
  401. package/map/client/mixins/globe/mixin.opendap-layers.js +51 -51
  402. package/map/client/mixins/globe/mixin.popup.js +82 -82
  403. package/map/client/mixins/globe/mixin.style.js +110 -110
  404. package/map/client/mixins/globe/mixin.tooltip.js +101 -101
  405. package/map/client/mixins/index.js +9 -9
  406. package/map/client/mixins/map/index.js +16 -16
  407. package/map/client/mixins/map/mixin.base-map.js +592 -592
  408. package/map/client/mixins/map/mixin.canvas-layers.js +529 -529
  409. package/map/client/mixins/map/mixin.edit-layers.js +493 -474
  410. package/map/client/mixins/map/mixin.file-layers.js +49 -49
  411. package/map/client/mixins/map/mixin.forecast-layers.js +79 -79
  412. package/map/client/mixins/map/mixin.geojson-layers.js +557 -557
  413. package/map/client/mixins/map/mixin.georaster-layers.js +114 -114
  414. package/map/client/mixins/map/mixin.gsmap-layers.js +27 -27
  415. package/map/client/mixins/map/mixin.heatmap-layers.js +116 -116
  416. package/map/client/mixins/map/mixin.map-activity.js +38 -38
  417. package/map/client/mixins/map/mixin.mapillary-layers.js +45 -45
  418. package/map/client/mixins/map/mixin.popup.js +53 -53
  419. package/map/client/mixins/map/mixin.style.js +73 -73
  420. package/map/client/mixins/map/mixin.tiled-mesh-layers.js +120 -120
  421. package/map/client/mixins/map/mixin.tiled-wind-layers.js +126 -126
  422. package/map/client/mixins/map/mixin.tooltip.js +47 -47
  423. package/map/client/mixins/mixin.activity.js +477 -477
  424. package/map/client/mixins/mixin.catalog-panel.js +26 -26
  425. package/map/client/mixins/mixin.context.js +262 -262
  426. package/map/client/mixins/mixin.feature-selection.js +28 -28
  427. package/map/client/mixins/mixin.feature-service.js +403 -403
  428. package/map/client/mixins/mixin.infobox.js +29 -29
  429. package/map/client/mixins/mixin.levels.js +66 -66
  430. package/map/client/mixins/mixin.style.js +29 -29
  431. package/map/client/mixins/mixin.weacast.js +212 -212
  432. package/map/client/pixi-utils.js +256 -256
  433. package/map/client/readers/index.js +4 -4
  434. package/map/client/readers/reader.geojson.js +64 -64
  435. package/map/client/readers/reader.gpx.js +36 -36
  436. package/map/client/readers/reader.kml.js +36 -36
  437. package/map/client/readers/reader.shp.js +82 -82
  438. package/map/client/utils/index.js +3 -3
  439. package/map/client/utils/utils.js +228 -228
  440. package/map/client/utils/utils.location.js +45 -45
  441. package/map/client/utils/utils.schema.js +75 -75
  442. package/map/client/utils.all.js +3 -3
  443. package/map/client/utils.globe.js +2 -2
  444. package/map/client/utils.js +4 -4
  445. package/map/client/utils.map.js +2 -2
  446. package/map/common/dynamic-grid-source.js +127 -127
  447. package/map/common/errors.js +3 -3
  448. package/map/common/geotiff-grid-source.js +150 -150
  449. package/map/common/grid.js +509 -509
  450. package/map/common/index.js +29 -29
  451. package/map/common/meteo-model-grid-source.js +157 -157
  452. package/map/common/moment-utils.js +24 -24
  453. package/map/common/opendap-grid-source.js +261 -261
  454. package/map/common/opendap-utils.js +247 -247
  455. package/map/common/permissions.js +11 -11
  456. package/map/common/schemas/catalog.update.json +28 -28
  457. package/map/common/time-based-grid-source.js +111 -111
  458. package/map/common/tms-utils.js +63 -63
  459. package/map/common/wcs-grid-source.js +93 -93
  460. package/map/common/wcs-utils.js +167 -167
  461. package/map/common/weacast-grid-source.js +316 -316
  462. package/map/common/wfs-utils.js +163 -163
  463. package/map/common/wms-utils.js +117 -117
  464. package/map/common/wmts-utils.js +154 -154
  465. package/map.api.js +5 -5
  466. package/map.client.globe.js +5 -5
  467. package/map.client.js +5 -5
  468. package/map.client.map.js +5 -5
  469. package/map.common.js +1 -1
  470. package/map.config.cjs +9 -9
  471. package/package.json +161 -161
  472. package/test/api/core/account.test.js +485 -485
  473. package/test/api/core/client.test.js.skip +37 -37
  474. package/test/api/core/config/default.cjs +118 -118
  475. package/test/api/core/config/email-templates/confirmInvitation/html.ejs +18 -18
  476. package/test/api/core/config/email-templates/identityChange/html.ejs +14 -14
  477. package/test/api/core/config/email-templates/newDevice/html.ejs +7 -7
  478. package/test/api/core/config/email-templates/newSubscription/html.ejs +7 -7
  479. package/test/api/core/config/email-templates/passwordChange/html.ejs +5 -5
  480. package/test/api/core/config/email-templates/resendVerifySignup/html.ejs +12 -12
  481. package/test/api/core/config/email-templates/resetPwd/html.ejs +5 -5
  482. package/test/api/core/config/email-templates/sendResetPwd/html.ejs +12 -12
  483. package/test/api/core/config/email-templates/verifySignup/html.ejs +3 -3
  484. package/test/api/core/data/invalid-objects.json +59 -59
  485. package/test/api/core/data/schema.json +57 -57
  486. package/test/api/core/data/valid-objects.json +37 -37
  487. package/test/api/core/hooks.test.js +330 -330
  488. package/test/api/core/index.js +1 -1
  489. package/test/api/core/index.test.js +478 -478
  490. package/test/api/core/push.test.js +197 -197
  491. package/test/api/core/schemas.test.js +82 -82
  492. package/test/api/core/storage.test.js +153 -153
  493. package/test/api/core/team.test.js +670 -670
  494. package/test/api/core/utils.js +92 -92
  495. package/test/api/index.js +3 -3
  496. package/test/api/map/alerts.test.js +560 -560
  497. package/test/api/map/config/default.cjs +125 -125
  498. package/test/api/map/config/layers.json +38 -38
  499. package/test/api/map/data/DescribeCoverage.xml +54 -54
  500. package/test/api/map/data/adsb.observations.json +131 -131
  501. package/test/api/map/data/dataset.grb.das +55 -55
  502. package/test/api/map/data/dataset.grb.dds +17 -17
  503. package/test/api/map/data/vigicrues.observations.json +47041 -47041
  504. package/test/api/map/data/vigicrues.stations.json +15421 -15421
  505. package/test/api/map/data/zones.json +1227 -1227
  506. package/test/api/map/grid-sources.test.js +313 -313
  507. package/test/api/map/hooks.test.js +98 -98
  508. package/test/api/map/index.test.js +563 -563
  509. package/test/client/core/account.js +36 -36
  510. package/test/client/core/api.js +361 -361
  511. package/test/client/core/collection.js +64 -64
  512. package/test/client/core/index.js +8 -8
  513. package/test/client/core/layout.js +116 -116
  514. package/test/client/core/runner.js +224 -224
  515. package/test/client/core/screens.js +35 -35
  516. package/test/client/core/time.js +10 -10
  517. package/test/client/core/utils.js +260 -260
  518. package/test/client/index.js +3 -3
  519. package/test/client/map/catalog.js +193 -193
  520. package/test/client/map/controls.js +41 -41
  521. package/test/client/map/index.js +4 -4
  522. package/test/client/map/time.js +24 -24
  523. package/test/client/map/utils.js +27 -27
  524. package/coverage/base.css +0 -224
  525. package/coverage/block-navigation.js +0 -87
  526. package/coverage/core/api/application.js.html +0 -1789
  527. package/coverage/core/api/authentication.js.html +0 -694
  528. package/coverage/core/api/db.js.html +0 -751
  529. package/coverage/core/api/hooks/hooks.account.js.html +0 -169
  530. package/coverage/core/api/hooks/hooks.authentication.js.html +0 -274
  531. package/coverage/core/api/hooks/hooks.authorisations.js.html +0 -1201
  532. package/coverage/core/api/hooks/hooks.devices.js.html +0 -211
  533. package/coverage/core/api/hooks/hooks.groups.js.html +0 -229
  534. package/coverage/core/api/hooks/hooks.logger.js.html +0 -163
  535. package/coverage/core/api/hooks/hooks.model.js.html +0 -988
  536. package/coverage/core/api/hooks/hooks.organisations.js.html +0 -823
  537. package/coverage/core/api/hooks/hooks.pusher.js.html +0 -730
  538. package/coverage/core/api/hooks/hooks.query.js.html +0 -838
  539. package/coverage/core/api/hooks/hooks.schemas.js.html +0 -244
  540. package/coverage/core/api/hooks/hooks.service.js.html +0 -319
  541. package/coverage/core/api/hooks/hooks.storage.js.html +0 -193
  542. package/coverage/core/api/hooks/hooks.tags.js.html +0 -850
  543. package/coverage/core/api/hooks/hooks.users.js.html +0 -889
  544. package/coverage/core/api/hooks/index.html +0 -341
  545. package/coverage/core/api/hooks/index.js.html +0 -130
  546. package/coverage/core/api/index.html +0 -176
  547. package/coverage/core/api/index.js.html +0 -148
  548. package/coverage/core/api/marshall.js.html +0 -355
  549. package/coverage/core/api/models/groups.model.mongodb.js.html +0 -109
  550. package/coverage/core/api/models/index.html +0 -161
  551. package/coverage/core/api/models/organisations.model.mongodb.js.html +0 -94
  552. package/coverage/core/api/models/tags.model.mongodb.js.html +0 -115
  553. package/coverage/core/api/models/users.model.mongodb.js.html +0 -115
  554. package/coverage/core/api/oauth2-handler.js.html +0 -202
  555. package/coverage/core/api/oauth2-verifier.js.html +0 -355
  556. package/coverage/core/api/services/account/account.hooks.js.html +0 -196
  557. package/coverage/core/api/services/account/account.service.js.html +0 -448
  558. package/coverage/core/api/services/account/index.html +0 -131
  559. package/coverage/core/api/services/authorisations/authorisations.hooks.js.html +0 -184
  560. package/coverage/core/api/services/authorisations/authorisations.service.js.html +0 -502
  561. package/coverage/core/api/services/authorisations/index.html +0 -131
  562. package/coverage/core/api/services/databases/databases.hooks.js.html +0 -193
  563. package/coverage/core/api/services/databases/databases.service.js.html +0 -100
  564. package/coverage/core/api/services/databases/index.html +0 -131
  565. package/coverage/core/api/services/devices/devices.hooks.js.html +0 -190
  566. package/coverage/core/api/services/devices/devices.service.js.html +0 -382
  567. package/coverage/core/api/services/devices/index.html +0 -131
  568. package/coverage/core/api/services/groups/groups.hooks.js.html +0 -184
  569. package/coverage/core/api/services/groups/index.html +0 -116
  570. package/coverage/core/api/services/index.html +0 -116
  571. package/coverage/core/api/services/index.js.html +0 -472
  572. package/coverage/core/api/services/mailer/index.html +0 -131
  573. package/coverage/core/api/services/mailer/mailer.hooks.js.html +0 -190
  574. package/coverage/core/api/services/mailer/mailer.service.js.html +0 -118
  575. package/coverage/core/api/services/organisations/index.html +0 -131
  576. package/coverage/core/api/services/organisations/organisations.hooks.js.html +0 -178
  577. package/coverage/core/api/services/organisations/organisations.service.js.html +0 -319
  578. package/coverage/core/api/services/pusher/index.html +0 -146
  579. package/coverage/core/api/services/pusher/pusher.channels.js.html +0 -94
  580. package/coverage/core/api/services/pusher/pusher.hooks.js.html +0 -193
  581. package/coverage/core/api/services/pusher/pusher.service.js.html +0 -1420
  582. package/coverage/core/api/services/storage/index.html +0 -131
  583. package/coverage/core/api/services/storage/storage.hooks.js.html +0 -190
  584. package/coverage/core/api/services/storage/storage.service.js.html +0 -172
  585. package/coverage/core/api/services/tags/index.html +0 -116
  586. package/coverage/core/api/services/tags/tags.hooks.js.html +0 -220
  587. package/coverage/core/api/services/users/index.html +0 -116
  588. package/coverage/core/api/services/users/users.hooks.js.html +0 -313
  589. package/coverage/core/common/errors.js.html +0 -88
  590. package/coverage/core/common/index.html +0 -176
  591. package/coverage/core/common/index.js.html +0 -115
  592. package/coverage/core/common/permissions.js.html +0 -1015
  593. package/coverage/core/common/schema.js.html +0 -190
  594. package/coverage/core/common/utils.js.html +0 -220
  595. package/coverage/favicon.png +0 -0
  596. package/coverage/index.html +0 -491
  597. package/coverage/lcov-report/base.css +0 -224
  598. package/coverage/lcov-report/block-navigation.js +0 -87
  599. package/coverage/lcov-report/core/api/application.js.html +0 -1789
  600. package/coverage/lcov-report/core/api/authentication.js.html +0 -694
  601. package/coverage/lcov-report/core/api/db.js.html +0 -751
  602. package/coverage/lcov-report/core/api/hooks/hooks.account.js.html +0 -169
  603. package/coverage/lcov-report/core/api/hooks/hooks.authentication.js.html +0 -274
  604. package/coverage/lcov-report/core/api/hooks/hooks.authorisations.js.html +0 -1201
  605. package/coverage/lcov-report/core/api/hooks/hooks.devices.js.html +0 -211
  606. package/coverage/lcov-report/core/api/hooks/hooks.groups.js.html +0 -229
  607. package/coverage/lcov-report/core/api/hooks/hooks.logger.js.html +0 -163
  608. package/coverage/lcov-report/core/api/hooks/hooks.model.js.html +0 -988
  609. package/coverage/lcov-report/core/api/hooks/hooks.organisations.js.html +0 -823
  610. package/coverage/lcov-report/core/api/hooks/hooks.pusher.js.html +0 -730
  611. package/coverage/lcov-report/core/api/hooks/hooks.query.js.html +0 -838
  612. package/coverage/lcov-report/core/api/hooks/hooks.schemas.js.html +0 -244
  613. package/coverage/lcov-report/core/api/hooks/hooks.service.js.html +0 -319
  614. package/coverage/lcov-report/core/api/hooks/hooks.storage.js.html +0 -193
  615. package/coverage/lcov-report/core/api/hooks/hooks.tags.js.html +0 -850
  616. package/coverage/lcov-report/core/api/hooks/hooks.users.js.html +0 -889
  617. package/coverage/lcov-report/core/api/hooks/index.html +0 -341
  618. package/coverage/lcov-report/core/api/hooks/index.js.html +0 -130
  619. package/coverage/lcov-report/core/api/index.html +0 -176
  620. package/coverage/lcov-report/core/api/index.js.html +0 -148
  621. package/coverage/lcov-report/core/api/marshall.js.html +0 -355
  622. package/coverage/lcov-report/core/api/models/groups.model.mongodb.js.html +0 -109
  623. package/coverage/lcov-report/core/api/models/index.html +0 -161
  624. package/coverage/lcov-report/core/api/models/organisations.model.mongodb.js.html +0 -94
  625. package/coverage/lcov-report/core/api/models/tags.model.mongodb.js.html +0 -115
  626. package/coverage/lcov-report/core/api/models/users.model.mongodb.js.html +0 -115
  627. package/coverage/lcov-report/core/api/oauth2-handler.js.html +0 -202
  628. package/coverage/lcov-report/core/api/oauth2-verifier.js.html +0 -355
  629. package/coverage/lcov-report/core/api/services/account/account.hooks.js.html +0 -196
  630. package/coverage/lcov-report/core/api/services/account/account.service.js.html +0 -448
  631. package/coverage/lcov-report/core/api/services/account/index.html +0 -131
  632. package/coverage/lcov-report/core/api/services/authorisations/authorisations.hooks.js.html +0 -184
  633. package/coverage/lcov-report/core/api/services/authorisations/authorisations.service.js.html +0 -502
  634. package/coverage/lcov-report/core/api/services/authorisations/index.html +0 -131
  635. package/coverage/lcov-report/core/api/services/databases/databases.hooks.js.html +0 -193
  636. package/coverage/lcov-report/core/api/services/databases/databases.service.js.html +0 -100
  637. package/coverage/lcov-report/core/api/services/databases/index.html +0 -131
  638. package/coverage/lcov-report/core/api/services/devices/devices.hooks.js.html +0 -190
  639. package/coverage/lcov-report/core/api/services/devices/devices.service.js.html +0 -382
  640. package/coverage/lcov-report/core/api/services/devices/index.html +0 -131
  641. package/coverage/lcov-report/core/api/services/groups/groups.hooks.js.html +0 -184
  642. package/coverage/lcov-report/core/api/services/groups/index.html +0 -116
  643. package/coverage/lcov-report/core/api/services/index.html +0 -116
  644. package/coverage/lcov-report/core/api/services/index.js.html +0 -472
  645. package/coverage/lcov-report/core/api/services/mailer/index.html +0 -131
  646. package/coverage/lcov-report/core/api/services/mailer/mailer.hooks.js.html +0 -190
  647. package/coverage/lcov-report/core/api/services/mailer/mailer.service.js.html +0 -118
  648. package/coverage/lcov-report/core/api/services/organisations/index.html +0 -131
  649. package/coverage/lcov-report/core/api/services/organisations/organisations.hooks.js.html +0 -178
  650. package/coverage/lcov-report/core/api/services/organisations/organisations.service.js.html +0 -319
  651. package/coverage/lcov-report/core/api/services/pusher/index.html +0 -146
  652. package/coverage/lcov-report/core/api/services/pusher/pusher.channels.js.html +0 -94
  653. package/coverage/lcov-report/core/api/services/pusher/pusher.hooks.js.html +0 -193
  654. package/coverage/lcov-report/core/api/services/pusher/pusher.service.js.html +0 -1420
  655. package/coverage/lcov-report/core/api/services/storage/index.html +0 -131
  656. package/coverage/lcov-report/core/api/services/storage/storage.hooks.js.html +0 -190
  657. package/coverage/lcov-report/core/api/services/storage/storage.service.js.html +0 -172
  658. package/coverage/lcov-report/core/api/services/tags/index.html +0 -116
  659. package/coverage/lcov-report/core/api/services/tags/tags.hooks.js.html +0 -220
  660. package/coverage/lcov-report/core/api/services/users/index.html +0 -116
  661. package/coverage/lcov-report/core/api/services/users/users.hooks.js.html +0 -313
  662. package/coverage/lcov-report/core/common/errors.js.html +0 -88
  663. package/coverage/lcov-report/core/common/index.html +0 -176
  664. package/coverage/lcov-report/core/common/index.js.html +0 -115
  665. package/coverage/lcov-report/core/common/permissions.js.html +0 -1015
  666. package/coverage/lcov-report/core/common/schema.js.html +0 -190
  667. package/coverage/lcov-report/core/common/utils.js.html +0 -220
  668. package/coverage/lcov-report/favicon.png +0 -0
  669. package/coverage/lcov-report/index.html +0 -491
  670. package/coverage/lcov-report/map/api/hooks/hooks.catalog.js.html +0 -340
  671. package/coverage/lcov-report/map/api/hooks/hooks.features.js.html +0 -337
  672. package/coverage/lcov-report/map/api/hooks/hooks.query.js.html +0 -1162
  673. package/coverage/lcov-report/map/api/hooks/index.html +0 -161
  674. package/coverage/lcov-report/map/api/hooks/index.js.html +0 -94
  675. package/coverage/lcov-report/map/api/index.html +0 -131
  676. package/coverage/lcov-report/map/api/index.js.html +0 -139
  677. package/coverage/lcov-report/map/api/marshall.js.html +0 -178
  678. package/coverage/lcov-report/map/api/models/alerts.model.mongodb.js.html +0 -106
  679. package/coverage/lcov-report/map/api/models/catalog.model.mongodb.js.html +0 -127
  680. package/coverage/lcov-report/map/api/models/features.model.mongodb.js.html +0 -202
  681. package/coverage/lcov-report/map/api/models/index.html +0 -146
  682. package/coverage/lcov-report/map/api/services/alerts/alerts.hooks.js.html +0 -274
  683. package/coverage/lcov-report/map/api/services/alerts/alerts.service.js.html +0 -610
  684. package/coverage/lcov-report/map/api/services/alerts/index.html +0 -131
  685. package/coverage/lcov-report/map/api/services/catalog/catalog.hooks.js.html +0 -313
  686. package/coverage/lcov-report/map/api/services/catalog/index.html +0 -116
  687. package/coverage/lcov-report/map/api/services/daptiles/daptiles.service.js.html +0 -1510
  688. package/coverage/lcov-report/map/api/services/daptiles/index.html +0 -116
  689. package/coverage/lcov-report/map/api/services/features/features.hooks.js.html +0 -205
  690. package/coverage/lcov-report/map/api/services/features/features.service.js.html +0 -241
  691. package/coverage/lcov-report/map/api/services/features/index.html +0 -131
  692. package/coverage/lcov-report/map/api/services/geocoder/geocoder.hooks.js.html +0 -178
  693. package/coverage/lcov-report/map/api/services/geocoder/geocoder.service.js.html +0 -322
  694. package/coverage/lcov-report/map/api/services/geocoder/index.html +0 -131
  695. package/coverage/lcov-report/map/api/services/index.html +0 -116
  696. package/coverage/lcov-report/map/api/services/index.js.html +0 -760
  697. package/coverage/lcov-report/map/common/dynamic-grid-source.js.html +0 -466
  698. package/coverage/lcov-report/map/common/errors.js.html +0 -94
  699. package/coverage/lcov-report/map/common/geotiff-grid-source.js.html +0 -535
  700. package/coverage/lcov-report/map/common/grid.js.html +0 -1612
  701. package/coverage/lcov-report/map/common/index.html +0 -371
  702. package/coverage/lcov-report/map/common/index.js.html +0 -172
  703. package/coverage/lcov-report/map/common/meteo-model-grid-source.js.html +0 -556
  704. package/coverage/lcov-report/map/common/moment-utils.js.html +0 -157
  705. package/coverage/lcov-report/map/common/opendap-grid-source.js.html +0 -868
  706. package/coverage/lcov-report/map/common/opendap-utils.js.html +0 -826
  707. package/coverage/lcov-report/map/common/permissions.js.html +0 -118
  708. package/coverage/lcov-report/map/common/time-based-grid-source.js.html +0 -418
  709. package/coverage/lcov-report/map/common/tms-utils.js.html +0 -274
  710. package/coverage/lcov-report/map/common/wcs-grid-source.js.html +0 -364
  711. package/coverage/lcov-report/map/common/wcs-utils.js.html +0 -586
  712. package/coverage/lcov-report/map/common/weacast-grid-source.js.html +0 -1033
  713. package/coverage/lcov-report/map/common/wfs-utils.js.html +0 -574
  714. package/coverage/lcov-report/map/common/wms-utils.js.html +0 -436
  715. package/coverage/lcov-report/map/common/wmts-utils.js.html +0 -547
  716. package/coverage/lcov-report/prettify.css +0 -1
  717. package/coverage/lcov-report/prettify.js +0 -2
  718. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  719. package/coverage/lcov-report/sorter.js +0 -196
  720. package/coverage/lcov.info +0 -12501
  721. package/coverage/map/api/hooks/hooks.catalog.js.html +0 -340
  722. package/coverage/map/api/hooks/hooks.features.js.html +0 -337
  723. package/coverage/map/api/hooks/hooks.query.js.html +0 -1162
  724. package/coverage/map/api/hooks/index.html +0 -161
  725. package/coverage/map/api/hooks/index.js.html +0 -94
  726. package/coverage/map/api/index.html +0 -131
  727. package/coverage/map/api/index.js.html +0 -139
  728. package/coverage/map/api/marshall.js.html +0 -178
  729. package/coverage/map/api/models/alerts.model.mongodb.js.html +0 -106
  730. package/coverage/map/api/models/catalog.model.mongodb.js.html +0 -127
  731. package/coverage/map/api/models/features.model.mongodb.js.html +0 -202
  732. package/coverage/map/api/models/index.html +0 -146
  733. package/coverage/map/api/services/alerts/alerts.hooks.js.html +0 -274
  734. package/coverage/map/api/services/alerts/alerts.service.js.html +0 -610
  735. package/coverage/map/api/services/alerts/index.html +0 -131
  736. package/coverage/map/api/services/catalog/catalog.hooks.js.html +0 -313
  737. package/coverage/map/api/services/catalog/index.html +0 -116
  738. package/coverage/map/api/services/daptiles/daptiles.service.js.html +0 -1510
  739. package/coverage/map/api/services/daptiles/index.html +0 -116
  740. package/coverage/map/api/services/features/features.hooks.js.html +0 -205
  741. package/coverage/map/api/services/features/features.service.js.html +0 -241
  742. package/coverage/map/api/services/features/index.html +0 -131
  743. package/coverage/map/api/services/geocoder/geocoder.hooks.js.html +0 -178
  744. package/coverage/map/api/services/geocoder/geocoder.service.js.html +0 -322
  745. package/coverage/map/api/services/geocoder/index.html +0 -131
  746. package/coverage/map/api/services/index.html +0 -116
  747. package/coverage/map/api/services/index.js.html +0 -760
  748. package/coverage/map/common/dynamic-grid-source.js.html +0 -466
  749. package/coverage/map/common/errors.js.html +0 -94
  750. package/coverage/map/common/geotiff-grid-source.js.html +0 -535
  751. package/coverage/map/common/grid.js.html +0 -1612
  752. package/coverage/map/common/index.html +0 -371
  753. package/coverage/map/common/index.js.html +0 -172
  754. package/coverage/map/common/meteo-model-grid-source.js.html +0 -556
  755. package/coverage/map/common/moment-utils.js.html +0 -157
  756. package/coverage/map/common/opendap-grid-source.js.html +0 -868
  757. package/coverage/map/common/opendap-utils.js.html +0 -826
  758. package/coverage/map/common/permissions.js.html +0 -118
  759. package/coverage/map/common/time-based-grid-source.js.html +0 -418
  760. package/coverage/map/common/tms-utils.js.html +0 -274
  761. package/coverage/map/common/wcs-grid-source.js.html +0 -364
  762. package/coverage/map/common/wcs-utils.js.html +0 -586
  763. package/coverage/map/common/weacast-grid-source.js.html +0 -1033
  764. package/coverage/map/common/wfs-utils.js.html +0 -574
  765. package/coverage/map/common/wms-utils.js.html +0 -436
  766. package/coverage/map/common/wmts-utils.js.html +0 -547
  767. package/coverage/prettify.css +0 -1
  768. package/coverage/prettify.js +0 -2
  769. package/coverage/sort-arrow-sprite.png +0 -0
  770. package/coverage/sorter.js +0 -196
  771. package/coverage/tmp/coverage-19264-1684834146599-0.json +0 -1
  772. package/coverage/tmp/coverage-2508-1684834182408-0.json +0 -1
  773. package/coverage/tmp/coverage-25908-1684834189369-0.json +0 -1
  774. package/coverage/tmp/coverage-32364-1684834189420-0.json +0 -1
  775. package/coverage/tmp/coverage-36604-1684834189485-0.json +0 -1
  776. package/coverage/tmp/coverage-40652-1684834182272-0.json +0 -1
  777. package/coverage/tmp/coverage-48484-1684834182342-0.json +0 -1
  778. package/coverage/tmp/coverage-51652-1684834189584-0.json +0 -1
  779. package/coverage/tmp/coverage-9776-1684834189519-0.json +0 -1
  780. package/test/api/core/test-log-2023-06-05.log +0 -0
  781. package/test/api/map/test-log-2022-12-01.log +0 -19
  782. package/test/api/map/test-log-2023-01-05.log +0 -4
  783. package/test/api/map/test-log-2023-01-09.log +0 -3
  784. package/test/api/map/test-log-2023-02-05.log +0 -11
  785. package/test/api/map/test-log-2023-02-14.log +0 -82
  786. package/test/api/map/test-log-2023-02-28.log +0 -28
  787. package/test/api/map/test-log-2023-03-02.log +0 -11
  788. package/test/api/map/test-log-2023-03-06.log +0 -11
  789. package/test/api/map/test-log-2023-03-07.log +0 -61
  790. package/test/api/map/test-log-2023-03-31.log +0 -11
  791. package/test/api/map/test-log-2023-05-23.log +0 -11
  792. package/test/api/map/test-log-2023-05-24.log +0 -11
@@ -1,845 +1,845 @@
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": "The server connection has been restaured, you can refresh the application in case data has been updated during the disconnection.",
130
- "RELOAD": "Refresh",
131
- "REFUSED": "Your connection have been refused by the server, you have been disconnected...",
132
- "IGNORE": "Ignore",
133
- "RETRY": "Retry",
134
- "ALERT": "Alert",
135
- "INFORMATION": "Information"
136
- },
137
- "pwa": {
138
- "INSTALL_TITLE": "Install the application ?",
139
- "INSTALL_MESSAGE": "We recommend that you install the application to take full advantage of all the features",
140
- "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>",
141
- "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.",
142
- "INSTALL": "Install",
143
- "IGNORE": "Ignore",
144
- "UPDATE_TITLE": "Update available",
145
- "UPDATE_MESSAGE": "To find out more consult the <a href=\"{changelog}\" target=\"_\">release note</a>",
146
- "UPDATE": "Update"
147
- }
148
- },
149
- "schemas": {
150
- "OBJECT_NAME": "{name}",
151
- "AVATAR_FIELD_LABEL": "Select an avatar",
152
- "NAME_FIELD_LABEL": "Enter your name",
153
- "COLOR_FIELD_LABEL": "Pick a color",
154
- "ORGANISATIONS_CREATE_TITLE": "Create a new organisation ?",
155
- "ORGANISATIONS_NAME_FIELD_LABEL": "Enter the name of this organisation",
156
- "ORGANISATIONS_DESCRIPTION_FIELD_LABEL": "Enter a description name of this organisation",
157
- "MEMBERS_TAGS_FIELD_LABEL": "Add somes tags to qualify this member",
158
- "TAG_NAME": "{ object.value }",
159
- "TAGS_CREATE_TITLE": "Create a new tag ?",
160
- "TAGS_NAME_FIELD_LABEL": "Enter the name of this tag",
161
- "TAGS_ICON_FIELD_LABEL": "Set the icon of this tag",
162
- "TAGS_DESCRIPTION_FIELD_LABEL": "Enter a description of this tag",
163
- "GROUPS_CREATE_TITLE": "Create a new group ?",
164
- "GROUPS_NAME_FIELD_LABEL": "Enter the name of this group",
165
- "GROUPS_DESCRIPTION_FIELD_LABEL": "Enter a description for this group",
166
- "UPDATE_SETTINGS_TITLE": "Your settings",
167
- "TIME_FORMAT_SETTINGS": "Time/Date format",
168
- "TIME_FORMAT_SHORT_TIME_FIELD_LABEL": "Short time format",
169
- "TIME_FORMAT_SHORT_TIME_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>&#x1F6C8;</a>",
170
- "TIME_FORMAT_LONG_TIME_FIELD_LABEL": "Long time format",
171
- "TIME_FORMAT_LONG_TIME_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>&#x1F6C8;</a>",
172
- "TIME_FORMAT_SHORT_DATE_FIELD_LABEL": "Short date format",
173
- "TIME_FORMAT_SHORT_DATE_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>&#x1F6C8;</a>",
174
- "TIME_FORMAT_LONG_DATE_FIELD_LABEL": "Long date format",
175
- "TIME_FORMAT_LONG_DATE_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>&#x1F6C8;</a>",
176
- "TIME_FORMAT_SHORT_YEAR_FIELD_LABEL": "Short year format",
177
- "TIME_FORMAT_SHORT_YEAR_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>&#x1F6C8;</a>",
178
- "TIME_FORMAT_LONG_YEAR_FIELD_LABEL": "Long year format",
179
- "TIME_FORMAT_LONG_YEAR_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>&#x1F6C8;</a>",
180
- "TIME_FORMAT_TIMEZONE_FIELD_LABEL": "Target timezone to use",
181
- "UNITS_SETTINGS": "Units settings",
182
- "LENGTH_FIELD_LABEL": "Default length unit",
183
- "ALTITUDE_FIELD_LABEL": "Default altitude unit",
184
- "AREA_FIELD_LABEL": "Default area unit",
185
- "VELOCITY_FIELD_LABEL": "Default velocity unit",
186
- "TEMPERATURE_FIELD_LABEL": "Default temperature unit",
187
- "ANGLE_FIELD_LABEL": "Default angle unit",
188
- "NOTATION_SETTINGS": "Number notation settings",
189
- "NOTATION_FIELD_LABEL": "Default number notation",
190
- "AUTO_NOTATION_FIELD_LABEL": "Select the best-suited number notation",
191
- "FIXED_NOTATION_FIELD_LABEL": "Fixed precision number notation",
192
- "EXPONENTIAL_NOTATION_FIELD_LABEL": "Exponential number notation",
193
- "PRECISION_FIELD_LABEL": "Default number of decimal or significant digits"
194
- },
195
- "tours": {
196
- "APP_BAR_OVERFLOW_MENU_LABEL": "When not visible, you can find it using the popup menu.",
197
- "APP_BAR_ACTIONS_LABEL": "When not visible, you can find it in the actions bar.",
198
- "CARD_OVERFLOW_MENU_LABEL": "Open the popup menu to see more actions.",
199
- "REMOVE_CONFIRMATION_LABEL": "A confirmation will be required before final removal.",
200
- "login": {
201
- "LOCAL_LABEL": "You can login using your <b>personal identifiers</b>.",
202
- "EMAIL_LABEL": "Enter your email address first.",
203
- "PASSWORD_LABEL": "Then enter your password.",
204
- "PASSWORD_VISIBILITY_LABEL": "Display you password clearly if there is any doubt about.",
205
- "LOGIN_LABEL": "Now, finish by login.",
206
- "LOST_PASSWORD_LINK_LABEL": "If you have lost your password launch the <b>recovery procedure</b>",
207
- "REGISTER_LINK_LABEL": "If you don't yet have an account launch the <b>registration procedure</b>"
208
- },
209
- "reset-password": {
210
- "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>.",
211
- "EMAIL_LABEL": "First, enter the email address you have used to register or to get invited.",
212
- "RESET_LABEL": "Now finish by sending the email containing the link (<b>please check the email is not in your spam folder</b>)."
213
- },
214
- "register": {
215
- "LOCAL_LABEL": "You can register to the system by defining your <b>personal identifiers</b>.",
216
- "NAME_LABEL": "Enter your name as viewed by others users first.",
217
- "EMAIL_LABEL": "Enter the email address you will use to connect and receive security related messages.",
218
- "PASSWORD_LABEL": "Choose a password, if it does not comply our security policy an alert will inform you about the rules to follow.",
219
- "PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
220
- "CONFIRM_PASSWORD_LABEL": "Confirm your password to avoid any error.",
221
- "CONFIRM_PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
222
- "TERMS_LABEL": "Read and accept our <b><a style='color:white' href='/#/terms'>terms of service</a></b> in order to use the system.",
223
- "REGISTER_LABEL": "Last, create your account.",
224
- "EMAIL_VERIFICATION_LABEL": "We will send you an email back containing a link to <b>verify your address</b>.",
225
- "LOGIN_LINK_LABEL": "You can now login whenever you want using your <b>personal identifiers</b>"
226
- },
227
- "create-organisation": {
228
- "ORGANISATION_NAME_LABEL": "Enter the organisation name as viewed by others users.",
229
- "ORGANISATION_DESCRIPTION_LABEL": "Enter a detailed description.",
230
- "ORGANISATION_AVATAR_LABEL": "Select the image or the logo of your organisation as seen by your members.",
231
- "CREATE_ORGANISATION_LABEL": "Confirm the creation of your new organisation."
232
- },
233
- "account": {
234
- "PROFILE_LABEL": "This activity allows to update your profile information",
235
- "AVATAR_LABEL": "Your avatar visible in the side menu when an image file has been selected.",
236
- "NAME_LABEL": "Your name as viewed by others users.",
237
- "UPDATE_LABEL": "Confirm the update in order to apply the modifications to your profile information.",
238
- "ACCOUNT_LABEL": "Manage <b>your identifiers</b> and their security",
239
- "VERIFY_EMAIL_LABEL": "This section allows you to check your email.",
240
- "TOKEN_FIELD_LABEL": "Enter the code received by email.",
241
- "RESEND_VERIFY_SIGNUP_LABEL": "If you haven't received it or have lost it, you can have a new one sent to you.",
242
- "CONFIRM_VERIFY_EMAIL_LABEL": "Finally, confirm that.",
243
- "PASSWORD_PROCEDURE_LABEL": "This section allows you to initiate the password change procedure.",
244
- "OLD_PASSWORD_LABEL": "First, enter your previous password.",
245
- "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.",
246
- "NEW_PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
247
- "CONFIRM_NEW_PASSWORD_LABEL": "Confirm your password to avoid any error.",
248
- "CHANGE_PASSWORD_LABEL": "Last, confirm the modification request.",
249
- "CHANGE_IDENTITY_PROCEDURE_LABEL": "This section allows you to initiate the e-mail address change procedure.",
250
- "PASSWORD_LABEL": "First, enter your password.",
251
- "PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
252
- "EMAIL_LABEL": "Enter your <b>new email address</b>.",
253
- "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>).",
254
- "SUBSCRIPTIONS_LABEL": "This section list all the subscriptions you have.",
255
- "UNSUBSCRIBE_LABEL": "Check for any suspect activity and remove outdated subscriptions.",
256
- "DANGER_ZONE_LABEL": "This activity allows to remove your account",
257
- "DELETE_LABEL": "A manual confirmation will be required before final removal."
258
- },
259
- "groups": {
260
- "GROUPS_LABEL": "This activity allows to manage the <b>groups</b> in your organisation.",
261
- "GROUP_DEFINITION_LABEL": "A group allows to delegate the management of a shared workspace limited to its members.",
262
- "OVERFLOW_MENU_LABEL": "@:tours.APP_BAR_OVERFLOW_MENU_LABEL",
263
- "SEARCH_LABEL": "Type part of a word contained in the name of your groups in the arising bar to perform a search.",
264
- "SORT_LABEL": "Sort your groups by ascending or descending alphabetical order this button.",
265
- "NEW_GROUP_LABEL": "Create a <b>new group</b> using this button.",
266
- "CREATE_GROUP_LINK_LABEL": "How to create a group",
267
- "GROUP_CARD_LABEL": "Each group is viewed as a card providing available actions.",
268
- "GROUP_MEMBERS_LABEL": "This section shows you the <b>members</b> count of your group.",
269
- "LIST_GROUP_MEMBERS_LABEL": "Shows the <b>members</b> of your group by selecting it.",
270
- "UPDATE_GROUP_LABEL": "Update the name of your group through this action.",
271
- "UPDATE_GROUP_DESCRIPTION_LABEL": "Update the description of your group through this action.",
272
- "GROUP_OVERFLOW_MENU_LABEL": "@:tours.CARD_OVERFLOW_MENU_LABEL",
273
- "REMOVE_GROUP_LABEL": "Remove your group through this action.",
274
- "REMOVE_CONFIRMATION_LABEL": "@:tours.REMOVE_CONFIRMATION_LABEL"
275
- },
276
- "create-group": {
277
- "GROUP_NAME_LABEL": "Choose a name for your group.",
278
- "GROUP_DESCRIPTION_LABEL": "Choose a detailed description for your group.",
279
- "CREATE_GROUP_LABEL": "Confirm the creation of your new group."
280
- },
281
- "members": {
282
- "MEMBERS_LABEL": "This activity allows to manage the <b>members</b> in your organisation.",
283
- "MEMBER_DEFINITION_LABEL": "A <b>member</b> is a user able to access the shared workspace offered by your organisation.",
284
- "OVERFLOW_MENU_LABEL": "@:tours.APP_BAR_OVERFLOW_MENU_LABEL",
285
- "SEARCH_LABEL": "Type part of a word contained in the name of your members in the arising bar to perform a search.",
286
- "SEARCH_MORE_LABEL": "Type also a word contained in the name of a group or a tag associated to your members to filter accordingly.",
287
- "FILTER_LABEL": "Filter your members according to their status using this button.",
288
- "SORT_LABEL": "Sort your members by ascending or descending alphabetical order this button.",
289
- "ADD_INVITE_MEMBER_LABEL": "Add members to your organisation through this action.",
290
- "ADD_MEMBER_LABEL": "If your future member <b>already has an account</b>, <b>add him</b> using this button.",
291
- "ADD_MEMBER_LINK_LABEL": "How to add a member",
292
- "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 .",
293
- "INVITE_MEMBER_LINK_LABEL": "How to invite a member",
294
- "MEMBER_CARD_LABEL": "Each member is viewed as a card providing available actions.",
295
- "ROLE_LABEL": "Visualise the role of your member at a glance.",
296
- "TAGS_LABEL": "Visualise tags of your member at a glance as well.",
297
- "TAGS_CONTENT_LABEL": "Use the cross to delete a tag.",
298
- "GROUPS_LABEL": "Visualise groups of your member at a glance as well.",
299
- "GROUPS_CONTENT_LABEL": "Select one of the member groups to show available actions.",
300
- "ADD_TAG_LABEL": "Add tag of your member through this action.",
301
- "ADD_TAG_LINK_LABEL": "How to manage tags",
302
- "JOIN_GROUP_LABEL": "Add your member to a <b>group</b> through this action.",
303
- "JOIN_GROUP_LINK_LABEL": "How to manage groups",
304
- "CHANGE_ROLE_LABEL": "Update the role of your member through this action.",
305
- "CHANGE_ROLE_LINK_LABEL": "How to manage roles",
306
- "REMOVE_MEMBER_LABEL": "Remove the member from your organisation through this action.",
307
- "REMOVE_CONFIRMATION_LABEL": "@:tours.REMOVE_CONFIRMATION_LABEL"
308
- },
309
- "add-member": {
310
- "UNIQUE_TAB_LABEL": "Add a unique person to your organisation using his email adress.",
311
- "UNIQUE_EMAIL_LABEL": "Enter the email of the desired person",
312
- "UNIQUE_CONTINUE_BUTTON_LABEL": "Click this button to procced with the invitation or to add the person if they already have an account.",
313
- "UNIQUE_NAME_LABEL": "Enter the name of the person.",
314
- "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.",
315
- "UNIQUE_ADD_BUTTON_LABEL": "Click this button to send the invitation.",
316
- "MULTIPLE_TAB_LABEL": "Add multiple persons to your organisation using a CSV file.",
317
- "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.",
318
- "MULTIPLE_ADD_BUTTON_LABEL": "Click this button to proceed with the invitations."
319
- },
320
- "role-member": {
321
- "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.",
322
- "UPDATE_ROLE_LABEL": "Update the role of your member"
323
- },
324
- "join-group": {
325
- "GROUP_NAME_LABEL": "Typing <b>the first characters</b> of a group name to make it selectable.",
326
- "MEMBER_ROLE_LABEL": "Choisissez le rôle de la personne au sein du groupe.",
327
- "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).",
328
- "ADD_MEMBER_LABEL": "Confirm adding the member to the group."
329
- },
330
- "add-tag": {
331
- "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.",
332
- "ADD_TAG_LABEL": "Confirm addition the tags on your members."
333
- },
334
- "tags": {
335
- "TAGS_LABEL": "This activity allows to manage the <b>tags</b> in your organisation.",
336
- "TAG_DEFINITION_LABEL": "A tag allows to classify a subset of your organisation members (e.g. a skill or a service).",
337
- "OVERFLOW_MENU_LABEL": "@:tours.APP_BAR_OVERFLOW_MENU_LABEL",
338
- "SEARCH_LABEL": "Type part of a word contained in the name of your tags in the arising bar to perform a search.",
339
- "SORT_LABEL": "Sort your tags by ascending or descending alphabetical order this button.",
340
- "TAG_CARD_LABEL": "Each tag is viewed as a card providing available actions.",
341
- "NEW_TAG_LABEL": "Create a <b>new tag</b> using this button.",
342
- "CREATE_TAG_LINK_LABEL": "How to create a tag",
343
- "TAG_COUNT_LABEL": "This section shows you the number of <b>members</b> having your tag.",
344
- "LIST_MEMBERS_LABEL": "Shows the <b>members</b> with this tag by selecting it.",
345
- "REMOVE_TAG_LABEL": "Remove your tag through this action.",
346
- "REMOVE_CONFIRMATION_LABEL": "@:tours.REMOVE_CONFIRMATION_LABEL",
347
- "UPDATE_TAG_LABEL": "Update properties of your tag through this action, this will update all members having this tag.",
348
- "UPDATE_TAG_DESCRIPTION_LABEL": "Update the description of your tag through this action."
349
- },
350
- "create-tag": {
351
- "TAG_NAME_LABEL": "Choose a name for your tag.",
352
- "TAG_ICON_LABEL": "Choose an icon to easily recognize your tag.",
353
- "TAG_DESCRIPTION_LABEL": "Choose a detailed description for your tag.",
354
- "CREATE_TAG_LABEL": "Confirm the creation of your new tag."
355
- }
356
- },
357
- "reader": {
358
- "READING_FILE": "Reading file {file}"
359
- },
360
- "storage": {
361
- "UPLOADING_FILE": "Uploading file {file}"
362
- },
363
- "KVersion": {
364
- "CLIENT_VERSION": "Client v{version}",
365
- "API_VERSION": "API v{version}"
366
- },
367
- "KSponsor": {
368
- "KDK_POWERED": "Powered by Kalisio's Development Kit",
369
- "MORE_ABOUT_KDK": "More about KDK",
370
- "MORE_ABOUT_KALISIO": "More about Kalisio"
371
- },
372
- "KPlatform": {
373
- "PROPERTY": "Property",
374
- "VALUE": "Value",
375
- "COPY_INFO": "Copy info",
376
- "INFO_COPIED": "Platform info copied",
377
- "CANNOT_COPY_INFO": "Cannot copy platform info"
378
- },
379
- "KAbout": {
380
- "DOMAIN": "Hosted on",
381
- "FLAVOR": "Flavor",
382
- "VIEW_CHANGELOG": "Changlog",
383
- "BUG_REPORT": "Report us a bug",
384
- "BUG_REPORT_SUBJECT": "[{appName}] Bug report - Client v{clientVersion} - API v{apiVersion}",
385
- "BUG_REPORT_BODY": "Please detail your problem here%0D%0A%0D%0APlatform information to be kept%0D%0A%0D%0A",
386
- "PLATFORM_INFO": "Platform information"
387
- },
388
- "KWelcome": {
389
- "WELCOME_TITLE": "Welcome !",
390
- "WELCOME_MESSAGE": "This quick start guide covers the main application features.",
391
- "ONLINE_HELP": "Read first our online help to get an overview of the basic concepts",
392
- "CONTEXTUAL_HELP": "To get contextual help whenever your are lost simply click on the following icon",
393
- "TOUR_MESSAGE": "Launch now a quick overview tutorial detailing the main menu by clicking on the following icon",
394
- "TOUR_LINK_MESSAGE": "Each time a tutorial step exhibits this icon it allows to launch a new one detailing the target feature.",
395
- "GOODBYE_MESSAGE": "Thanks for reading this tutorial, you are now ready to use the application !",
396
- "HIDE_WELCOME": "Don't display this message again"
397
- },
398
- "KTour": {
399
- "SKIP_LABEL": "Skip",
400
- "NEXT_LABEL": "Next",
401
- "PREVIOUS_LABEL": "Previous",
402
- "FINISH_LABEL": "Finish",
403
- "MISS_ERROR": "Before going further please perform the required actions"
404
- },
405
- "KScreen": {
406
- "CLIENT_VERSION": "Client v",
407
- "API_VERSION": "API v",
408
- "EMAIL_FIELD_LABEL": "Enter your email address",
409
- "CHANGE_ENDPOINT_LINK": "Change endpoint",
410
- "DEVELOPMENT_VERSION": "DEVELOPMENT VERSION",
411
- "TEST_VERSION": "TEST VERSION"
412
- },
413
- "KErrorScreen": {
414
- "MESSAGE": "Oups... page not found",
415
- "GO_HOME_LABEL": "Go home page"
416
- },
417
- "KLoginScreen": {
418
- "EMAIL_FIELD_LABEL": "@:KScreen.EMAIL_FIELD_LABEL",
419
- "PASSWORD_FIELD_LABEL": "Enter your password",
420
- "LOGIN_LABEL": "Log in",
421
- "FORGOT_YOUR_PASSWORD_LABEL": "Forgot your password ?",
422
- "DONT_HAVE_AN_ACCOUNT_LABEL": "Don't have an account ?",
423
- "INVALID_EMAIL": "Unable to find the account associated with the email entered",
424
- "LOGIN_ERROR": "Wrong credentials or service unavailable, please try again",
425
- "CONTEXTUAL_HELP": "@:NEED_HELP"
426
- },
427
- "KRegisterScreen": {
428
- "TITLE": "Register",
429
- "NAME_FIELD_LABEL": "@:schemas.NAME_FIELD_LABEL",
430
- "EMAIL_FIELD_LABEL": "@:KScreen.EMAIL_FIELD_LABEL",
431
- "PASSWORD_FIELD_LABEL": "Enter a password",
432
- "CONFIRM_PASSWORD_FIELD_LABEL": "Confirm your password",
433
- "ACCEPT_TERMS_LABEL": "I accept the terms and policies",
434
- "ACCEPT_TERMS_HELPER": "<a href='{domain}/#/terms' target='_blank'>terms and policies</a>",
435
- "ACCEPT_TERMS_ERROR_LABEL": "You must accept our terms and policies to register",
436
- "REGISTER_LABEL": "Register",
437
- "ALREADY_HAVE_AN_ACCOUNT_LINK": "Already have an account ?",
438
- "EMAIL_ALREADY_TAKEN": "Email already taken !",
439
- "REGISTER_ERROR": "Wrong input or service unavailable, please try again",
440
- "CONTEXTUAL_HELP": "@:NEED_HELP"
441
- },
442
- "KLogoutScreen": {
443
- "TITLE": "You are now logged out",
444
- "LOG_IN_AGAIN_LABEL": "Log in again ?"
445
- },
446
- "KEndpointScreen": {
447
- "TITLE": "Change endpoint",
448
- "BASE_URL_FIELD_LABEL": "Enter the address of the server to be used",
449
- "APPLY_LABEL": "Apply",
450
- "RESET_LABEL": "Reset",
451
- "LOG_IN_LABEL": "Log in ?"
452
- },
453
- "KProfile": {
454
- "EDIT_PROFILE": "Edit my profile",
455
- "MANAGE_ACCOUNT": "Manage my account"
456
- },
457
- "KDeleteAccountManager": {
458
- "TITLE": "Delete my account",
459
- "QUESTION": "Are you sure you want to delete your account ?",
460
- "CONFIRMATION_TITLE": "Warning: the deletion of your account is irrevocable and all data attached to it will be lost",
461
- "CONFIRMATION": "Enter your account name to confirm the deletion"
462
- },
463
- "KPasswordManager": {
464
- "TITLE": "Change my password",
465
- "PASSWORD_CHANGED": "Your password has been successfully changed",
466
- "OLD_PASSWORD_FIELD_LABEL": "Enter your old password",
467
- "PASSWORD_FIELD_LABEL": "Enter your new password",
468
- "CONFIRM_PASSWORD_FIELD_LABEL": "Confirm your new password"
469
- },
470
- "KEmailManager": {
471
- "TITLE": "Change my email address",
472
- "PASSWORD_FIELD_LABEL": "Enter your password",
473
- "EMAIL_FIELD_LABEL": "Enter your new email address",
474
- "TOKEN_LABEL": "To validate your new email address, enter the code you received by email",
475
- "EMAIL_CHANGED": "You new address has been taken into account. An email has been sent to you to confirm the change.",
476
- "ERROR_MESSAGE": "Invalid code"
477
- },
478
- "KVerifyEmailManager": {
479
- "TITLE": "Check my email address",
480
- "HELP_LABEL": "Why should I verify my email address ?",
481
- "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.",
482
- "HELP_EMAIL_LABEL": "I never received the verification email, what should I do ?",
483
- "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.",
484
- "TOKEN_LABEL": "Enter the code received by email to validate your email address",
485
- "EMAIL_VERIFIED": "Your address has been verified. An email has been sent to you to confirm the change.",
486
- "ACTION": "Resend verification code",
487
- "ERROR_MESSAGE": "Invalid code, request a new one"
488
- },
489
- "KSubscriptionsManager": {
490
- "TITLE": "Manage my subscriptions",
491
- "EMPTY": "No subscriptions"
492
- },
493
- "KSubscription": {
494
- "UNSUBSCRIBE_LABEL": "Unsubscribe",
495
- "LAST_ACTIVITY": "Last activity",
496
- "UNSUBSCRIBE_DIALOG_TITLE": "Unsubscribe from {description} ?",
497
- "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."
498
- },
499
- "KGrid": {
500
- "EMPTY_GRID": "@:NO_ITEM"
501
- },
502
- "KList": {
503
- "EMPTY_LIST": "@:NO_ITEM"
504
- },
505
- "KTable": {
506
- "EMPTY_TABLE": "@:NO_ITEM",
507
- "TABLE_COLUMNS": "Properties"
508
- },
509
- "KDataTable": {
510
- "EMPTY_TABLE": "@:NO_ITEM",
511
- "TABLE_COLUMNS": "Properties",
512
- "NO_DATA_AVAILABLE": "No data available",
513
- "EXPORT_DATA": "Export data",
514
- "DATA_EXPORT_FILE": "Data.csv"
515
- },
516
- "KHistory": {
517
- "EMPTY_HISTORY": "@:NO_ITEM"
518
- },
519
- "KColumn": {
520
- "EMPTY_COLUMN": "@:NO_ITEM"
521
- },
522
- "KCard": {
523
- "DESCRIPTION_SECTION": "Description",
524
- "NO_DESCRIPTION_LABEL": "No description",
525
- "MORE_ACTION": "More details",
526
- "LESS_ACTION": "Less details"
527
- },
528
- "KColorChooser": {
529
- "CANCEL_BUTTON": "@:CANCEL",
530
- "DONE_BUTTON": "@:DONE"
531
- },
532
- "KIconChooser": {
533
- "CLOSE_ACTION": "@:CANCEL",
534
- "DONE_BUTTON": "@:DONE",
535
- "SEARCH_FIELD_LABEL": "Type to search",
536
- "SEARCH_CATEGORY_LABEL": "All categories",
537
- "categories": {
538
- "accessibility": "accessibility",
539
- "alert": "alert",
540
- "animals": "animals",
541
- "arrows": "arrows",
542
- "audio-video": "audio-video",
543
- "automotive": "automotive",
544
- "autumn": "autumn",
545
- "beverage": "beverage",
546
- "buildings": "buildings",
547
- "business": "business",
548
- "camping": "camping",
549
- "charity": "charity",
550
- "chat": "chat",
551
- "chess": "chess",
552
- "childhood": "childhood",
553
- "clothing": "clothing",
554
- "code": "code",
555
- "communication": "communication",
556
- "computers": "computers",
557
- "construction": "construction",
558
- "currency": "currency",
559
- "date-time": "date-time",
560
- "design": "design",
561
- "editors": "editors",
562
- "education": "education",
563
- "emoji": "emoji",
564
- "energy": "energy",
565
- "files": "files",
566
- "finance": "finance",
567
- "fitness": "fitness",
568
- "food": "food",
569
- "fruit-vegetable": "fruit-vegetable",
570
- "games": "games",
571
- "gaming-tabletop": "gaming-tabletop",
572
- "gender": "gender",
573
- "halloween": "halloween",
574
- "hands": "hands",
575
- "health": "health",
576
- "holiday": "holiday",
577
- "hotel": "hotel",
578
- "household": "household",
579
- "images": "images",
580
- "interfaces": "interfaces",
581
- "logistics": "logistics",
582
- "maps": "maps",
583
- "maritime": "maritime",
584
- "marketing": "marketing",
585
- "mathematics": "mathematics",
586
- "medical": "medical",
587
- "moving": "moving",
588
- "music": "music",
589
- "objects": "objects",
590
- "payments-shopping": "payments-shopping",
591
- "pharmacy": "pharmacy",
592
- "political": "political",
593
- "religion": "religion",
594
- "science": "science",
595
- "science-fiction": "science-fiction",
596
- "security": "security",
597
- "shapes": "shapes",
598
- "shopping": "shopping",
599
- "social": "social",
600
- "spinners": "spinners",
601
- "sports": "sports",
602
- "spring": "spring",
603
- "status": "status",
604
- "summer": "summer",
605
- "toggle": "toggle",
606
- "travel": "travel",
607
- "users-people": "users-people",
608
- "vehicles": "vehicles",
609
- "weather": "weather",
610
- "winter": "winter",
611
- "writing": "writing"
612
- }
613
- },
614
- "KTagField": {
615
- "CREATE_TAG": "Create <b>c</b>"
616
- },
617
- "KFileField": {
618
- "INVALID_FILE_TYPE": "Invalid file type, please select the right file type",
619
- "INVALID_FILE_SIZE": "Invalid file size, the file is too large",
620
- "UPLOAD_FILE_SUCCEEDED": "File {file} has been successfully uploaded",
621
- "UPLOAD_FILE_ERRORED": "Cannot upload file {file} !"
622
- },
623
- "KCronField": {
624
- "INVALID_CRON": "Invalid CRON expression"
625
- },
626
- "KMediaBrowser": {
627
- "CLOSE_ACTION": "@:CLOSE",
628
- "DOWNLOAD_MEDIA_ACTION": "Donwload media",
629
- "RESTORE_IMAGE_ACTION": "Restore image",
630
- "REMOVE_MEDIA_ACTION": "Remove the media",
631
- "REMOVE_DIALOG_TITLE": "Remove the media {media} ?",
632
- "REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove the media <b>{media}</b> ?",
633
- "ADD_MEDIA_ACTION": "Add a media",
634
- "ADD_PHOTO_ACTION": "Add a photo",
635
- "UPLOAD_TITLE": "Add a media",
636
- "UPLOAD_FILE_FIELD_LABEL": "Select a file",
637
- "UPLOAD": "Add",
638
- "NO_MEDIA": "There is no media to show, please add a media first with one of the action buttons."
639
- },
640
- "KFab": {
641
- "CLOSE_ACTION": "@:CLOSE"
642
- },
643
- "KModal": {
644
- "CLOSE_ACTION": "@:CLOSE"
645
- },
646
- "KWindow": {
647
- "CLOSE_ACTION": "@:CLOSE",
648
- "PIN_ACTION": "Pin",
649
- "RESTORE_ACTION": "Restore",
650
- "MAXIMIZE_ACTION": "Maximize"
651
- },
652
- "KOrganisationsActivity": {
653
- "ORGANISATIONS_LABEL": "My organisations",
654
- "CREATE_ORGANISATION_LABEL": "Create an organisation",
655
- "SEARCH_ORGANISATIONS": "Rechercher des organisations",
656
- "SORT_ORGANISATIONS": "Trier les organisations"
657
- },
658
- "KMembersActivity": {
659
- "MEMBERS_LABEL": "@:MEMBERS",
660
- "SORT_MEMBERS": "Sort members",
661
- "SEARCH_MEMBERS": "Search members",
662
- "ADD_USER_LABEL": "Add a member",
663
- "INVITE_GUEST_LABEL": "Invite guests"
664
- },
665
- "KAddMember": {
666
- "TITLE": "Add one or more persons ?",
667
- "EMAIL_FIELD_LABEL": "Enter the email address of the person to be added",
668
- "NAME_FIELD_LABEL": "Enter the name of this person",
669
- "ROLE_FIELD_LABEL": "Select the role granted to this person",
670
- "ADD_MESSAGE": "<b>{email}</b> is already registered. Would you like to add this persion to your organisation ?",
671
- "INVITE_MESSAGE": "<b>{email}</b> is not registered. Would you like to invite this person ?",
672
- "FILE_FIELD_LABEL": "Select the CSV file you want to import",
673
- "OWNER_LABEL": "@:OWNER",
674
- "MANAGER_LABEL": "@:MANAGER",
675
- "MEMBER_LABEL": "@:MEMBER",
676
- "CANCEL_BUTTON": "@:CANCEL",
677
- "CONTINUE_BUTTON": "Continue",
678
- "BACK_BUTTON": "Back",
679
- "ADD_BUTTON": "Add",
680
- "INVITE_BUTTON": "Invite",
681
- "ALREADY_MEMBER_ERROR": "This person is already a member of your organisation",
682
- "CONTENT_FILE_ERROR": "Are you sure your file is correclty formatted ?",
683
- "INVALID_FIELDS_VALUES_ERROR": "Invalid values",
684
- "INVALID_FIELDS_NUMBER_ERROR": "Invalid field number",
685
- "ALERT_FILE_IMPORT_MESSAGE": "No valid record detected. Please ensure your file is correctly formatted",
686
- "CONFIRM_FILE_IMPORT_MESSAGE": "<b>{errors} error(s)</b> detected among {records}] record(s). Would you to continue ?",
687
- "USER_ADDED_MESSAGE": "This person as been added",
688
- "GUEST_ADDED_MESSAGE": "This person as been invited"
689
- },
690
- "KAddTag": {
691
- "TITLE": "Tag {member} with an existing tag ?",
692
- "TAG_FIELD_LABEL": "Enter the name of the tag",
693
- "CLOSE_ACTION": "@:CLOSE",
694
- "ADD_BUTTON": "Tag"
695
- },
696
- "KJoinGroup": {
697
- "TITLE": "Add {member} to an existing group ?",
698
- "GROUP_FIELD_LABEL": "Enter the name of the group",
699
- "ROLE_FIELD_LABEL": "Delegate group management to this member?",
700
- "OWNER_LABEL": "@:OWNER",
701
- "MANAGER_LABEL": "@:MANAGER",
702
- "MEMBER_LABEL": "@:MEMBER",
703
- "CLOSE_ACTION": "@:CLOSE",
704
- "ADD_BUTTON": "Add"
705
- },
706
- "KChangeRole": {
707
- "TITLE": "Change role of {member} ?",
708
- "ROLE_FIELD_LABEL": "Select the role to be granted to the user",
709
- "CLOSE_ACTION": "@:CLOSE",
710
- "UPDATE_BUTTON": "Update"
711
- },
712
- "KMemberCard": {
713
- "EDIT_ACTION": "@:EDIT",
714
- "REMOVE_ACTION": "@:REMOVE",
715
- "TAGS_SECTION": "Tags",
716
- "NO_TAGS_LABEL": "Update tags",
717
- "TAG_ACTION": "Add a tag",
718
- "REMOVE_TAG_DIALOG_TITLE": "Remove tag {tag} ?",
719
- "REMOVE_TAG_DIALOG_MESSAGE": "Are you sure you want to remove tag <b>{tag}</b> for <b>{member}</b>?",
720
- "GROUPS_SECTION": "Groups",
721
- "NO_GROUPS_LABEL": "No groups",
722
- "JOIN_GROUP_ACTION": "Join a group",
723
- "EXPIRE_AT_LABEL": "Invitation expire at",
724
- "CHANGE_ROLE_ACTION": "Change role",
725
- "RESEND_INVITATION_ACTION": "Resend an invitation",
726
- "REMOVE_DIALOG_TITLE": "Remove {member} ?",
727
- "REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove <b>{member}</b> from your organisation ?",
728
- "LEAVE_GROUP_DIALOG_TITLE": "Leave the group {group} '?",
729
- "LEAVE_GROUP_DIALOG_MESSAGE": "Are you sure you want <b>{member}</b> to leave the group <b>{group}</b> ?",
730
- "RESEND_INVITATION_DIALOG_TITLE": "Resend the invitation for {member} ?",
731
- "RESEND_INVITATION_DIALOG_MESSAGE": "Is <b>{member}</b>'s email address correct ?"
732
- },
733
- "KTagsActivity": {
734
- "TAGS_LABEL": "@:TAGS",
735
- "SORT_TAGS": "Sort tags",
736
- "SEARCH_TAGS": "Search tags",
737
- "CREATE_TAG_LABEL": "Create a tag"
738
- },
739
- "KTagCard": {
740
- "EDIT_ACTION": "@:EDIT",
741
- "REMOVE_ACTION": "@:REMOVE",
742
- "MEMBERS_SECTION": "Members",
743
- "MEMBERS_LABEL": "{count} member(s)",
744
- "VIEW_MEMBERS_LABEL": "View members with tag"
745
- },
746
- "KGroupsActivity": {
747
- "GROUPS_LABEL": "@:GROUPS",
748
- "SORT_GROUPS": "Sort groups",
749
- "SEARCH_GROUPS": "Search groups",
750
- "CREATE_GROUP_LABEL": "Create a group"
751
- },
752
- "KGroupCard": {
753
- "EDIT_ACTION": "@:EDIT",
754
- "REMOVE_ACTION": "@:REMOVE",
755
- "DESCRIPTION_SECTION": "Description",
756
- "NO_DESCRIPTION_LABEL": "No description",
757
- "MEMBERS_SECTION": "Members",
758
- "MEMBERS_LABEL": "{count} member(s)",
759
- "VIEW_MEMBERS_LABEL": "View members"
760
- },
761
- "KResetPassword": {
762
- "TITLE": "Reset your password ?",
763
- "MESSAGE": "Please enter your new password to proceed",
764
- "ACTION": "Reset",
765
- "RESEND_LINK": "Resend reset password code",
766
- "EMAIL_FIELD_LABEL": "Enter your email address",
767
- "PASSWORD_FIELD_LABEL": "Enter your new password",
768
- "CONFIRM_PASSWORD_FIELD_LABEL": "Confirm your new password",
769
- "TOKEN_FIELD_LABEL": "Enter the code received by email",
770
- "SUCCESS_MESSAGE": "Password reset, you will receive a confirmation email",
771
- "ERROR_MESSAGE_BAD_PARAMS": "Your password has already been reset or your account has been removed",
772
- "ERROR_MESSAGE_VERIFY_EXPIRED": "The delay to reset has expired, please resend the reset password email with the link below",
773
- "ERROR_MESSAGE_DEFAULT": "Error while trying to reset password, please try again later"
774
- },
775
- "KSendResetPassword": {
776
- "TITLE": "Reset my password ?",
777
- "MESSAGE": "Enter your email address and we will send you a code to reset your password",
778
- "ACTION": "Send",
779
- "EMAIL_FIELD_LABEL": "Enter your email address",
780
- "ERROR_INVALID_EMAIL": "Unable to find the account associated to the email entered",
781
- "ERROR_MESSAGE_IS_VERIFIED": "Check your inbox and verify your email address first",
782
- "ERROR_MESSAGE_DEFAULT": "Error while sending email, please check the address and send it again or try again later"
783
- },
784
- "KMemberFilter": {
785
- "NONE": "None",
786
- "OWNER": "Owner",
787
- "MANAGER": "Manager",
788
- "MEMBER": "Member",
789
- "GUEST": "Guest"
790
- },
791
- "KSorter": {
792
- "SORT": "Sort"
793
- },
794
- "KAbsoluteTimeRange": {
795
- "PICK_START_DATE_LABEL": "Update start date",
796
- "PICK_START_TIME_LABEL": "Update start time",
797
- "PICK_END_DATE_LABEL": "Update end date",
798
- "PICK_END_TIME_LABEL": "Update end time"
799
- },
800
- "KRelativeTimeRanges": {
801
- "LAST_HOUR_LABEL": "Last hour",
802
- "LAST_2_HOURS_LABEL": "Last 2 hours",
803
- "LAST_3_HOURS_LABEL": "Last 3 hours",
804
- "LAST_6_HOURS_LABEL": "Last 6 hours",
805
- "LAST_12_HOURS_LABEL": "Last 12 hours",
806
- "LAST_DAY_LABEL": "Last day",
807
- "LAST_2_DAYS_LABEL": "Last 2 days",
808
- "LAST_3_DAYS_LABEL": "Last 3 days",
809
- "LAST_WEEK_LABEL": "Last week",
810
- "LAST_2_WEEKS_LABEL": "Last 2 weeks",
811
- "LAST_MONTH_LABEL": "Last month",
812
- "LAST_3_MONTHS_LABEL": "Last 3 months",
813
- "LAST_6_MONTHS_LABEL": "Last 6 months",
814
- "LAST_YEAR_LABEL": "Last year",
815
- "NEXT_HOUR_LABEL": "Next hour",
816
- "NEXT_2_HOURS_LABEL": "Next 2 hours",
817
- "NEXT_3_HOURS_LABEL": "Next 3 hours",
818
- "NEXT_6_HOURS_LABEL": "Next 6 hours",
819
- "NEXT_12_HOURS_LABEL": "Next 12 hours",
820
- "NEXT_DAY_LABEL": "Next day",
821
- "NEXT_2_DAYS_LABEL": "Next 2 days",
822
- "NEXT_3_DAYS_LABEL": "Next 3 days",
823
- "NEXT_WEEK_LABEL": "Next week",
824
- "NEXT_2_WEEKS_LABEL": "Next 2 weeks",
825
- "NEXT_MONTH_LABEL": "Next month",
826
- "NEXT_3_MONTHS_LABEL": "Next 3 months",
827
- "NEXT_6_MONTHS_LABEL": "Next 6 months",
828
- "NEXT_YEAR_LABEL": "Next year"
829
- },
830
- "KChart": {
831
- "NO_DATA_AVAILABLE": "No data available"
832
- },
833
- "KTimeSeriesChart": {
834
- "TIME_LABEL": "Time",
835
- "EXPORT_SERIES": "Export series",
836
- "SERIES_EXPORT_FILE": "Series.csv"
837
- },
838
- "KFilter": {
839
- "SEARCH_LABEL": "Search"
840
- },
841
- "KTextArea": {
842
- "COLLAPSE": "Collapse"
843
- }
844
- }
845
-
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": "The server connection has been restaured, you can refresh the application in case data has been updated during the disconnection.",
130
+ "RELOAD": "Refresh",
131
+ "REFUSED": "Your connection have been refused by the server, you have been disconnected...",
132
+ "IGNORE": "Ignore",
133
+ "RETRY": "Retry",
134
+ "ALERT": "Alert",
135
+ "INFORMATION": "Information"
136
+ },
137
+ "pwa": {
138
+ "INSTALL_TITLE": "Install the application ?",
139
+ "INSTALL_MESSAGE": "We recommend that you install the application to take full advantage of all the features",
140
+ "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>",
141
+ "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.",
142
+ "INSTALL": "Install",
143
+ "IGNORE": "Ignore",
144
+ "UPDATE_TITLE": "Update available",
145
+ "UPDATE_MESSAGE": "To find out more consult the <a href=\"{changelog}\" target=\"_\">release note</a>",
146
+ "UPDATE": "Update"
147
+ }
148
+ },
149
+ "schemas": {
150
+ "OBJECT_NAME": "{name}",
151
+ "AVATAR_FIELD_LABEL": "Select an avatar",
152
+ "NAME_FIELD_LABEL": "Enter your name",
153
+ "COLOR_FIELD_LABEL": "Pick a color",
154
+ "ORGANISATIONS_CREATE_TITLE": "Create a new organisation ?",
155
+ "ORGANISATIONS_NAME_FIELD_LABEL": "Enter the name of this organisation",
156
+ "ORGANISATIONS_DESCRIPTION_FIELD_LABEL": "Enter a description name of this organisation",
157
+ "MEMBERS_TAGS_FIELD_LABEL": "Add somes tags to qualify this member",
158
+ "TAG_NAME": "{ object.value }",
159
+ "TAGS_CREATE_TITLE": "Create a new tag ?",
160
+ "TAGS_NAME_FIELD_LABEL": "Enter the name of this tag",
161
+ "TAGS_ICON_FIELD_LABEL": "Set the icon of this tag",
162
+ "TAGS_DESCRIPTION_FIELD_LABEL": "Enter a description of this tag",
163
+ "GROUPS_CREATE_TITLE": "Create a new group ?",
164
+ "GROUPS_NAME_FIELD_LABEL": "Enter the name of this group",
165
+ "GROUPS_DESCRIPTION_FIELD_LABEL": "Enter a description for this group",
166
+ "UPDATE_SETTINGS_TITLE": "Your settings",
167
+ "TIME_FORMAT_SETTINGS": "Time/Date format",
168
+ "TIME_FORMAT_SHORT_TIME_FIELD_LABEL": "Short time format",
169
+ "TIME_FORMAT_SHORT_TIME_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>&#x1F6C8;</a>",
170
+ "TIME_FORMAT_LONG_TIME_FIELD_LABEL": "Long time format",
171
+ "TIME_FORMAT_LONG_TIME_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>&#x1F6C8;</a>",
172
+ "TIME_FORMAT_SHORT_DATE_FIELD_LABEL": "Short date format",
173
+ "TIME_FORMAT_SHORT_DATE_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>&#x1F6C8;</a>",
174
+ "TIME_FORMAT_LONG_DATE_FIELD_LABEL": "Long date format",
175
+ "TIME_FORMAT_LONG_DATE_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>&#x1F6C8;</a>",
176
+ "TIME_FORMAT_SHORT_YEAR_FIELD_LABEL": "Short year format",
177
+ "TIME_FORMAT_SHORT_YEAR_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>&#x1F6C8;</a>",
178
+ "TIME_FORMAT_LONG_YEAR_FIELD_LABEL": "Long year format",
179
+ "TIME_FORMAT_LONG_YEAR_FIELD_HELPER": "<a target='_blank' href='https://momentjs.com/docs/#/displaying/format/'>&#x1F6C8;</a>",
180
+ "TIME_FORMAT_TIMEZONE_FIELD_LABEL": "Target timezone to use",
181
+ "UNITS_SETTINGS": "Units settings",
182
+ "LENGTH_FIELD_LABEL": "Default length unit",
183
+ "ALTITUDE_FIELD_LABEL": "Default altitude unit",
184
+ "AREA_FIELD_LABEL": "Default area unit",
185
+ "VELOCITY_FIELD_LABEL": "Default velocity unit",
186
+ "TEMPERATURE_FIELD_LABEL": "Default temperature unit",
187
+ "ANGLE_FIELD_LABEL": "Default angle unit",
188
+ "NOTATION_SETTINGS": "Number notation settings",
189
+ "NOTATION_FIELD_LABEL": "Default number notation",
190
+ "AUTO_NOTATION_FIELD_LABEL": "Select the best-suited number notation",
191
+ "FIXED_NOTATION_FIELD_LABEL": "Fixed precision number notation",
192
+ "EXPONENTIAL_NOTATION_FIELD_LABEL": "Exponential number notation",
193
+ "PRECISION_FIELD_LABEL": "Default number of decimal or significant digits"
194
+ },
195
+ "tours": {
196
+ "APP_BAR_OVERFLOW_MENU_LABEL": "When not visible, you can find it using the popup menu.",
197
+ "APP_BAR_ACTIONS_LABEL": "When not visible, you can find it in the actions bar.",
198
+ "CARD_OVERFLOW_MENU_LABEL": "Open the popup menu to see more actions.",
199
+ "REMOVE_CONFIRMATION_LABEL": "A confirmation will be required before final removal.",
200
+ "login": {
201
+ "LOCAL_LABEL": "You can login using your <b>personal identifiers</b>.",
202
+ "EMAIL_LABEL": "Enter your email address first.",
203
+ "PASSWORD_LABEL": "Then enter your password.",
204
+ "PASSWORD_VISIBILITY_LABEL": "Display you password clearly if there is any doubt about.",
205
+ "LOGIN_LABEL": "Now, finish by login.",
206
+ "LOST_PASSWORD_LINK_LABEL": "If you have lost your password launch the <b>recovery procedure</b>",
207
+ "REGISTER_LINK_LABEL": "If you don't yet have an account launch the <b>registration procedure</b>"
208
+ },
209
+ "reset-password": {
210
+ "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>.",
211
+ "EMAIL_LABEL": "First, enter the email address you have used to register or to get invited.",
212
+ "RESET_LABEL": "Now finish by sending the email containing the link (<b>please check the email is not in your spam folder</b>)."
213
+ },
214
+ "register": {
215
+ "LOCAL_LABEL": "You can register to the system by defining your <b>personal identifiers</b>.",
216
+ "NAME_LABEL": "Enter your name as viewed by others users first.",
217
+ "EMAIL_LABEL": "Enter the email address you will use to connect and receive security related messages.",
218
+ "PASSWORD_LABEL": "Choose a password, if it does not comply our security policy an alert will inform you about the rules to follow.",
219
+ "PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
220
+ "CONFIRM_PASSWORD_LABEL": "Confirm your password to avoid any error.",
221
+ "CONFIRM_PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
222
+ "TERMS_LABEL": "Read and accept our <b><a style='color:white' href='/#/terms'>terms of service</a></b> in order to use the system.",
223
+ "REGISTER_LABEL": "Last, create your account.",
224
+ "EMAIL_VERIFICATION_LABEL": "We will send you an email back containing a link to <b>verify your address</b>.",
225
+ "LOGIN_LINK_LABEL": "You can now login whenever you want using your <b>personal identifiers</b>"
226
+ },
227
+ "create-organisation": {
228
+ "ORGANISATION_NAME_LABEL": "Enter the organisation name as viewed by others users.",
229
+ "ORGANISATION_DESCRIPTION_LABEL": "Enter a detailed description.",
230
+ "ORGANISATION_AVATAR_LABEL": "Select the image or the logo of your organisation as seen by your members.",
231
+ "CREATE_ORGANISATION_LABEL": "Confirm the creation of your new organisation."
232
+ },
233
+ "account": {
234
+ "PROFILE_LABEL": "This activity allows to update your profile information",
235
+ "AVATAR_LABEL": "Your avatar visible in the side menu when an image file has been selected.",
236
+ "NAME_LABEL": "Your name as viewed by others users.",
237
+ "UPDATE_LABEL": "Confirm the update in order to apply the modifications to your profile information.",
238
+ "ACCOUNT_LABEL": "Manage <b>your identifiers</b> and their security",
239
+ "VERIFY_EMAIL_LABEL": "This section allows you to check your email.",
240
+ "TOKEN_FIELD_LABEL": "Enter the code received by email.",
241
+ "RESEND_VERIFY_SIGNUP_LABEL": "If you haven't received it or have lost it, you can have a new one sent to you.",
242
+ "CONFIRM_VERIFY_EMAIL_LABEL": "Finally, confirm that.",
243
+ "PASSWORD_PROCEDURE_LABEL": "This section allows you to initiate the password change procedure.",
244
+ "OLD_PASSWORD_LABEL": "First, enter your previous password.",
245
+ "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.",
246
+ "NEW_PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
247
+ "CONFIRM_NEW_PASSWORD_LABEL": "Confirm your password to avoid any error.",
248
+ "CHANGE_PASSWORD_LABEL": "Last, confirm the modification request.",
249
+ "CHANGE_IDENTITY_PROCEDURE_LABEL": "This section allows you to initiate the e-mail address change procedure.",
250
+ "PASSWORD_LABEL": "First, enter your password.",
251
+ "PASSWORD_VISIBILITY_LABEL": "@:tours.login.PASSWORD_VISIBILITY_LABEL",
252
+ "EMAIL_LABEL": "Enter your <b>new email address</b>.",
253
+ "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>).",
254
+ "SUBSCRIPTIONS_LABEL": "This section list all the subscriptions you have.",
255
+ "UNSUBSCRIBE_LABEL": "Check for any suspect activity and remove outdated subscriptions.",
256
+ "DANGER_ZONE_LABEL": "This activity allows to remove your account",
257
+ "DELETE_LABEL": "A manual confirmation will be required before final removal."
258
+ },
259
+ "groups": {
260
+ "GROUPS_LABEL": "This activity allows to manage the <b>groups</b> in your organisation.",
261
+ "GROUP_DEFINITION_LABEL": "A group allows to delegate the management of a shared workspace limited to its members.",
262
+ "OVERFLOW_MENU_LABEL": "@:tours.APP_BAR_OVERFLOW_MENU_LABEL",
263
+ "SEARCH_LABEL": "Type part of a word contained in the name of your groups in the arising bar to perform a search.",
264
+ "SORT_LABEL": "Sort your groups by ascending or descending alphabetical order this button.",
265
+ "NEW_GROUP_LABEL": "Create a <b>new group</b> using this button.",
266
+ "CREATE_GROUP_LINK_LABEL": "How to create a group",
267
+ "GROUP_CARD_LABEL": "Each group is viewed as a card providing available actions.",
268
+ "GROUP_MEMBERS_LABEL": "This section shows you the <b>members</b> count of your group.",
269
+ "LIST_GROUP_MEMBERS_LABEL": "Shows the <b>members</b> of your group by selecting it.",
270
+ "UPDATE_GROUP_LABEL": "Update the name of your group through this action.",
271
+ "UPDATE_GROUP_DESCRIPTION_LABEL": "Update the description of your group through this action.",
272
+ "GROUP_OVERFLOW_MENU_LABEL": "@:tours.CARD_OVERFLOW_MENU_LABEL",
273
+ "REMOVE_GROUP_LABEL": "Remove your group through this action.",
274
+ "REMOVE_CONFIRMATION_LABEL": "@:tours.REMOVE_CONFIRMATION_LABEL"
275
+ },
276
+ "create-group": {
277
+ "GROUP_NAME_LABEL": "Choose a name for your group.",
278
+ "GROUP_DESCRIPTION_LABEL": "Choose a detailed description for your group.",
279
+ "CREATE_GROUP_LABEL": "Confirm the creation of your new group."
280
+ },
281
+ "members": {
282
+ "MEMBERS_LABEL": "This activity allows to manage the <b>members</b> in your organisation.",
283
+ "MEMBER_DEFINITION_LABEL": "A <b>member</b> is a user able to access the shared workspace offered by your organisation.",
284
+ "OVERFLOW_MENU_LABEL": "@:tours.APP_BAR_OVERFLOW_MENU_LABEL",
285
+ "SEARCH_LABEL": "Type part of a word contained in the name of your members in the arising bar to perform a search.",
286
+ "SEARCH_MORE_LABEL": "Type also a word contained in the name of a group or a tag associated to your members to filter accordingly.",
287
+ "FILTER_LABEL": "Filter your members according to their status using this button.",
288
+ "SORT_LABEL": "Sort your members by ascending or descending alphabetical order this button.",
289
+ "ADD_INVITE_MEMBER_LABEL": "Add members to your organisation through this action.",
290
+ "ADD_MEMBER_LABEL": "If your future member <b>already has an account</b>, <b>add him</b> using this button.",
291
+ "ADD_MEMBER_LINK_LABEL": "How to add a member",
292
+ "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 .",
293
+ "INVITE_MEMBER_LINK_LABEL": "How to invite a member",
294
+ "MEMBER_CARD_LABEL": "Each member is viewed as a card providing available actions.",
295
+ "ROLE_LABEL": "Visualise the role of your member at a glance.",
296
+ "TAGS_LABEL": "Visualise tags of your member at a glance as well.",
297
+ "TAGS_CONTENT_LABEL": "Use the cross to delete a tag.",
298
+ "GROUPS_LABEL": "Visualise groups of your member at a glance as well.",
299
+ "GROUPS_CONTENT_LABEL": "Select one of the member groups to show available actions.",
300
+ "ADD_TAG_LABEL": "Add tag of your member through this action.",
301
+ "ADD_TAG_LINK_LABEL": "How to manage tags",
302
+ "JOIN_GROUP_LABEL": "Add your member to a <b>group</b> through this action.",
303
+ "JOIN_GROUP_LINK_LABEL": "How to manage groups",
304
+ "CHANGE_ROLE_LABEL": "Update the role of your member through this action.",
305
+ "CHANGE_ROLE_LINK_LABEL": "How to manage roles",
306
+ "REMOVE_MEMBER_LABEL": "Remove the member from your organisation through this action.",
307
+ "REMOVE_CONFIRMATION_LABEL": "@:tours.REMOVE_CONFIRMATION_LABEL"
308
+ },
309
+ "add-member": {
310
+ "UNIQUE_TAB_LABEL": "Add a unique person to your organisation using his email adress.",
311
+ "UNIQUE_EMAIL_LABEL": "Enter the email of the desired person",
312
+ "UNIQUE_CONTINUE_BUTTON_LABEL": "Click this button to procced with the invitation or to add the person if they already have an account.",
313
+ "UNIQUE_NAME_LABEL": "Enter the name of the person.",
314
+ "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.",
315
+ "UNIQUE_ADD_BUTTON_LABEL": "Click this button to send the invitation.",
316
+ "MULTIPLE_TAB_LABEL": "Add multiple persons to your organisation using a CSV file.",
317
+ "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.",
318
+ "MULTIPLE_ADD_BUTTON_LABEL": "Click this button to proceed with the invitations."
319
+ },
320
+ "role-member": {
321
+ "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.",
322
+ "UPDATE_ROLE_LABEL": "Update the role of your member"
323
+ },
324
+ "join-group": {
325
+ "GROUP_NAME_LABEL": "Typing <b>the first characters</b> of a group name to make it selectable.",
326
+ "MEMBER_ROLE_LABEL": "Choisissez le rôle de la personne au sein du groupe.",
327
+ "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).",
328
+ "ADD_MEMBER_LABEL": "Confirm adding the member to the group."
329
+ },
330
+ "add-tag": {
331
+ "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.",
332
+ "ADD_TAG_LABEL": "Confirm addition the tags on your members."
333
+ },
334
+ "tags": {
335
+ "TAGS_LABEL": "This activity allows to manage the <b>tags</b> in your organisation.",
336
+ "TAG_DEFINITION_LABEL": "A tag allows to classify a subset of your organisation members (e.g. a skill or a service).",
337
+ "OVERFLOW_MENU_LABEL": "@:tours.APP_BAR_OVERFLOW_MENU_LABEL",
338
+ "SEARCH_LABEL": "Type part of a word contained in the name of your tags in the arising bar to perform a search.",
339
+ "SORT_LABEL": "Sort your tags by ascending or descending alphabetical order this button.",
340
+ "TAG_CARD_LABEL": "Each tag is viewed as a card providing available actions.",
341
+ "NEW_TAG_LABEL": "Create a <b>new tag</b> using this button.",
342
+ "CREATE_TAG_LINK_LABEL": "How to create a tag",
343
+ "TAG_COUNT_LABEL": "This section shows you the number of <b>members</b> having your tag.",
344
+ "LIST_MEMBERS_LABEL": "Shows the <b>members</b> with this tag by selecting it.",
345
+ "REMOVE_TAG_LABEL": "Remove your tag through this action.",
346
+ "REMOVE_CONFIRMATION_LABEL": "@:tours.REMOVE_CONFIRMATION_LABEL",
347
+ "UPDATE_TAG_LABEL": "Update properties of your tag through this action, this will update all members having this tag.",
348
+ "UPDATE_TAG_DESCRIPTION_LABEL": "Update the description of your tag through this action."
349
+ },
350
+ "create-tag": {
351
+ "TAG_NAME_LABEL": "Choose a name for your tag.",
352
+ "TAG_ICON_LABEL": "Choose an icon to easily recognize your tag.",
353
+ "TAG_DESCRIPTION_LABEL": "Choose a detailed description for your tag.",
354
+ "CREATE_TAG_LABEL": "Confirm the creation of your new tag."
355
+ }
356
+ },
357
+ "reader": {
358
+ "READING_FILE": "Reading file {file}"
359
+ },
360
+ "storage": {
361
+ "UPLOADING_FILE": "Uploading file {file}"
362
+ },
363
+ "KVersion": {
364
+ "CLIENT_VERSION": "Client v{version}",
365
+ "API_VERSION": "API v{version}"
366
+ },
367
+ "KSponsor": {
368
+ "KDK_POWERED": "Powered by Kalisio's Development Kit",
369
+ "MORE_ABOUT_KDK": "More about KDK",
370
+ "MORE_ABOUT_KALISIO": "More about Kalisio"
371
+ },
372
+ "KPlatform": {
373
+ "PROPERTY": "Property",
374
+ "VALUE": "Value",
375
+ "COPY_INFO": "Copy info",
376
+ "INFO_COPIED": "Platform info copied",
377
+ "CANNOT_COPY_INFO": "Cannot copy platform info"
378
+ },
379
+ "KAbout": {
380
+ "DOMAIN": "Hosted on",
381
+ "FLAVOR": "Flavor",
382
+ "VIEW_CHANGELOG": "Changlog",
383
+ "BUG_REPORT": "Report us a bug",
384
+ "BUG_REPORT_SUBJECT": "[{appName}] Bug report - Client v{clientVersion} - API v{apiVersion}",
385
+ "BUG_REPORT_BODY": "Please detail your problem here%0D%0A%0D%0APlatform information to be kept%0D%0A%0D%0A",
386
+ "PLATFORM_INFO": "Platform information"
387
+ },
388
+ "KWelcome": {
389
+ "WELCOME_TITLE": "Welcome !",
390
+ "WELCOME_MESSAGE": "This quick start guide covers the main application features.",
391
+ "ONLINE_HELP": "Read first our online help to get an overview of the basic concepts",
392
+ "CONTEXTUAL_HELP": "To get contextual help whenever your are lost simply click on the following icon",
393
+ "TOUR_MESSAGE": "Launch now a quick overview tutorial detailing the main menu by clicking on the following icon",
394
+ "TOUR_LINK_MESSAGE": "Each time a tutorial step exhibits this icon it allows to launch a new one detailing the target feature.",
395
+ "GOODBYE_MESSAGE": "Thanks for reading this tutorial, you are now ready to use the application !",
396
+ "HIDE_WELCOME": "Don't display this message again"
397
+ },
398
+ "KTour": {
399
+ "SKIP_LABEL": "Skip",
400
+ "NEXT_LABEL": "Next",
401
+ "PREVIOUS_LABEL": "Previous",
402
+ "FINISH_LABEL": "Finish",
403
+ "MISS_ERROR": "Before going further please perform the required actions"
404
+ },
405
+ "KScreen": {
406
+ "CLIENT_VERSION": "Client v",
407
+ "API_VERSION": "API v",
408
+ "EMAIL_FIELD_LABEL": "Enter your email address",
409
+ "CHANGE_ENDPOINT_LINK": "Change endpoint",
410
+ "DEVELOPMENT_VERSION": "DEVELOPMENT VERSION",
411
+ "TEST_VERSION": "TEST VERSION"
412
+ },
413
+ "KErrorScreen": {
414
+ "MESSAGE": "Oups... page not found",
415
+ "GO_HOME_LABEL": "Go home page"
416
+ },
417
+ "KLoginScreen": {
418
+ "EMAIL_FIELD_LABEL": "@:KScreen.EMAIL_FIELD_LABEL",
419
+ "PASSWORD_FIELD_LABEL": "Enter your password",
420
+ "LOGIN_LABEL": "Log in",
421
+ "FORGOT_YOUR_PASSWORD_LABEL": "Forgot your password ?",
422
+ "DONT_HAVE_AN_ACCOUNT_LABEL": "Don't have an account ?",
423
+ "INVALID_EMAIL": "Unable to find the account associated with the email entered",
424
+ "LOGIN_ERROR": "Wrong credentials or service unavailable, please try again",
425
+ "CONTEXTUAL_HELP": "@:NEED_HELP"
426
+ },
427
+ "KRegisterScreen": {
428
+ "TITLE": "Register",
429
+ "NAME_FIELD_LABEL": "@:schemas.NAME_FIELD_LABEL",
430
+ "EMAIL_FIELD_LABEL": "@:KScreen.EMAIL_FIELD_LABEL",
431
+ "PASSWORD_FIELD_LABEL": "Enter a password",
432
+ "CONFIRM_PASSWORD_FIELD_LABEL": "Confirm your password",
433
+ "ACCEPT_TERMS_LABEL": "I accept the terms and policies",
434
+ "ACCEPT_TERMS_HELPER": "<a href='{domain}/#/terms' target='_blank'>terms and policies</a>",
435
+ "ACCEPT_TERMS_ERROR_LABEL": "You must accept our terms and policies to register",
436
+ "REGISTER_LABEL": "Register",
437
+ "ALREADY_HAVE_AN_ACCOUNT_LINK": "Already have an account ?",
438
+ "EMAIL_ALREADY_TAKEN": "Email already taken !",
439
+ "REGISTER_ERROR": "Wrong input or service unavailable, please try again",
440
+ "CONTEXTUAL_HELP": "@:NEED_HELP"
441
+ },
442
+ "KLogoutScreen": {
443
+ "TITLE": "You are now logged out",
444
+ "LOG_IN_AGAIN_LABEL": "Log in again ?"
445
+ },
446
+ "KEndpointScreen": {
447
+ "TITLE": "Change endpoint",
448
+ "BASE_URL_FIELD_LABEL": "Enter the address of the server to be used",
449
+ "APPLY_LABEL": "Apply",
450
+ "RESET_LABEL": "Reset",
451
+ "LOG_IN_LABEL": "Log in ?"
452
+ },
453
+ "KProfile": {
454
+ "EDIT_PROFILE": "Edit my profile",
455
+ "MANAGE_ACCOUNT": "Manage my account"
456
+ },
457
+ "KDeleteAccountManager": {
458
+ "TITLE": "Delete my account",
459
+ "QUESTION": "Are you sure you want to delete your account ?",
460
+ "CONFIRMATION_TITLE": "Warning: the deletion of your account is irrevocable and all data attached to it will be lost",
461
+ "CONFIRMATION": "Enter your account name to confirm the deletion"
462
+ },
463
+ "KPasswordManager": {
464
+ "TITLE": "Change my password",
465
+ "PASSWORD_CHANGED": "Your password has been successfully changed",
466
+ "OLD_PASSWORD_FIELD_LABEL": "Enter your old password",
467
+ "PASSWORD_FIELD_LABEL": "Enter your new password",
468
+ "CONFIRM_PASSWORD_FIELD_LABEL": "Confirm your new password"
469
+ },
470
+ "KEmailManager": {
471
+ "TITLE": "Change my email address",
472
+ "PASSWORD_FIELD_LABEL": "Enter your password",
473
+ "EMAIL_FIELD_LABEL": "Enter your new email address",
474
+ "TOKEN_LABEL": "To validate your new email address, enter the code you received by email",
475
+ "EMAIL_CHANGED": "You new address has been taken into account. An email has been sent to you to confirm the change.",
476
+ "ERROR_MESSAGE": "Invalid code"
477
+ },
478
+ "KVerifyEmailManager": {
479
+ "TITLE": "Check my email address",
480
+ "HELP_LABEL": "Why should I verify my email address ?",
481
+ "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.",
482
+ "HELP_EMAIL_LABEL": "I never received the verification email, what should I do ?",
483
+ "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.",
484
+ "TOKEN_LABEL": "Enter the code received by email to validate your email address",
485
+ "EMAIL_VERIFIED": "Your address has been verified. An email has been sent to you to confirm the change.",
486
+ "ACTION": "Resend verification code",
487
+ "ERROR_MESSAGE": "Invalid code, request a new one"
488
+ },
489
+ "KSubscriptionsManager": {
490
+ "TITLE": "Manage my subscriptions",
491
+ "EMPTY": "No subscriptions"
492
+ },
493
+ "KSubscription": {
494
+ "UNSUBSCRIBE_LABEL": "Unsubscribe",
495
+ "LAST_ACTIVITY": "Last activity",
496
+ "UNSUBSCRIBE_DIALOG_TITLE": "Unsubscribe from {description} ?",
497
+ "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."
498
+ },
499
+ "KGrid": {
500
+ "EMPTY_GRID": "@:NO_ITEM"
501
+ },
502
+ "KList": {
503
+ "EMPTY_LIST": "@:NO_ITEM"
504
+ },
505
+ "KTable": {
506
+ "EMPTY_TABLE": "@:NO_ITEM",
507
+ "TABLE_COLUMNS": "Properties"
508
+ },
509
+ "KDataTable": {
510
+ "EMPTY_TABLE": "@:NO_ITEM",
511
+ "TABLE_COLUMNS": "Properties",
512
+ "NO_DATA_AVAILABLE": "No data available",
513
+ "EXPORT_DATA": "Export data",
514
+ "DATA_EXPORT_FILE": "Data.csv"
515
+ },
516
+ "KHistory": {
517
+ "EMPTY_HISTORY": "@:NO_ITEM"
518
+ },
519
+ "KColumn": {
520
+ "EMPTY_COLUMN": "@:NO_ITEM"
521
+ },
522
+ "KCard": {
523
+ "DESCRIPTION_SECTION": "Description",
524
+ "NO_DESCRIPTION_LABEL": "No description",
525
+ "MORE_ACTION": "More details",
526
+ "LESS_ACTION": "Less details"
527
+ },
528
+ "KColorChooser": {
529
+ "CANCEL_BUTTON": "@:CANCEL",
530
+ "DONE_BUTTON": "@:DONE"
531
+ },
532
+ "KIconChooser": {
533
+ "CLOSE_ACTION": "@:CANCEL",
534
+ "DONE_BUTTON": "@:DONE",
535
+ "SEARCH_FIELD_LABEL": "Type to search",
536
+ "SEARCH_CATEGORY_LABEL": "All categories",
537
+ "categories": {
538
+ "accessibility": "accessibility",
539
+ "alert": "alert",
540
+ "animals": "animals",
541
+ "arrows": "arrows",
542
+ "audio-video": "audio-video",
543
+ "automotive": "automotive",
544
+ "autumn": "autumn",
545
+ "beverage": "beverage",
546
+ "buildings": "buildings",
547
+ "business": "business",
548
+ "camping": "camping",
549
+ "charity": "charity",
550
+ "chat": "chat",
551
+ "chess": "chess",
552
+ "childhood": "childhood",
553
+ "clothing": "clothing",
554
+ "code": "code",
555
+ "communication": "communication",
556
+ "computers": "computers",
557
+ "construction": "construction",
558
+ "currency": "currency",
559
+ "date-time": "date-time",
560
+ "design": "design",
561
+ "editors": "editors",
562
+ "education": "education",
563
+ "emoji": "emoji",
564
+ "energy": "energy",
565
+ "files": "files",
566
+ "finance": "finance",
567
+ "fitness": "fitness",
568
+ "food": "food",
569
+ "fruit-vegetable": "fruit-vegetable",
570
+ "games": "games",
571
+ "gaming-tabletop": "gaming-tabletop",
572
+ "gender": "gender",
573
+ "halloween": "halloween",
574
+ "hands": "hands",
575
+ "health": "health",
576
+ "holiday": "holiday",
577
+ "hotel": "hotel",
578
+ "household": "household",
579
+ "images": "images",
580
+ "interfaces": "interfaces",
581
+ "logistics": "logistics",
582
+ "maps": "maps",
583
+ "maritime": "maritime",
584
+ "marketing": "marketing",
585
+ "mathematics": "mathematics",
586
+ "medical": "medical",
587
+ "moving": "moving",
588
+ "music": "music",
589
+ "objects": "objects",
590
+ "payments-shopping": "payments-shopping",
591
+ "pharmacy": "pharmacy",
592
+ "political": "political",
593
+ "religion": "religion",
594
+ "science": "science",
595
+ "science-fiction": "science-fiction",
596
+ "security": "security",
597
+ "shapes": "shapes",
598
+ "shopping": "shopping",
599
+ "social": "social",
600
+ "spinners": "spinners",
601
+ "sports": "sports",
602
+ "spring": "spring",
603
+ "status": "status",
604
+ "summer": "summer",
605
+ "toggle": "toggle",
606
+ "travel": "travel",
607
+ "users-people": "users-people",
608
+ "vehicles": "vehicles",
609
+ "weather": "weather",
610
+ "winter": "winter",
611
+ "writing": "writing"
612
+ }
613
+ },
614
+ "KTagField": {
615
+ "CREATE_TAG": "Create <b>c</b>"
616
+ },
617
+ "KFileField": {
618
+ "INVALID_FILE_TYPE": "Invalid file type, please select the right file type",
619
+ "INVALID_FILE_SIZE": "Invalid file size, the file is too large",
620
+ "UPLOAD_FILE_SUCCEEDED": "File {file} has been successfully uploaded",
621
+ "UPLOAD_FILE_ERRORED": "Cannot upload file {file} !"
622
+ },
623
+ "KCronField": {
624
+ "INVALID_CRON": "Invalid CRON expression"
625
+ },
626
+ "KMediaBrowser": {
627
+ "CLOSE_ACTION": "@:CLOSE",
628
+ "DOWNLOAD_MEDIA_ACTION": "Donwload media",
629
+ "RESTORE_IMAGE_ACTION": "Restore image",
630
+ "REMOVE_MEDIA_ACTION": "Remove the media",
631
+ "REMOVE_DIALOG_TITLE": "Remove the media {media} ?",
632
+ "REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove the media <b>{media}</b> ?",
633
+ "ADD_MEDIA_ACTION": "Add a media",
634
+ "ADD_PHOTO_ACTION": "Add a photo",
635
+ "UPLOAD_TITLE": "Add a media",
636
+ "UPLOAD_FILE_FIELD_LABEL": "Select a file",
637
+ "UPLOAD": "Add",
638
+ "NO_MEDIA": "There is no media to show, please add a media first with one of the action buttons."
639
+ },
640
+ "KFab": {
641
+ "CLOSE_ACTION": "@:CLOSE"
642
+ },
643
+ "KModal": {
644
+ "CLOSE_ACTION": "@:CLOSE"
645
+ },
646
+ "KWindow": {
647
+ "CLOSE_ACTION": "@:CLOSE",
648
+ "PIN_ACTION": "Pin",
649
+ "RESTORE_ACTION": "Restore",
650
+ "MAXIMIZE_ACTION": "Maximize"
651
+ },
652
+ "KOrganisationsActivity": {
653
+ "ORGANISATIONS_LABEL": "My organisations",
654
+ "CREATE_ORGANISATION_LABEL": "Create an organisation",
655
+ "SEARCH_ORGANISATIONS": "Rechercher des organisations",
656
+ "SORT_ORGANISATIONS": "Trier les organisations"
657
+ },
658
+ "KMembersActivity": {
659
+ "MEMBERS_LABEL": "@:MEMBERS",
660
+ "SORT_MEMBERS": "Sort members",
661
+ "SEARCH_MEMBERS": "Search members",
662
+ "ADD_USER_LABEL": "Add a member",
663
+ "INVITE_GUEST_LABEL": "Invite guests"
664
+ },
665
+ "KAddMember": {
666
+ "TITLE": "Add one or more persons ?",
667
+ "EMAIL_FIELD_LABEL": "Enter the email address of the person to be added",
668
+ "NAME_FIELD_LABEL": "Enter the name of this person",
669
+ "ROLE_FIELD_LABEL": "Select the role granted to this person",
670
+ "ADD_MESSAGE": "<b>{email}</b> is already registered. Would you like to add this persion to your organisation ?",
671
+ "INVITE_MESSAGE": "<b>{email}</b> is not registered. Would you like to invite this person ?",
672
+ "FILE_FIELD_LABEL": "Select the CSV file you want to import",
673
+ "OWNER_LABEL": "@:OWNER",
674
+ "MANAGER_LABEL": "@:MANAGER",
675
+ "MEMBER_LABEL": "@:MEMBER",
676
+ "CANCEL_BUTTON": "@:CANCEL",
677
+ "CONTINUE_BUTTON": "Continue",
678
+ "BACK_BUTTON": "Back",
679
+ "ADD_BUTTON": "Add",
680
+ "INVITE_BUTTON": "Invite",
681
+ "ALREADY_MEMBER_ERROR": "This person is already a member of your organisation",
682
+ "CONTENT_FILE_ERROR": "Are you sure your file is correclty formatted ?",
683
+ "INVALID_FIELDS_VALUES_ERROR": "Invalid values",
684
+ "INVALID_FIELDS_NUMBER_ERROR": "Invalid field number",
685
+ "ALERT_FILE_IMPORT_MESSAGE": "No valid record detected. Please ensure your file is correctly formatted",
686
+ "CONFIRM_FILE_IMPORT_MESSAGE": "<b>{errors} error(s)</b> detected among {records}] record(s). Would you to continue ?",
687
+ "USER_ADDED_MESSAGE": "This person as been added",
688
+ "GUEST_ADDED_MESSAGE": "This person as been invited"
689
+ },
690
+ "KAddTag": {
691
+ "TITLE": "Tag {member} with an existing tag ?",
692
+ "TAG_FIELD_LABEL": "Enter the name of the tag",
693
+ "CLOSE_ACTION": "@:CLOSE",
694
+ "ADD_BUTTON": "Tag"
695
+ },
696
+ "KJoinGroup": {
697
+ "TITLE": "Add {member} to an existing group ?",
698
+ "GROUP_FIELD_LABEL": "Enter the name of the group",
699
+ "ROLE_FIELD_LABEL": "Delegate group management to this member?",
700
+ "OWNER_LABEL": "@:OWNER",
701
+ "MANAGER_LABEL": "@:MANAGER",
702
+ "MEMBER_LABEL": "@:MEMBER",
703
+ "CLOSE_ACTION": "@:CLOSE",
704
+ "ADD_BUTTON": "Add"
705
+ },
706
+ "KChangeRole": {
707
+ "TITLE": "Change role of {member} ?",
708
+ "ROLE_FIELD_LABEL": "Select the role to be granted to the user",
709
+ "CLOSE_ACTION": "@:CLOSE",
710
+ "UPDATE_BUTTON": "Update"
711
+ },
712
+ "KMemberCard": {
713
+ "EDIT_ACTION": "@:EDIT",
714
+ "REMOVE_ACTION": "@:REMOVE",
715
+ "TAGS_SECTION": "Tags",
716
+ "NO_TAGS_LABEL": "Update tags",
717
+ "TAG_ACTION": "Add a tag",
718
+ "REMOVE_TAG_DIALOG_TITLE": "Remove tag {tag} ?",
719
+ "REMOVE_TAG_DIALOG_MESSAGE": "Are you sure you want to remove tag <b>{tag}</b> for <b>{member}</b>?",
720
+ "GROUPS_SECTION": "Groups",
721
+ "NO_GROUPS_LABEL": "No groups",
722
+ "JOIN_GROUP_ACTION": "Join a group",
723
+ "EXPIRE_AT_LABEL": "Invitation expire at",
724
+ "CHANGE_ROLE_ACTION": "Change role",
725
+ "RESEND_INVITATION_ACTION": "Resend an invitation",
726
+ "REMOVE_DIALOG_TITLE": "Remove {member} ?",
727
+ "REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove <b>{member}</b> from your organisation ?",
728
+ "LEAVE_GROUP_DIALOG_TITLE": "Leave the group {group} '?",
729
+ "LEAVE_GROUP_DIALOG_MESSAGE": "Are you sure you want <b>{member}</b> to leave the group <b>{group}</b> ?",
730
+ "RESEND_INVITATION_DIALOG_TITLE": "Resend the invitation for {member} ?",
731
+ "RESEND_INVITATION_DIALOG_MESSAGE": "Is <b>{member}</b>'s email address correct ?"
732
+ },
733
+ "KTagsActivity": {
734
+ "TAGS_LABEL": "@:TAGS",
735
+ "SORT_TAGS": "Sort tags",
736
+ "SEARCH_TAGS": "Search tags",
737
+ "CREATE_TAG_LABEL": "Create a tag"
738
+ },
739
+ "KTagCard": {
740
+ "EDIT_ACTION": "@:EDIT",
741
+ "REMOVE_ACTION": "@:REMOVE",
742
+ "MEMBERS_SECTION": "Members",
743
+ "MEMBERS_LABEL": "{count} member(s)",
744
+ "VIEW_MEMBERS_LABEL": "View members with tag"
745
+ },
746
+ "KGroupsActivity": {
747
+ "GROUPS_LABEL": "@:GROUPS",
748
+ "SORT_GROUPS": "Sort groups",
749
+ "SEARCH_GROUPS": "Search groups",
750
+ "CREATE_GROUP_LABEL": "Create a group"
751
+ },
752
+ "KGroupCard": {
753
+ "EDIT_ACTION": "@:EDIT",
754
+ "REMOVE_ACTION": "@:REMOVE",
755
+ "DESCRIPTION_SECTION": "Description",
756
+ "NO_DESCRIPTION_LABEL": "No description",
757
+ "MEMBERS_SECTION": "Members",
758
+ "MEMBERS_LABEL": "{count} member(s)",
759
+ "VIEW_MEMBERS_LABEL": "View members"
760
+ },
761
+ "KResetPassword": {
762
+ "TITLE": "Reset your password ?",
763
+ "MESSAGE": "Please enter your new password to proceed",
764
+ "ACTION": "Reset",
765
+ "RESEND_LINK": "Resend reset password code",
766
+ "EMAIL_FIELD_LABEL": "Enter your email address",
767
+ "PASSWORD_FIELD_LABEL": "Enter your new password",
768
+ "CONFIRM_PASSWORD_FIELD_LABEL": "Confirm your new password",
769
+ "TOKEN_FIELD_LABEL": "Enter the code received by email",
770
+ "SUCCESS_MESSAGE": "Password reset, you will receive a confirmation email",
771
+ "ERROR_MESSAGE_BAD_PARAMS": "Your password has already been reset or your account has been removed",
772
+ "ERROR_MESSAGE_VERIFY_EXPIRED": "The delay to reset has expired, please resend the reset password email with the link below",
773
+ "ERROR_MESSAGE_DEFAULT": "Error while trying to reset password, please try again later"
774
+ },
775
+ "KSendResetPassword": {
776
+ "TITLE": "Reset my password ?",
777
+ "MESSAGE": "Enter your email address and we will send you a code to reset your password",
778
+ "ACTION": "Send",
779
+ "EMAIL_FIELD_LABEL": "Enter your email address",
780
+ "ERROR_INVALID_EMAIL": "Unable to find the account associated to the email entered",
781
+ "ERROR_MESSAGE_IS_VERIFIED": "Check your inbox and verify your email address first",
782
+ "ERROR_MESSAGE_DEFAULT": "Error while sending email, please check the address and send it again or try again later"
783
+ },
784
+ "KMemberFilter": {
785
+ "NONE": "None",
786
+ "OWNER": "Owner",
787
+ "MANAGER": "Manager",
788
+ "MEMBER": "Member",
789
+ "GUEST": "Guest"
790
+ },
791
+ "KSorter": {
792
+ "SORT": "Sort"
793
+ },
794
+ "KAbsoluteTimeRange": {
795
+ "PICK_START_DATE_LABEL": "Update start date",
796
+ "PICK_START_TIME_LABEL": "Update start time",
797
+ "PICK_END_DATE_LABEL": "Update end date",
798
+ "PICK_END_TIME_LABEL": "Update end time"
799
+ },
800
+ "KRelativeTimeRanges": {
801
+ "LAST_HOUR_LABEL": "Last hour",
802
+ "LAST_2_HOURS_LABEL": "Last 2 hours",
803
+ "LAST_3_HOURS_LABEL": "Last 3 hours",
804
+ "LAST_6_HOURS_LABEL": "Last 6 hours",
805
+ "LAST_12_HOURS_LABEL": "Last 12 hours",
806
+ "LAST_DAY_LABEL": "Last day",
807
+ "LAST_2_DAYS_LABEL": "Last 2 days",
808
+ "LAST_3_DAYS_LABEL": "Last 3 days",
809
+ "LAST_WEEK_LABEL": "Last week",
810
+ "LAST_2_WEEKS_LABEL": "Last 2 weeks",
811
+ "LAST_MONTH_LABEL": "Last month",
812
+ "LAST_3_MONTHS_LABEL": "Last 3 months",
813
+ "LAST_6_MONTHS_LABEL": "Last 6 months",
814
+ "LAST_YEAR_LABEL": "Last year",
815
+ "NEXT_HOUR_LABEL": "Next hour",
816
+ "NEXT_2_HOURS_LABEL": "Next 2 hours",
817
+ "NEXT_3_HOURS_LABEL": "Next 3 hours",
818
+ "NEXT_6_HOURS_LABEL": "Next 6 hours",
819
+ "NEXT_12_HOURS_LABEL": "Next 12 hours",
820
+ "NEXT_DAY_LABEL": "Next day",
821
+ "NEXT_2_DAYS_LABEL": "Next 2 days",
822
+ "NEXT_3_DAYS_LABEL": "Next 3 days",
823
+ "NEXT_WEEK_LABEL": "Next week",
824
+ "NEXT_2_WEEKS_LABEL": "Next 2 weeks",
825
+ "NEXT_MONTH_LABEL": "Next month",
826
+ "NEXT_3_MONTHS_LABEL": "Next 3 months",
827
+ "NEXT_6_MONTHS_LABEL": "Next 6 months",
828
+ "NEXT_YEAR_LABEL": "Next year"
829
+ },
830
+ "KChart": {
831
+ "NO_DATA_AVAILABLE": "No data available"
832
+ },
833
+ "KTimeSeriesChart": {
834
+ "TIME_LABEL": "Time",
835
+ "EXPORT_SERIES": "Export series",
836
+ "SERIES_EXPORT_FILE": "Series.csv"
837
+ },
838
+ "KFilter": {
839
+ "SEARCH_LABEL": "Search"
840
+ },
841
+ "KTextArea": {
842
+ "COLLAPSE": "Collapse"
843
+ }
844
+ }
845
+