@kalisio/kdk 2.4.1 → 2.5.2

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 (638) hide show
  1. package/core/api/application.js +12 -12
  2. package/core/api/authentication.js +51 -7
  3. package/core/api/hooks/hooks.authentication.js +1 -59
  4. package/core/api/hooks/hooks.authorisations.js +9 -104
  5. package/core/api/hooks/hooks.model.js +4 -0
  6. package/core/api/hooks/hooks.push.js +18 -14
  7. package/core/api/hooks/hooks.users.js +0 -91
  8. package/core/api/hooks/index.js +0 -2
  9. package/core/api/services/account/account.service.js +1 -1
  10. package/core/api/services/authorisations/authorisations.service.js +28 -31
  11. package/core/api/services/index.js +42 -50
  12. package/core/api/services/messages/messages.hooks.js +4 -3
  13. package/core/api/services/users/users.hooks.js +4 -3
  14. package/core/api/services/users/users.service.js +5 -0
  15. package/core/client/api.js +182 -71
  16. package/core/client/broadcaster.js +20 -0
  17. package/core/client/capabilities.js +17 -7
  18. package/core/client/components/KActivity.vue +29 -34
  19. package/core/client/components/KAvatar.vue +0 -6
  20. package/core/client/components/KChip.vue +142 -39
  21. package/core/client/components/KContent.vue +13 -32
  22. package/core/client/components/KDialog.vue +29 -8
  23. package/core/client/components/KEditor.vue +120 -0
  24. package/core/client/components/KFollower.vue +75 -0
  25. package/core/client/components/KLogo.vue +2 -3
  26. package/core/client/components/KModal.vue +30 -10
  27. package/core/client/components/KSponsor.vue +1 -1
  28. package/core/client/components/KTextArea.vue +2 -5
  29. package/core/client/components/account/KDeleteAccountManager.vue +1 -1
  30. package/core/client/components/account/KProfile.vue +52 -14
  31. package/core/client/components/account/KSubscription.vue +19 -9
  32. package/core/client/components/account/KSubscriptionsManager.vue +10 -11
  33. package/core/client/components/action/KAction.vue +44 -24
  34. package/core/client/components/action/KBugReportAction.vue +4 -5
  35. package/core/client/components/action/KToggleStickyVisibility.vue +41 -0
  36. package/core/client/components/action/KToggleWidgetVisibility.vue +41 -0
  37. package/core/client/components/app/KPlatform.vue +122 -35
  38. package/core/client/components/app/KRequestProgressBar.vue +59 -0
  39. package/core/client/components/app/KSettings.vue +13 -2
  40. package/core/client/components/app/KTour.vue +2 -2
  41. package/core/client/components/chart/KTimeSeriesChart.vue +11 -3
  42. package/core/client/components/collection/KCard.vue +27 -33
  43. package/core/client/components/collection/KCardSection.vue +3 -23
  44. package/core/client/components/collection/KColumn.vue +0 -5
  45. package/core/client/components/collection/KDescriptionCardSection.vue +10 -5
  46. package/core/client/components/collection/KFilterView.vue +15 -0
  47. package/core/client/components/collection/KGrid.vue +4 -9
  48. package/core/client/components/collection/KHistory.vue +0 -5
  49. package/core/client/components/collection/KHistoryEntry.vue +0 -2
  50. package/core/client/components/collection/KItem.vue +1 -2
  51. package/core/client/components/collection/KSearchFilterControl.vue +139 -0
  52. package/core/client/components/collection/KTable.vue +1 -4
  53. package/core/client/components/collection/KTagsFilterControl.vue +70 -0
  54. package/core/client/components/collection/KTagsFilterView.vue +61 -0
  55. package/core/client/components/collection/KTimeFilterControl.vue +40 -0
  56. package/core/client/components/collection/KTimeFilterView.vue +106 -0
  57. package/core/client/components/collection/KTimeLine.vue +18 -11
  58. package/core/client/components/document/KBrowser.vue +283 -0
  59. package/core/client/components/document/KCsv.vue +52 -0
  60. package/core/client/components/document/KDocument.vue +19 -5
  61. package/core/client/components/document/KImage.vue +50 -19
  62. package/core/client/components/document/KMarkdown.vue +10 -2
  63. package/core/client/components/document/KUploader.vue +126 -0
  64. package/core/client/components/document/KVideo.vue +39 -0
  65. package/core/client/components/form/KDateField.vue +70 -0
  66. package/core/client/components/form/KDateTimeRangeField.vue +6 -17
  67. package/core/client/components/form/KDatetimeField.vue +6 -13
  68. package/core/client/components/form/KForm.vue +8 -8
  69. package/core/client/components/form/KOptionsField.vue +2 -0
  70. package/core/client/components/form/KResolutionField.vue +54 -52
  71. package/core/client/components/form/KSelectField.vue +27 -13
  72. package/core/client/components/form/KTextareaField.vue +23 -5
  73. package/core/client/components/graphics/KIcon.vue +64 -0
  74. package/core/client/components/index.js +1 -3
  75. package/core/client/components/input/KColorPicker.vue +70 -0
  76. package/core/client/components/input/KIconPicker.vue +188 -0
  77. package/core/client/components/input/KShapePicker.vue +81 -0
  78. package/core/client/components/input/index.js +7 -1
  79. package/core/client/components/layout/KFab.vue +1 -1
  80. package/core/client/components/layout/KLayout.vue +14 -2
  81. package/core/client/components/layout/KOpener.vue +9 -11
  82. package/core/client/components/layout/KPage.vue +31 -17
  83. package/core/client/components/layout/KWindow.vue +34 -18
  84. package/core/client/components/menu/KMenu.vue +52 -36
  85. package/core/client/components/menu/KSubMenu.vue +105 -0
  86. package/core/client/components/messages/KMessageCard.vue +207 -0
  87. package/core/client/components/messages/KMessageComposer.vue +199 -0
  88. package/core/client/components/messages/KMessagesTimeLine.vue +137 -0
  89. package/core/client/components/messages/index.js +7 -0
  90. package/core/client/components/screen/KErrorScreen.vue +2 -3
  91. package/core/client/components/screen/KLogoutScreen.vue +3 -1
  92. package/core/client/components/screen/KOAuthLoginScreen.vue +15 -0
  93. package/core/client/components/screen/KOAuthLogoutScreen.vue +33 -0
  94. package/core/client/components/screen/KUnauthorizedScreen.vue +16 -0
  95. package/core/client/components/time/KAbsoluteTimeRange.vue +7 -14
  96. package/core/client/components/time/KDate.vue +55 -28
  97. package/core/client/components/time/KDateTime.vue +93 -37
  98. package/core/client/components/time/KDateTimeRange.vue +197 -52
  99. package/core/client/components/time/KTime.vue +55 -27
  100. package/core/client/composables/activity.js +40 -30
  101. package/core/client/composables/{counter.js → collection-counter.js} +2 -4
  102. package/core/client/composables/collection-filter.js +111 -0
  103. package/core/client/composables/collection-timerange.js +56 -0
  104. package/core/client/composables/collection.js +13 -11
  105. package/core/client/composables/context.js +92 -0
  106. package/core/client/composables/errors.js +83 -0
  107. package/core/client/composables/index.js +5 -1
  108. package/core/client/composables/layout.js +14 -11
  109. package/core/client/composables/messages.js +4 -4
  110. package/core/client/composables/pwa.js +20 -27
  111. package/core/client/composables/schema.js +1 -1
  112. package/core/client/composables/screen.js +21 -9
  113. package/core/client/composables/selection.js +16 -4
  114. package/core/client/composables/session.js +13 -7
  115. package/core/client/composables/store.js +2 -1
  116. package/core/client/context.js +38 -0
  117. package/core/client/directives/v-hover.js +7 -4
  118. package/core/client/document.js +43 -15
  119. package/core/client/events.js +2 -2
  120. package/core/client/exporter.js +5 -4
  121. package/core/client/filter.js +1 -8
  122. package/core/client/guards.js +3 -3
  123. package/core/client/hooks/hooks.logger.js +1 -1
  124. package/core/client/hooks/hooks.offline.js +32 -0
  125. package/core/client/hooks/index.js +2 -1
  126. package/core/client/i18n/core_en.json +95 -268
  127. package/core/client/i18n/core_fr.json +181 -353
  128. package/core/client/index.js +22 -8
  129. package/core/client/layout.js +64 -25
  130. package/core/client/local-cache.js +67 -0
  131. package/core/client/local-storage.js +6 -2
  132. package/core/client/mixins/index.js +0 -1
  133. package/core/client/mixins/mixin.base-activity.js +22 -10
  134. package/core/client/mixins/mixin.base-editor.js +1 -1
  135. package/core/client/mixins/mixin.base-field.js +10 -1
  136. package/core/client/mixins/mixin.base-item.js +14 -11
  137. package/core/client/mixins/mixin.service.js +1 -5
  138. package/core/client/platform.js +44 -0
  139. package/core/client/readers/reader.blob.js +3 -3
  140. package/core/client/readers/reader.csv.js +2 -2
  141. package/core/client/readers/reader.json.js +2 -2
  142. package/core/client/services/index.js +7 -11
  143. package/core/client/storage.js +43 -8
  144. package/core/client/template-context.js +14 -14
  145. package/core/client/time.js +2 -2
  146. package/core/client/units.js +7 -4
  147. package/core/client/utils/index.js +7 -5
  148. package/core/client/utils/utils.collection.js +71 -0
  149. package/core/client/utils/utils.colors.js +29 -8
  150. package/core/client/utils/utils.content.js +14 -14
  151. package/core/client/utils/utils.files.js +17 -0
  152. package/core/client/utils/utils.items.js +4 -0
  153. package/core/client/utils/utils.math.js +18 -1
  154. package/core/client/utils/utils.push.js +22 -13
  155. package/core/client/utils/utils.screen.js +6 -2
  156. package/core/client/utils/utils.services.js +42 -0
  157. package/core/client/utils/utils.session.js +48 -12
  158. package/core/client/utils/utils.shapes.js +15 -11
  159. package/core/common/permissions.js +3 -108
  160. package/core/common/schemas/messages.update.json +16 -0
  161. package/core/common/schemas/settings.update.json +27 -8
  162. package/core/common/utils.js +2 -0
  163. package/core/common/utils.offline.js +38 -0
  164. package/coverage/core/api/application.js.html +296 -296
  165. package/coverage/core/api/authentication.js.html +206 -74
  166. package/coverage/core/api/db.js.html +61 -61
  167. package/coverage/core/api/hooks/hooks.authentication.js.html +15 -189
  168. package/coverage/core/api/hooks/hooks.authorisations.js.html +172 -460
  169. package/coverage/core/api/hooks/hooks.groups.js.html +1 -1
  170. package/coverage/core/api/hooks/hooks.logger.js.html +16 -16
  171. package/coverage/core/api/hooks/hooks.model.js.html +52 -52
  172. package/coverage/core/api/hooks/hooks.organisations.js.html +1 -1
  173. package/coverage/core/api/hooks/hooks.push.js.html +58 -46
  174. package/coverage/core/api/hooks/hooks.query.js.html +136 -136
  175. package/coverage/core/api/hooks/hooks.schemas.js.html +1 -1
  176. package/coverage/core/api/hooks/hooks.service.js.html +1 -1
  177. package/coverage/core/api/hooks/hooks.storage.js.html +1 -1
  178. package/coverage/core/api/hooks/hooks.users.js.html +55 -328
  179. package/coverage/core/api/hooks/index.html +58 -88
  180. package/coverage/core/api/hooks/index.js.html +4 -10
  181. package/coverage/core/api/index.html +39 -54
  182. package/coverage/core/api/index.js.html +1 -1
  183. package/coverage/core/api/marshall.js.html +1 -1
  184. package/coverage/core/api/models/groups.model.mongodb.js.html +1 -1
  185. package/coverage/core/api/models/index.html +13 -58
  186. package/coverage/core/api/models/messages.model.mongodb.js.html +35 -35
  187. package/coverage/core/api/models/organisations.model.mongodb.js.html +3 -3
  188. package/coverage/core/api/models/tags.model.mongodb.js.html +1 -1
  189. package/coverage/core/api/models/users.model.mongodb.js.html +1 -1
  190. package/coverage/core/api/services/account/account.hooks.js.html +1 -1
  191. package/coverage/core/api/services/account/account.service.js.html +67 -67
  192. package/coverage/core/api/services/account/index.html +16 -16
  193. package/coverage/core/api/services/authorisations/authorisations.hooks.js.html +1 -1
  194. package/coverage/core/api/services/authorisations/authorisations.service.js.html +120 -117
  195. package/coverage/core/api/services/authorisations/index.html +15 -15
  196. package/coverage/core/api/services/databases/databases.hooks.js.html +82 -82
  197. package/coverage/core/api/services/databases/databases.service.js.html +20 -20
  198. package/coverage/core/api/services/databases/index.html +32 -32
  199. package/coverage/core/api/services/groups/groups.hooks.js.html +1 -1
  200. package/coverage/core/api/services/groups/index.html +1 -1
  201. package/coverage/core/api/services/import-export/import-export.hooks.js.html +1 -1
  202. package/coverage/core/api/services/import-export/import-export.service.js.html +1 -1
  203. package/coverage/core/api/services/import-export/index.html +1 -1
  204. package/coverage/core/api/services/index.html +21 -21
  205. package/coverage/core/api/services/index.js.html +118 -154
  206. package/coverage/core/api/services/mailer/index.html +1 -1
  207. package/coverage/core/api/services/mailer/mailer.hooks.js.html +1 -1
  208. package/coverage/core/api/services/mailer/mailer.service.js.html +1 -1
  209. package/coverage/core/api/services/messages/index.html +21 -21
  210. package/coverage/core/api/services/messages/messages.hooks.js.html +86 -86
  211. package/coverage/core/api/services/organisations/index.html +1 -1
  212. package/coverage/core/api/services/organisations/organisations.hooks.js.html +1 -1
  213. package/coverage/core/api/services/organisations/organisations.service.js.html +23 -23
  214. package/coverage/core/api/services/push/index.html +1 -1
  215. package/coverage/core/api/services/push/push.hooks.js.html +1 -1
  216. package/coverage/core/api/services/push/push.service.js.html +1 -1
  217. package/coverage/core/api/services/storage/index.html +5 -5
  218. package/coverage/core/api/services/storage/storage.hooks.js.html +1 -1
  219. package/coverage/core/api/services/storage/storage.service.js.html +27 -27
  220. package/coverage/core/api/services/tags/index.html +1 -1
  221. package/coverage/core/api/services/tags/tags.hooks.js.html +1 -1
  222. package/coverage/core/api/services/users/index.html +23 -8
  223. package/coverage/core/api/services/users/users.hooks.js.html +1 -1
  224. package/coverage/core/api/services/users/users.service.js.html +100 -0
  225. package/coverage/core/api/utils.js.html +1 -1
  226. package/coverage/core/common/errors.js.html +1 -1
  227. package/coverage/core/common/index.html +42 -27
  228. package/coverage/core/common/index.js.html +1 -1
  229. package/coverage/core/common/permissions.js.html +195 -510
  230. package/coverage/core/common/schema.js.html +1 -1
  231. package/coverage/core/common/utils.js.html +12 -6
  232. package/coverage/core/common/utils.offline.js.html +199 -0
  233. package/coverage/index.html +121 -166
  234. package/coverage/lcov-report/core/api/application.js.html +296 -296
  235. package/coverage/lcov-report/core/api/authentication.js.html +206 -74
  236. package/coverage/lcov-report/core/api/db.js.html +61 -61
  237. package/coverage/lcov-report/core/api/hooks/hooks.authentication.js.html +15 -189
  238. package/coverage/lcov-report/core/api/hooks/hooks.authorisations.js.html +172 -460
  239. package/coverage/lcov-report/core/api/hooks/hooks.groups.js.html +1 -1
  240. package/coverage/lcov-report/core/api/hooks/hooks.logger.js.html +16 -16
  241. package/coverage/lcov-report/core/api/hooks/hooks.model.js.html +52 -52
  242. package/coverage/lcov-report/core/api/hooks/hooks.organisations.js.html +1 -1
  243. package/coverage/lcov-report/core/api/hooks/hooks.push.js.html +58 -46
  244. package/coverage/lcov-report/core/api/hooks/hooks.query.js.html +136 -136
  245. package/coverage/lcov-report/core/api/hooks/hooks.schemas.js.html +1 -1
  246. package/coverage/lcov-report/core/api/hooks/hooks.service.js.html +1 -1
  247. package/coverage/lcov-report/core/api/hooks/hooks.storage.js.html +1 -1
  248. package/coverage/lcov-report/core/api/hooks/hooks.users.js.html +55 -328
  249. package/coverage/lcov-report/core/api/hooks/index.html +58 -88
  250. package/coverage/lcov-report/core/api/hooks/index.js.html +4 -10
  251. package/coverage/lcov-report/core/api/index.html +39 -54
  252. package/coverage/lcov-report/core/api/index.js.html +1 -1
  253. package/coverage/lcov-report/core/api/marshall.js.html +1 -1
  254. package/coverage/lcov-report/core/api/models/groups.model.mongodb.js.html +1 -1
  255. package/coverage/lcov-report/core/api/models/index.html +13 -58
  256. package/coverage/lcov-report/core/api/models/messages.model.mongodb.js.html +35 -35
  257. package/coverage/lcov-report/core/api/models/organisations.model.mongodb.js.html +3 -3
  258. package/coverage/lcov-report/core/api/models/tags.model.mongodb.js.html +1 -1
  259. package/coverage/lcov-report/core/api/models/users.model.mongodb.js.html +1 -1
  260. package/coverage/lcov-report/core/api/services/account/account.hooks.js.html +1 -1
  261. package/coverage/lcov-report/core/api/services/account/account.service.js.html +67 -67
  262. package/coverage/lcov-report/core/api/services/account/index.html +16 -16
  263. package/coverage/lcov-report/core/api/services/authorisations/authorisations.hooks.js.html +1 -1
  264. package/coverage/lcov-report/core/api/services/authorisations/authorisations.service.js.html +120 -117
  265. package/coverage/lcov-report/core/api/services/authorisations/index.html +15 -15
  266. package/coverage/lcov-report/core/api/services/databases/databases.hooks.js.html +82 -82
  267. package/coverage/lcov-report/core/api/services/databases/databases.service.js.html +20 -20
  268. package/coverage/lcov-report/core/api/services/databases/index.html +32 -32
  269. package/coverage/lcov-report/core/api/services/groups/groups.hooks.js.html +1 -1
  270. package/coverage/lcov-report/core/api/services/groups/index.html +1 -1
  271. package/coverage/lcov-report/core/api/services/import-export/import-export.hooks.js.html +1 -1
  272. package/coverage/lcov-report/core/api/services/import-export/import-export.service.js.html +1 -1
  273. package/coverage/lcov-report/core/api/services/import-export/index.html +1 -1
  274. package/coverage/lcov-report/core/api/services/index.html +21 -21
  275. package/coverage/lcov-report/core/api/services/index.js.html +118 -154
  276. package/coverage/lcov-report/core/api/services/mailer/index.html +1 -1
  277. package/coverage/lcov-report/core/api/services/mailer/mailer.hooks.js.html +1 -1
  278. package/coverage/lcov-report/core/api/services/mailer/mailer.service.js.html +1 -1
  279. package/coverage/lcov-report/core/api/services/messages/index.html +21 -21
  280. package/coverage/lcov-report/core/api/services/messages/messages.hooks.js.html +86 -86
  281. package/coverage/lcov-report/core/api/services/organisations/index.html +1 -1
  282. package/coverage/lcov-report/core/api/services/organisations/organisations.hooks.js.html +1 -1
  283. package/coverage/lcov-report/core/api/services/organisations/organisations.service.js.html +23 -23
  284. package/coverage/lcov-report/core/api/services/push/index.html +1 -1
  285. package/coverage/lcov-report/core/api/services/push/push.hooks.js.html +1 -1
  286. package/coverage/lcov-report/core/api/services/push/push.service.js.html +1 -1
  287. package/coverage/lcov-report/core/api/services/storage/index.html +5 -5
  288. package/coverage/lcov-report/core/api/services/storage/storage.hooks.js.html +1 -1
  289. package/coverage/lcov-report/core/api/services/storage/storage.service.js.html +27 -27
  290. package/coverage/lcov-report/core/api/services/tags/index.html +1 -1
  291. package/coverage/lcov-report/core/api/services/tags/tags.hooks.js.html +1 -1
  292. package/coverage/lcov-report/core/api/services/users/index.html +23 -8
  293. package/coverage/lcov-report/core/api/services/users/users.hooks.js.html +1 -1
  294. package/coverage/lcov-report/core/api/services/users/users.service.js.html +100 -0
  295. package/coverage/lcov-report/core/api/utils.js.html +1 -1
  296. package/coverage/lcov-report/core/common/errors.js.html +1 -1
  297. package/coverage/lcov-report/core/common/index.html +42 -27
  298. package/coverage/lcov-report/core/common/index.js.html +1 -1
  299. package/coverage/lcov-report/core/common/permissions.js.html +195 -510
  300. package/coverage/lcov-report/core/common/schema.js.html +1 -1
  301. package/coverage/lcov-report/core/common/utils.js.html +12 -6
  302. package/coverage/lcov-report/core/common/utils.offline.js.html +199 -0
  303. package/coverage/lcov-report/index.html +121 -166
  304. package/coverage/lcov-report/map/api/hooks/hooks.catalog.js.html +33 -27
  305. package/coverage/lcov-report/map/api/hooks/hooks.features.js.html +1 -1
  306. package/coverage/lcov-report/map/api/hooks/hooks.query.js.html +4 -4
  307. package/coverage/lcov-report/map/api/hooks/index.html +5 -5
  308. package/coverage/lcov-report/map/api/hooks/index.js.html +1 -1
  309. package/coverage/lcov-report/map/api/index.html +1 -1
  310. package/coverage/lcov-report/map/api/index.js.html +1 -1
  311. package/coverage/lcov-report/map/api/marshall.js.html +1 -1
  312. package/coverage/lcov-report/map/api/models/alerts.model.mongodb.js.html +1 -1
  313. package/coverage/lcov-report/map/api/models/catalog.model.mongodb.js.html +1 -1
  314. package/coverage/lcov-report/map/api/models/features.model.mongodb.js.html +1 -1
  315. package/coverage/lcov-report/map/api/models/index.html +1 -1
  316. package/coverage/lcov-report/map/api/models/projects.model.mongodb.js.html +1 -1
  317. package/coverage/lcov-report/map/api/services/alerts/alerts.hooks.js.html +1 -1
  318. package/coverage/lcov-report/map/api/services/alerts/alerts.service.js.html +1 -1
  319. package/coverage/lcov-report/map/api/services/alerts/index.html +1 -1
  320. package/coverage/lcov-report/map/api/services/catalog/catalog.hooks.js.html +10 -7
  321. package/coverage/lcov-report/map/api/services/catalog/index.html +5 -5
  322. package/coverage/lcov-report/map/api/services/daptiles/daptiles.service.js.html +1 -1
  323. package/coverage/lcov-report/map/api/services/daptiles/index.html +1 -1
  324. package/coverage/lcov-report/map/api/services/features/features.hooks.js.html +78 -9
  325. package/coverage/lcov-report/map/api/services/features/features.service.js.html +307 -4
  326. package/coverage/lcov-report/map/api/services/features/index.html +7 -7
  327. package/coverage/lcov-report/map/api/services/index.html +5 -5
  328. package/coverage/lcov-report/map/api/services/index.js.html +171 -42
  329. package/coverage/lcov-report/map/api/services/projects/index.html +1 -1
  330. package/coverage/lcov-report/map/api/services/projects/projects.hooks.js.html +1 -1
  331. package/coverage/lcov-report/map/common/dynamic-grid-source.js.html +1 -1
  332. package/coverage/lcov-report/map/common/errors.js.html +1 -1
  333. package/coverage/lcov-report/map/common/geotiff-grid-source.js.html +8 -5
  334. package/coverage/lcov-report/map/common/grid.js.html +1 -1
  335. package/coverage/lcov-report/map/common/index.html +5 -5
  336. package/coverage/lcov-report/map/common/index.js.html +1 -1
  337. package/coverage/lcov-report/map/common/meteo-model-grid-source.js.html +1 -1
  338. package/coverage/lcov-report/map/common/moment-utils.js.html +1 -1
  339. package/coverage/lcov-report/map/common/opendap-grid-source.js.html +1 -1
  340. package/coverage/lcov-report/map/common/opendap-utils.js.html +1 -1
  341. package/coverage/lcov-report/map/common/permissions.js.html +1 -1
  342. package/coverage/lcov-report/map/common/time-based-grid-source.js.html +1 -1
  343. package/coverage/lcov-report/map/common/tms-utils.js.html +1 -1
  344. package/coverage/lcov-report/map/common/wcs-grid-source.js.html +1 -1
  345. package/coverage/lcov-report/map/common/wcs-utils.js.html +1 -1
  346. package/coverage/lcov-report/map/common/weacast-grid-source.js.html +1 -1
  347. package/coverage/lcov-report/map/common/wfs-utils.js.html +1 -1
  348. package/coverage/lcov-report/map/common/wms-utils.js.html +1 -1
  349. package/coverage/lcov-report/map/common/wmts-utils.js.html +1 -1
  350. package/coverage/lcov.info +2314 -3167
  351. package/coverage/map/api/hooks/hooks.catalog.js.html +33 -27
  352. package/coverage/map/api/hooks/hooks.features.js.html +1 -1
  353. package/coverage/map/api/hooks/hooks.query.js.html +4 -4
  354. package/coverage/map/api/hooks/index.html +5 -5
  355. package/coverage/map/api/hooks/index.js.html +1 -1
  356. package/coverage/map/api/index.html +1 -1
  357. package/coverage/map/api/index.js.html +1 -1
  358. package/coverage/map/api/marshall.js.html +1 -1
  359. package/coverage/map/api/models/alerts.model.mongodb.js.html +1 -1
  360. package/coverage/map/api/models/catalog.model.mongodb.js.html +1 -1
  361. package/coverage/map/api/models/features.model.mongodb.js.html +1 -1
  362. package/coverage/map/api/models/index.html +1 -1
  363. package/coverage/map/api/models/projects.model.mongodb.js.html +1 -1
  364. package/coverage/map/api/services/alerts/alerts.hooks.js.html +1 -1
  365. package/coverage/map/api/services/alerts/alerts.service.js.html +1 -1
  366. package/coverage/map/api/services/alerts/index.html +1 -1
  367. package/coverage/map/api/services/catalog/catalog.hooks.js.html +10 -7
  368. package/coverage/map/api/services/catalog/index.html +5 -5
  369. package/coverage/map/api/services/daptiles/daptiles.service.js.html +1 -1
  370. package/coverage/map/api/services/daptiles/index.html +1 -1
  371. package/coverage/map/api/services/features/features.hooks.js.html +78 -9
  372. package/coverage/map/api/services/features/features.service.js.html +307 -4
  373. package/coverage/map/api/services/features/index.html +7 -7
  374. package/coverage/map/api/services/index.html +5 -5
  375. package/coverage/map/api/services/index.js.html +171 -42
  376. package/coverage/map/api/services/projects/index.html +1 -1
  377. package/coverage/map/api/services/projects/projects.hooks.js.html +1 -1
  378. package/coverage/map/common/dynamic-grid-source.js.html +1 -1
  379. package/coverage/map/common/errors.js.html +1 -1
  380. package/coverage/map/common/geotiff-grid-source.js.html +8 -5
  381. package/coverage/map/common/grid.js.html +1 -1
  382. package/coverage/map/common/index.html +5 -5
  383. package/coverage/map/common/index.js.html +1 -1
  384. package/coverage/map/common/meteo-model-grid-source.js.html +1 -1
  385. package/coverage/map/common/moment-utils.js.html +1 -1
  386. package/coverage/map/common/opendap-grid-source.js.html +1 -1
  387. package/coverage/map/common/opendap-utils.js.html +1 -1
  388. package/coverage/map/common/permissions.js.html +1 -1
  389. package/coverage/map/common/time-based-grid-source.js.html +1 -1
  390. package/coverage/map/common/tms-utils.js.html +1 -1
  391. package/coverage/map/common/wcs-grid-source.js.html +1 -1
  392. package/coverage/map/common/wcs-utils.js.html +1 -1
  393. package/coverage/map/common/weacast-grid-source.js.html +1 -1
  394. package/coverage/map/common/wfs-utils.js.html +1 -1
  395. package/coverage/map/common/wms-utils.js.html +1 -1
  396. package/coverage/map/common/wmts-utils.js.html +1 -1
  397. package/coverage/tmp/{coverage-280506-1731704745613-0.json → coverage-122123-1739872365211-0.json} +1 -1
  398. package/coverage/tmp/{coverage-280518-1731704745599-0.json → coverage-122135-1739872365196-0.json} +1 -1
  399. package/coverage/tmp/{coverage-280529-1731704745588-0.json → coverage-122146-1739872365184-0.json} +1 -1
  400. package/coverage/tmp/{coverage-280541-1731704745574-0.json → coverage-122158-1739872365169-0.json} +1 -1
  401. package/coverage/tmp/{coverage-280548-1731704745545-0.json → coverage-122165-1739872365141-0.json} +1 -1
  402. package/extras/configs/helpers.js +78 -0
  403. package/extras/configs/panes.left.js +118 -0
  404. package/extras/configs/panes.top.js +222 -0
  405. package/extras/configs/stickies.js +57 -0
  406. package/extras/configs/widgets.left.js +23 -0
  407. package/extras/configs/widgets.top.js +73 -0
  408. package/extras/css/core.variables.scss +8 -0
  409. package/extras/images/north.svg +3 -0
  410. package/extras/tours/map/side-nav.js +3 -3
  411. package/map/api/hooks/hooks.catalog.js +56 -23
  412. package/map/api/hooks/hooks.query.js +19 -24
  413. package/map/api/models/catalog.model.mongodb.js +16 -2
  414. package/{core/api/models/groups.model.mongodb.js → map/api/models/styles.model.mongodb.js} +2 -1
  415. package/map/api/services/catalog/catalog.hooks.js +13 -7
  416. package/map/api/services/features/features.hooks.js +28 -5
  417. package/map/api/services/features/features.service.js +101 -0
  418. package/map/api/services/index.js +125 -46
  419. package/map/api/services/styles/styles.hooks.js +37 -0
  420. package/map/client/cesium/utils/index.js +1 -0
  421. package/map/client/cesium/utils/utils.cesium.js +397 -0
  422. package/map/client/cesium/utils/utils.features.js +8 -0
  423. package/map/client/cesium/utils/utils.geojson.js +59 -0
  424. package/map/client/cesium/utils/utils.style.js +134 -17
  425. package/map/client/components/KEditLayerData.vue +17 -79
  426. package/map/client/components/KFeatureEditor.vue +2 -7
  427. package/map/client/components/KFeaturesChart.vue +2 -6
  428. package/map/client/components/KFeaturesFilterEditor.vue +300 -0
  429. package/map/client/components/KFeaturesFilterManager.vue +196 -0
  430. package/map/client/components/KFeaturesTable.vue +0 -5
  431. package/map/client/components/KFilterCondition.vue +303 -0
  432. package/map/client/components/KLayerEditionToolbar.vue +4 -3
  433. package/map/client/components/KLayerEditor.vue +451 -36
  434. package/map/client/components/KMeasureTool.vue +36 -9
  435. package/map/client/components/KProjectMenu.vue +14 -8
  436. package/map/client/components/catalog/KAddLayer.vue +0 -4
  437. package/map/client/components/catalog/KBaseLayersSelector.vue +42 -46
  438. package/map/client/components/catalog/KConnectLayer.vue +295 -291
  439. package/map/client/components/catalog/KCreateLayer.vue +141 -146
  440. package/map/client/components/catalog/KCreateOfflineView.vue +100 -0
  441. package/map/client/components/catalog/KCreateView.vue +2 -8
  442. package/map/client/components/catalog/KFilteredLayerItem.vue +72 -25
  443. package/map/client/components/catalog/KImportLayer.vue +121 -129
  444. package/map/client/components/catalog/KLayerItem.vue +44 -32
  445. package/map/client/components/catalog/KLayersPanel.vue +45 -17
  446. package/map/client/components/catalog/KLayersSelector.vue +51 -50
  447. package/map/client/components/catalog/KProjectManager.vue +4 -8
  448. package/map/client/components/catalog/KProjectSelector.vue +33 -2
  449. package/map/client/components/catalog/KProjectsPanel.vue +84 -106
  450. package/map/client/components/catalog/KSelectLayers.vue +56 -69
  451. package/map/client/components/catalog/KSelectViews.vue +56 -69
  452. package/map/client/components/catalog/KViewSelector.vue +32 -2
  453. package/map/client/components/catalog/KViewsPanel.vue +178 -110
  454. package/map/client/components/catalog/KWeatherLayersSelector.vue +77 -85
  455. package/map/client/components/form/KLocationField.vue +21 -2
  456. package/map/client/components/form/KOwsLayerField.vue +1 -1
  457. package/map/client/components/form/KOwsServiceField.vue +102 -63
  458. package/map/client/components/form/KSelectLayersField.vue +1 -1
  459. package/map/client/components/form/KSelectViewsField.vue +1 -1
  460. package/map/client/components/form/KTimezoneField.vue +0 -1
  461. package/map/client/components/legend/KLegend.vue +4 -4
  462. package/map/client/components/location/KLocationCardSection.vue +16 -0
  463. package/map/client/components/location/KLocationMap.vue +3 -2
  464. package/map/client/components/location/KLocationSearch.vue +46 -8
  465. package/map/client/components/location/KLocationTimeLineCard.vue +25 -3
  466. package/map/client/components/location/KLocationTip.vue +57 -10
  467. package/map/client/components/selection/KFeaturesSelection.vue +71 -0
  468. package/map/client/components/selection/KSelectedLayerFeatures.vue +343 -0
  469. package/map/client/components/stickies/KAttribution.vue +115 -0
  470. package/map/client/components/stickies/KLevelSlider.vue +114 -0
  471. package/map/client/components/stickies/KNorthArrow.vue +26 -0
  472. package/map/client/components/stickies/KPosition.vue +103 -0
  473. package/map/client/components/stickies/KTarget.vue +34 -0
  474. package/map/client/components/styles/KLayerStyleAction.vue +58 -0
  475. package/map/client/components/styles/KStyleEditor.vue +273 -0
  476. package/map/client/components/styles/KStyleEditorSection.vue +79 -0
  477. package/map/client/components/styles/KStyleManager.vue +183 -0
  478. package/map/client/components/styles/KStylePreview.vue +64 -0
  479. package/map/client/components/styles/KStylePreviewItem.vue +68 -0
  480. package/map/client/components/styles/KStylePropertiesGroup.vue +76 -0
  481. package/map/client/components/styles/KStyleProperty.vue +136 -0
  482. package/map/client/components/styles/KStyleTip.vue +118 -0
  483. package/map/client/components/tools/KGeolocateTool.vue +3 -2
  484. package/map/client/components/tools/KSearchTool.vue +34 -6
  485. package/map/client/components/widget/KMapillaryViewer.vue +1 -1
  486. package/map/client/components/widget/KStackableTimeSeries.vue +8 -5
  487. package/map/client/composables/activity.js +29 -43
  488. package/map/client/composables/catalog.js +1 -1
  489. package/map/client/composables/highlight.js +117 -57
  490. package/map/client/composables/location.js +33 -14
  491. package/map/client/composables/project.js +9 -10
  492. package/map/client/composables/selection.js +136 -23
  493. package/map/client/geocoder.js +104 -0
  494. package/map/client/geolocation.js +1 -1
  495. package/map/client/globe.js +3 -0
  496. package/map/client/hooks/hooks.offline.js +95 -0
  497. package/map/client/hooks/index.js +1 -0
  498. package/map/client/i18n/map_en.json +159 -94
  499. package/map/client/i18n/map_fr.json +187 -128
  500. package/map/client/index.js +3 -0
  501. package/map/client/init.js +44 -8
  502. package/map/client/leaflet/BoxSelection.js +2 -2
  503. package/map/client/leaflet/GradientPath.js +84 -4
  504. package/map/client/leaflet/WindBarb.js +323 -0
  505. package/map/client/leaflet/utils/index.js +1 -0
  506. package/map/client/leaflet/utils/utils.events.js +8 -3
  507. package/map/client/leaflet/utils/utils.geojson.js +222 -0
  508. package/map/client/leaflet/utils/utils.style.js +10 -9
  509. package/map/client/map.js +3 -0
  510. package/map/client/mixins/globe/mixin.base-globe.js +151 -19
  511. package/map/client/mixins/globe/mixin.geojson-layers.js +208 -86
  512. package/map/client/mixins/globe/mixin.popup.js +3 -2
  513. package/map/client/mixins/globe/mixin.style.js +3 -1
  514. package/map/client/mixins/globe/mixin.tooltip.js +3 -2
  515. package/map/client/mixins/map/index.js +1 -3
  516. package/map/client/mixins/map/mixin.base-map.js +267 -79
  517. package/map/client/mixins/map/mixin.canvas-layers.js +44 -10
  518. package/map/client/mixins/map/mixin.edit-layers.js +142 -57
  519. package/map/client/mixins/map/mixin.geojson-layers.js +127 -204
  520. package/map/client/mixins/map/mixin.pmtiles-layers.js +24 -11
  521. package/map/client/mixins/map/mixin.tiled-mesh-layers.js +1 -2
  522. package/map/client/mixins/map/mixin.tiled-wind-layers.js +2 -1
  523. package/map/client/mixins/mixin.activity.js +61 -41
  524. package/map/client/mixins/mixin.context.js +19 -14
  525. package/map/client/mixins/mixin.feature-selection.js +0 -1
  526. package/map/client/mixins/mixin.feature-service.js +41 -59
  527. package/map/client/mixins/mixin.weacast.js +1 -1
  528. package/map/client/navigator.js +38 -0
  529. package/map/client/pixi-utils.js +1 -1
  530. package/map/client/planets.js +1 -1
  531. package/map/client/readers/reader.kml.js +57 -1
  532. package/map/client/utils/index.js +1 -0
  533. package/map/client/utils/utils.capture.js +10 -7
  534. package/map/client/utils/utils.catalog.js +2 -2
  535. package/map/client/utils/utils.features.js +193 -39
  536. package/map/client/utils/utils.js +0 -21
  537. package/map/client/utils/utils.layers.js +381 -4
  538. package/map/client/utils/utils.location.js +39 -74
  539. package/map/client/utils/utils.offline.js +89 -0
  540. package/map/client/utils/utils.style.js +133 -80
  541. package/map/common/geotiff-grid-source.js +2 -1
  542. package/map/common/permissions.js +2 -0
  543. package/map/common/schemas/capture.create.json +4 -4
  544. package/map/common/schemas/catalog.update.json +18 -2
  545. package/map/common/schemas/projects.create.json +2 -2
  546. package/map/common/schemas/projects.update.json +2 -2
  547. package/map/common/tms-utils.js +5 -5
  548. package/map/common/wcs-grid-source.js +2 -2
  549. package/map/common/wcs-utils.js +8 -8
  550. package/map/common/wfs-utils.js +10 -10
  551. package/map/common/wms-utils.js +7 -7
  552. package/map/common/wmts-utils.js +6 -6
  553. package/package.json +7 -4
  554. package/test/api/core/account.test.js +0 -72
  555. package/test/api/core/authentication.test.js +184 -0
  556. package/test/api/core/config/default.cjs +1 -3
  557. package/test/api/core/index.test.js +77 -151
  558. package/test/api/core/offline.test.js +55 -0
  559. package/test/api/core/push.test.js +3 -3
  560. package/test/api/core/{test-log-2024-11-05.log → test-log-2025-05-26.log} +1 -9
  561. package/test/api/map/alerts.test.js +1 -1
  562. package/test/api/map/config/default.cjs +2 -1
  563. package/test/api/map/data/vigicrues.observations.Q.json +47042 -0
  564. package/test/api/map/index.test.js +113 -9
  565. package/test/api/map/style.test.js +62 -0
  566. package/test/api/map/{test-log-2024-10-28.log → test-log-2025-05-26.log} +4 -3
  567. package/test/client/core/layout.js +2 -2
  568. package/test/client/core/runner.js +1 -1
  569. package/test/client/core/utils.js +52 -0
  570. package/test/client/map/catalog.js +1 -0
  571. package/core/api/hooks/hooks.groups.js +0 -48
  572. package/core/api/hooks/hooks.organisations.js +0 -152
  573. package/core/api/models/organisations.model.mongodb.js +0 -3
  574. package/core/api/models/tags.model.mongodb.js +0 -10
  575. package/core/api/services/groups/groups.hooks.js +0 -31
  576. package/core/api/services/organisations/organisations.hooks.js +0 -31
  577. package/core/api/services/organisations/organisations.service.js +0 -86
  578. package/core/api/services/tags/tags.hooks.js +0 -31
  579. package/core/api/utils.js +0 -11
  580. package/core/client/components/KChipsPane.vue +0 -103
  581. package/core/client/components/document/index.js +0 -9
  582. package/core/client/components/team/KAddMember.vue +0 -378
  583. package/core/client/components/team/KAddTag.vue +0 -121
  584. package/core/client/components/team/KChangeRole.vue +0 -118
  585. package/core/client/components/team/KGroupCard.vue +0 -110
  586. package/core/client/components/team/KGroupsActivity.vue +0 -78
  587. package/core/client/components/team/KJoinGroup.vue +0 -132
  588. package/core/client/components/team/KMemberCard.vue +0 -328
  589. package/core/client/components/team/KMemberFilter.vue +0 -49
  590. package/core/client/components/team/KMembersActivity.vue +0 -136
  591. package/core/client/components/team/KOrganisationsActivity.vue +0 -51
  592. package/core/client/components/team/KTagCard.vue +0 -72
  593. package/core/client/components/team/KTagsActivity.vue +0 -73
  594. package/core/client/components/team/index.js +0 -9
  595. package/core/client/mixins/mixin.base-context.js +0 -54
  596. package/core/client/utils/utils.platform.js +0 -12
  597. package/core/common/schemas/groups.create.json +0 -28
  598. package/core/common/schemas/groups.update.json +0 -28
  599. package/core/common/schemas/organisations.create.json +0 -28
  600. package/core/common/schemas/organisations.update.json +0 -49
  601. package/core/common/schemas/tags.create.json +0 -35
  602. package/core/common/schemas/tags.update.json +0 -35
  603. package/map/client/components/KAttribution.vue +0 -108
  604. package/map/client/components/KFeaturesFilter.vue +0 -259
  605. package/map/client/components/KLayerStyleEditor.vue +0 -118
  606. package/map/client/components/KLayerStyleForm.vue +0 -740
  607. package/map/client/components/KLevelSlider.vue +0 -100
  608. package/map/client/components/KNorth.vue +0 -31
  609. package/map/client/components/KPositionIndicator.vue +0 -83
  610. package/map/client/components/catalog/KCreateProject.vue +0 -100
  611. package/map/client/mixins/map/mixin.forecast-layers.js +0 -81
  612. package/map/client/mixins/map/mixin.georaster-layers.js +0 -107
  613. package/test/api/core/team.test.js +0 -670
  614. package/test/api/core/test-log-2023-12-19.log +0 -7
  615. package/test/api/core/test-log-2024-01-04.log +0 -14
  616. package/test/api/core/test-log-2024-05-14.log +0 -6
  617. package/test/api/core/test-log-2024-06-06.log +0 -23
  618. package/test/api/core/test-log-2024-06-26.log +0 -25
  619. package/test/api/core/test-log-2024-06-28.log +0 -2
  620. package/test/api/core/test-log-2024-07-09.log +0 -0
  621. package/test/api/core/test-log-2024-08-13.log +0 -69
  622. package/test/api/core/test-log-2024-10-28.log +0 -53
  623. package/test/api/core/test-log-2024-11-15.log +0 -23
  624. package/test/api/core/test-log-2024-11-18.log +0 -0
  625. package/test/api/core/test-log-2024-12-03.log +0 -30
  626. package/test/api/map/test-log-2023-11-24.log +0 -121
  627. package/test/api/map/test-log-2023-12-12.log +0 -29
  628. package/test/api/map/test-log-2023-12-13.log +0 -5
  629. package/test/api/map/test-log-2024-01-04.log +0 -2
  630. package/test/api/map/test-log-2024-01-11.log +0 -1
  631. package/test/api/map/test-log-2024-01-25.log +0 -19
  632. package/test/api/map/test-log-2024-06-06.log +0 -39
  633. package/test/api/map/test-log-2024-08-13.log +0 -13
  634. package/test/api/map/test-log-2024-08-20.log +0 -55
  635. package/test/api/map/test-log-2024-09-09.log +0 -92
  636. /package/extras/{logos → images}/kalisio.png +0 -0
  637. /package/extras/{icons → images}/target.svg +0 -0
  638. /package/test/api/map/data/{vigicrues.observations.json → vigicrues.observations.H.json} +0 -0
@@ -3,13 +3,16 @@
3
3
  "OK": "Ok",
4
4
  "YES": "Yes",
5
5
  "NO": "No",
6
+ "ALERT": "Alert",
7
+ "WARNING": "Warning",
8
+ "INFORMATION": "Information",
6
9
  "CANCEL": "Cancel",
7
10
  "UPDATE": "Update",
8
11
  "CREATE": "Create",
9
12
  "DELETE": "Delete",
10
13
  "RESET": "Reset",
11
14
  "CLOSE": "Close",
12
- "SEARCH": "Search",
15
+ "SEARCH": "Search...",
13
16
  "DONE": "Done",
14
17
  "APPLY": "Apply",
15
18
  "RETRY": "Retry",
@@ -27,10 +30,18 @@
27
30
  "HELP": "Help",
28
31
  "NEED_HELP": "Help needed ?",
29
32
  "READ_MORE": "Read more",
30
- "CONTEXTUAL_HELP": "Contextual help",
31
- "ABOUT": "About",
32
33
  "BACK": "Return",
33
- "SETTINGS": "My settings",
34
+ "LEGAL_NOTICE": "Legal notice",
35
+ "PRIVACY_POLICY": "Privacy policy",
36
+ "layout": {
37
+ "MY_SETTINGS": "My settings",
38
+ "ABOUT": "About",
39
+ "ONLINE_HELP": "Online help",
40
+ "CONTEXTUAL_HELP": "Contextual help",
41
+ "LOGOUT": "Logout",
42
+ "ENTER_FULLSCREEN": "Enter full screen mode",
43
+ "EXIT_FULLSCREEN": "Exit full screen mode"
44
+ },
34
45
  "errors": {
35
46
  "400": "Operation cannot be performed: bad parameters",
36
47
  "401": "Operation cannot be performed: authentication required",
@@ -46,7 +57,7 @@
46
57
  "429": "Operation cannot be performed: too many requests",
47
58
  "498": "This system or browser does not support web push notifications",
48
59
  "499": "Please change your application or browser settings to allow notifications",
49
- "500": "Operation cannot be performed: an error occured",
60
+ "500": "Operation cannot be performed: an error occurred",
50
61
  "501": "Operation cannot be performed: not implemented",
51
62
  "502": "Operation cannot be performed: service unavailable",
52
63
  "503": "Operation cannot be performed: service unavailable",
@@ -65,9 +76,6 @@
65
76
  "WEAK_PASSWORD_ONEOF": "Not known as one of the most common passwords",
66
77
  "WEAK_PASSWORD_PREVIOUS": "Not one of your {history} last passwords",
67
78
  "CANNOT_PROCESS_DOWNLOAD_DATA": "Invalid or incomplete data file",
68
- "CANNOT_REMOVE_USER": "Your are not allowed to remove this accound.<br>Please remove the organisations owned by <b>{user}</b> first.",
69
- "CANNOT_REMOVE_ORGANISATION": "You are not allowed to remove this organisation.<br>Please remove all the groups first.",
70
- "CANNOT_REMOVE_LAST_OWNER": "You are not allowed to remove the last owner of <b>{resource}</b>",
71
79
  "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",
72
80
  "EMAIL_ALREADY_TAKEN": "A user with this email address seems to be already registered",
73
81
  "OBJECT_ID_ALREADY_TAKEN": "An item with this identifier seems to already exist. Please try again with another value.",
@@ -76,7 +84,7 @@
76
84
  "CANNOT_READ_FILE": "Unable to read the file {file}",
77
85
  "INVALID_JSON_FILE": "{file} is not a valid JSON file",
78
86
  "INVALID_CSV_FILE": "{file} is not a valid CSV file",
79
- "NETWORK_ERROR": "Network or service error occured"
87
+ "NETWORK_ERROR": "Network or service error occurred"
80
88
  },
81
89
  "units": {
82
90
  "METER_SYMBOL": "m",
@@ -126,8 +134,8 @@
126
134
  "KILOMETER_PER_HOUR_LABEL": "Kilometers per hour",
127
135
  "MILES_PER_HOUR_LABEL": "Miles per hour",
128
136
  "KNOT_LABEL": "Knots",
129
- "CELSIUS_LABEL": "Celcius degrees",
130
- "FAHRENHEIT_LABEL": "Fahrenhiet degrees",
137
+ "CELSIUS_LABEL": "Celsius degrees",
138
+ "FAHRENHEIT_LABEL": "Fahrenheit degrees",
131
139
  "KELVIN_LABEL": "Kelvins",
132
140
  "DEGREE_LABEL": "Degrees",
133
141
  "RADIAN_LABEL": "Radians",
@@ -163,7 +171,7 @@
163
171
  "VERSION_MISMATCH": "Application version mismatch, please install the latest available version or check your end point",
164
172
  "session": {
165
173
  "DISCONNECT": "The server connection has been lost, please wait until reconnection...",
166
- "RECONNECT": "The server connection has been restaured, you can refresh the application in case data has been updated during the disconnection.",
174
+ "RECONNECT": "The server connection has been restored, you can refresh the application in case data has been updated during the disconnection.",
167
175
  "RELOAD": "Refresh",
168
176
  "REFUSED": "Your connection have been refused by the server, you have been disconnected...",
169
177
  "IGNORE": "Ignore",
@@ -172,10 +180,10 @@
172
180
  "INFORMATION": "Information"
173
181
  },
174
182
  "pwa": {
175
- "UPDATE_TITLE": "Update available",
176
- "UPDATE_MESSAGE": "To find out more consult the <a href=\"{changelog}\" target=\"_\">release note</a>",
177
- "UPDATE": "Update",
178
- "IGNORE": "Ignore"
183
+ "UPDATE_MESSAGE": "<b>A new version is available</b>, the application will be updated in a couple of seconds."
184
+ },
185
+ "context": {
186
+ "REMOVED_MESSAGE": "The context object has been removed. You will be redirected to the home page."
179
187
  }
180
188
  },
181
189
  "utils": {
@@ -193,18 +201,6 @@
193
201
  "AVATAR_FIELD_LABEL": "Select an avatar",
194
202
  "NAME_FIELD_LABEL": "Enter your name",
195
203
  "COLOR_FIELD_LABEL": "Pick a color",
196
- "ORGANISATIONS_CREATE_TITLE": "Create a new organisation ?",
197
- "ORGANISATIONS_NAME_FIELD_LABEL": "Enter the name of this organisation",
198
- "ORGANISATIONS_DESCRIPTION_FIELD_LABEL": "Enter a description name of this organisation",
199
- "MEMBERS_TAGS_FIELD_LABEL": "Add somes tags to qualify this member",
200
- "TAG_NAME": "{ object.value }",
201
- "TAGS_CREATE_TITLE": "Create a new tag ?",
202
- "TAGS_NAME_FIELD_LABEL": "Enter the name of this tag",
203
- "TAGS_ICON_FIELD_LABEL": "Set the icon of this tag",
204
- "TAGS_DESCRIPTION_FIELD_LABEL": "Enter a description of this tag",
205
- "GROUPS_CREATE_TITLE": "Create a new group ?",
206
- "GROUPS_NAME_FIELD_LABEL": "Enter the name of this group",
207
- "GROUPS_DESCRIPTION_FIELD_LABEL": "Enter a description for this group",
208
204
  "UPDATE_SETTINGS_TITLE": "Your settings",
209
205
  "TIME_FORMAT_SETTINGS": "Time/Date format",
210
206
  "TIME_FORMAT_SHORT_TIME_FIELD_LABEL": "Short time format",
@@ -227,7 +223,8 @@
227
223
  "AUTO_NOTATION_FIELD_LABEL": "Select the best-suited number notation",
228
224
  "FIXED_NOTATION_FIELD_LABEL": "Fixed precision number notation",
229
225
  "EXPONENTIAL_NOTATION_FIELD_LABEL": "Exponential number notation",
230
- "PRECISION_FIELD_LABEL": "Default number of decimal or significant digits"
226
+ "PRECISION_FIELD_LABEL": "Default number of decimal or significant digits",
227
+ "NAVIGATOR_APP_LABEL": "Default navigation application"
231
228
  },
232
229
  "tours": {
233
230
  "APP_BAR_OVERFLOW_MENU_LABEL": "When not visible, you can find it using the popup menu.",
@@ -261,12 +258,6 @@
261
258
  "EMAIL_VERIFICATION_LABEL": "We will send you an email back containing a link to <b>verify your address</b>.",
262
259
  "LOGIN_LINK_LABEL": "You can now login whenever you want using your <b>personal identifiers</b>"
263
260
  },
264
- "create-organisation": {
265
- "ORGANISATION_NAME_LABEL": "Enter the organisation name as viewed by others users.",
266
- "ORGANISATION_DESCRIPTION_LABEL": "Enter a detailed description.",
267
- "ORGANISATION_AVATAR_LABEL": "Select the image or the logo of your organisation as seen by your members.",
268
- "CREATE_ORGANISATION_LABEL": "Confirm the creation of your new organisation."
269
- },
270
261
  "account": {
271
262
  "PROFILE_LABEL": "This activity allows to update your profile information",
272
263
  "AVATAR_LABEL": "Your avatar visible in the side menu when an image file has been selected.",
@@ -292,103 +283,6 @@
292
283
  "UNSUBSCRIBE_LABEL": "Check for any suspect activity and remove outdated subscriptions.",
293
284
  "DANGER_ZONE_LABEL": "This activity allows to remove your account",
294
285
  "DELETE_LABEL": "A manual confirmation will be required before final removal."
295
- },
296
- "groups": {
297
- "GROUPS_LABEL": "This activity allows to manage the <b>groups</b> in your organisation.",
298
- "GROUP_DEFINITION_LABEL": "A group allows to delegate the management of a shared workspace limited to its members.",
299
- "OVERFLOW_MENU_LABEL": "@:tours.APP_BAR_OVERFLOW_MENU_LABEL",
300
- "SEARCH_LABEL": "Type part of a word contained in the name of your groups in the arising bar to perform a search.",
301
- "SORT_LABEL": "Sort your groups by ascending or descending alphabetical order this button.",
302
- "NEW_GROUP_LABEL": "Create a <b>new group</b> using this button.",
303
- "CREATE_GROUP_LINK_LABEL": "How to create a group",
304
- "GROUP_CARD_LABEL": "Each group is viewed as a card providing available actions.",
305
- "GROUP_MEMBERS_LABEL": "This section shows you the <b>members</b> count of your group.",
306
- "LIST_GROUP_MEMBERS_LABEL": "Shows the <b>members</b> of your group by selecting it.",
307
- "UPDATE_GROUP_LABEL": "Update the name of your group through this action.",
308
- "UPDATE_GROUP_DESCRIPTION_LABEL": "Update the description of your group through this action.",
309
- "GROUP_OVERFLOW_MENU_LABEL": "@:tours.CARD_OVERFLOW_MENU_LABEL",
310
- "REMOVE_GROUP_LABEL": "Remove your group through this action.",
311
- "REMOVE_CONFIRMATION_LABEL": "@:tours.REMOVE_CONFIRMATION_LABEL"
312
- },
313
- "create-group": {
314
- "GROUP_NAME_LABEL": "Choose a name for your group.",
315
- "GROUP_DESCRIPTION_LABEL": "Choose a detailed description for your group.",
316
- "CREATE_GROUP_LABEL": "Confirm the creation of your new group."
317
- },
318
- "members": {
319
- "MEMBERS_LABEL": "This activity allows to manage the <b>members</b> in your organisation.",
320
- "MEMBER_DEFINITION_LABEL": "A <b>member</b> is a user able to access the shared workspace offered by your organisation.",
321
- "OVERFLOW_MENU_LABEL": "@:tours.APP_BAR_OVERFLOW_MENU_LABEL",
322
- "SEARCH_LABEL": "Type part of a word contained in the name of your members in the arising bar to perform a search.",
323
- "SEARCH_MORE_LABEL": "Type also a word contained in the name of a group or a tag associated to your members to filter accordingly.",
324
- "FILTER_LABEL": "Filter your members according to their status using this button.",
325
- "SORT_LABEL": "Sort your members by ascending or descending alphabetical order this button.",
326
- "ADD_INVITE_MEMBER_LABEL": "Add members to your organisation through this action.",
327
- "ADD_MEMBER_LABEL": "If your future member <b>already has an account</b>, <b>add him</b> using this button.",
328
- "ADD_MEMBER_LINK_LABEL": "How to add a member",
329
- "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 .",
330
- "INVITE_MEMBER_LINK_LABEL": "How to invite a member",
331
- "MEMBER_CARD_LABEL": "Each member is viewed as a card providing available actions.",
332
- "ROLE_LABEL": "Visualise the role of your member at a glance.",
333
- "TAGS_LABEL": "Visualise tags of your member at a glance as well.",
334
- "TAGS_CONTENT_LABEL": "Use the cross to delete a tag.",
335
- "GROUPS_LABEL": "Visualise groups of your member at a glance as well.",
336
- "GROUPS_CONTENT_LABEL": "Select one of the member groups to show available actions.",
337
- "ADD_TAG_LABEL": "Add tag of your member through this action.",
338
- "ADD_TAG_LINK_LABEL": "How to manage tags",
339
- "JOIN_GROUP_LABEL": "Add your member to a <b>group</b> through this action.",
340
- "JOIN_GROUP_LINK_LABEL": "How to manage groups",
341
- "CHANGE_ROLE_LABEL": "Update the role of your member through this action.",
342
- "CHANGE_ROLE_LINK_LABEL": "How to manage roles",
343
- "REMOVE_MEMBER_LABEL": "Remove the member from your organisation through this action.",
344
- "REMOVE_CONFIRMATION_LABEL": "@:tours.REMOVE_CONFIRMATION_LABEL"
345
- },
346
- "add-member": {
347
- "UNIQUE_TAB_LABEL": "Add a unique person to your organisation using his email adress.",
348
- "UNIQUE_EMAIL_LABEL": "Enter the email of the desired person",
349
- "UNIQUE_CONTINUE_BUTTON_LABEL": "Click this button to procced with the invitation or to add the person if they already have an account.",
350
- "UNIQUE_NAME_LABEL": "Enter the name of the person.",
351
- "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.",
352
- "UNIQUE_ADD_BUTTON_LABEL": "Click this button to send the invitation.",
353
- "MULTIPLE_TAB_LABEL": "Add multiple persons to your organisation using a CSV file.",
354
- "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.",
355
- "MULTIPLE_ADD_BUTTON_LABEL": "Click this button to proceed with the invitations."
356
- },
357
- "role-member": {
358
- "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.",
359
- "UPDATE_ROLE_LABEL": "Update the role of your member"
360
- },
361
- "join-group": {
362
- "GROUP_NAME_LABEL": "Typing <b>the first characters</b> of a group name to make it selectable.",
363
- "MEMBER_ROLE_LABEL": "Choisissez le rôle de la personne au sein du groupe.",
364
- "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).",
365
- "ADD_MEMBER_LABEL": "Confirm adding the member to the group."
366
- },
367
- "add-tag": {
368
- "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.",
369
- "ADD_TAG_LABEL": "Confirm addition the tags on your members."
370
- },
371
- "tags": {
372
- "TAGS_LABEL": "This activity allows to manage the <b>tags</b> in your organisation.",
373
- "TAG_DEFINITION_LABEL": "A tag allows to classify a subset of your organisation members (e.g. a skill or a service).",
374
- "OVERFLOW_MENU_LABEL": "@:tours.APP_BAR_OVERFLOW_MENU_LABEL",
375
- "SEARCH_LABEL": "Type part of a word contained in the name of your tags in the arising bar to perform a search.",
376
- "SORT_LABEL": "Sort your tags by ascending or descending alphabetical order this button.",
377
- "TAG_CARD_LABEL": "Each tag is viewed as a card providing available actions.",
378
- "NEW_TAG_LABEL": "Create a <b>new tag</b> using this button.",
379
- "CREATE_TAG_LINK_LABEL": "How to create a tag",
380
- "TAG_COUNT_LABEL": "This section shows you the number of <b>members</b> having your tag.",
381
- "LIST_MEMBERS_LABEL": "Shows the <b>members</b> with this tag by selecting it.",
382
- "REMOVE_TAG_LABEL": "Remove your tag through this action.",
383
- "REMOVE_CONFIRMATION_LABEL": "@:tours.REMOVE_CONFIRMATION_LABEL",
384
- "UPDATE_TAG_LABEL": "Update properties of your tag through this action, this will update all members having this tag.",
385
- "UPDATE_TAG_DESCRIPTION_LABEL": "Update the description of your tag through this action."
386
- },
387
- "create-tag": {
388
- "TAG_NAME_LABEL": "Choose a name for your tag.",
389
- "TAG_ICON_LABEL": "Choose an icon to easily recognize your tag.",
390
- "TAG_DESCRIPTION_LABEL": "Choose a detailed description for your tag.",
391
- "CREATE_TAG_LABEL": "Confirm the creation of your new tag."
392
286
  }
393
287
  },
394
288
  "exporter": {
@@ -415,22 +309,29 @@
415
309
  "MORE_ABOUT_KALISIO": "More about Kalisio"
416
310
  },
417
311
  "KPlatform": {
418
- "PROPERTY": "Property",
419
- "VALUE": "Value",
420
- "COPY_INFO": "Copy info",
312
+ "USER_AGENT": "User agent",
313
+ "APPLICATION": "Application",
314
+ "PERMISSIONS": "Permissions",
315
+ "PERMISSION_GRANTED": "Granted",
316
+ "PERMISSION_PROMPT": "Prompt",
317
+ "BROWSER": "Browser",
318
+ "LOCALE": "Locale",
319
+ "WEBGL": "WebGL support",
320
+ "SYSTEM": "System",
321
+ "COPY_INFO": "Copy info to clipboard",
421
322
  "INFO_COPIED": "Platform info copied",
422
323
  "CANNOT_COPY_INFO": "Cannot copy platform info"
423
324
  },
424
325
  "KAbout": {
425
326
  "DOMAIN": "Hosted on",
426
327
  "FLAVOR": "Flavor",
427
- "VIEW_CHANGELOG": "Changlog",
328
+ "VIEW_CHANGELOG": "Changelog",
428
329
  "BUG_REPORT": "Report a bug",
429
330
  "BUG_REPORT_SUBJECT": "[{appName}] Bug report - Client v{clientVersion} - API v{apiVersion}",
430
331
  "BUG_REPORT_BODY": "Please detail your problem here%0D%0A%0D%0APlatform information to be kept%0D%0A%0D%0A",
431
332
  "PLATFORM_INFO": "Platform information"
432
333
  },
433
- "KWelcome": {
334
+ "KWelcome": {
434
335
  "WELCOME_TITLE": "Welcome !",
435
336
  "WELCOME_MESSAGE": "This quick start guide covers the main application features.",
436
337
  "ONLINE_HELP": "Read first our online help to get an overview of the basic concepts",
@@ -459,6 +360,9 @@
459
360
  "MESSAGE": "Oups... page not found",
460
361
  "GO_HOME_LABEL": "Go home page"
461
362
  },
363
+ "KUnauthorizedScreen": {
364
+ "MESSAGE": "You are not authorized to access this page"
365
+ },
462
366
  "KLoginScreen": {
463
367
  "EMAIL_FIELD_LABEL": "@:KScreen.EMAIL_FIELD_LABEL",
464
368
  "PASSWORD_FIELD_LABEL": "Enter your password",
@@ -478,7 +382,6 @@
478
382
  "ACCEPT_TERMS_LABEL": "I accept the terms and policies",
479
383
  "ACCEPT_TERMS_ERROR_LABEL": "You must accept our terms and policies to register",
480
384
  "REGISTER_LABEL": "Register",
481
- "ALREADY_HAVE_AN_ACCOUNT_LINK": "Already have an account ?",
482
385
  "EMAIL_ALREADY_TAKEN": "Email already taken !",
483
386
  "REGISTER_ERROR": "Wrong input or service unavailable, please try again",
484
387
  "CONTEXTUAL_HELP": "@:NEED_HELP"
@@ -529,7 +432,7 @@
529
432
  },
530
433
  "KSubscription": {
531
434
  "UNSUBSCRIBE_LABEL": "Unsubscribe",
532
- "LAST_ACTIVITY": "Last activity",
435
+ "LAST_ACTIVITY": "Last activity on {date} at {time}",
533
436
  "UNSUBSCRIBE_DIALOG_TITLE": "Unsubscribe from {description} ?",
534
437
  "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."
535
438
  },
@@ -565,7 +468,7 @@
565
468
  },
566
469
  "KDescriptionCardSection": {
567
470
  "TITLE": "Description",
568
- "NO_DESCRIPTION_LABEL": "No description"
471
+ "NO_DESCRIPTION": "No description"
569
472
  },
570
473
  "KColorChooser": {
571
474
  "CANCEL_BUTTON": "@:CANCEL",
@@ -653,8 +556,8 @@
653
556
  "writing": "writing"
654
557
  }
655
558
  },
656
- "KTagField": {
657
- "CREATE_TAG": "Create <b>c</b>"
559
+ "KTextAreaField": {
560
+ "CLEAR_TOOLTIP": "Clear content"
658
561
  },
659
562
  "KResolutionField": {
660
563
  "SD_LABEL": "Standard Definition",
@@ -671,7 +574,7 @@
671
574
  "4K_DESCRIPTION": "1:1.9, 3840 x 2160",
672
575
  "8K_LABEL": "8K or Full Ultra HD",
673
576
  "8K_DESCRIPTION": "16∶9, 7680 x 4320",
674
- "PERSONALISED_LABEL": "Personalized"
577
+ "PERSONALIZED_LABEL": "Personalized"
675
578
  },
676
579
  "KFileField": {
677
580
  "INVALID_FILE_TYPE": "Invalid file type, please select the right file type",
@@ -684,18 +587,36 @@
684
587
  },
685
588
  "KMediaBrowser": {
686
589
  "CLOSE_ACTION": "@:CLOSE",
687
- "DOWNLOAD_MEDIA_ACTION": "Donwload media",
590
+ "DOWNLOAD_MEDIA_ACTION": "Download media",
688
591
  "RESTORE_IMAGE_ACTION": "Restore image",
689
592
  "REMOVE_MEDIA_ACTION": "Remove the media",
690
593
  "REMOVE_DIALOG_TITLE": "Remove the media {media} ?",
691
594
  "REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove the media <b>{media}</b> ?",
692
- "ADD_MEDIA_ACTION": "Add a media",
693
- "ADD_PHOTO_ACTION": "Add a photo",
595
+ "ADD_MEDIA_LABEL": "Add a media",
596
+ "ADD_PHOTO_LABEL": "Add a photo",
694
597
  "UPLOAD_TITLE": "Add a media",
695
598
  "UPLOAD_FILE_FIELD_LABEL": "Select a file",
696
599
  "UPLOAD": "Add",
697
600
  "NO_MEDIA": "There is no media to show, please add a media first with one of the action buttons."
698
601
  },
602
+ "KMessageCard": {
603
+ "VIEW_ATTACHMENT": "View attachment",
604
+ "DOWNLOAD_ATTACHMENT": "Download attachment",
605
+ "EDIT_MESSAGE": "Edit message"
606
+ },
607
+ "KMessageComposer": {
608
+ "FORMAT_MESSAGE": "Format message",
609
+ "ATTACH_FILE": "Attach file",
610
+ "WRITE_YOUR_MESSAGE": "Write your message...",
611
+ "SEND_MESSAGE": "Send message",
612
+ "OPEN_EDITOR": "Open editor",
613
+ "CLOSE_EDITOR": "Close editor",
614
+ "message-type": {
615
+ "INFORMATION": "Information",
616
+ "WARNING": "Warning",
617
+ "ALERT": "Alert"
618
+ }
619
+ },
699
620
  "KFab": {
700
621
  "CLOSE_ACTION": "@:CLOSE"
701
622
  },
@@ -708,118 +629,6 @@
708
629
  "RESTORE_ACTION": "Restore",
709
630
  "MAXIMIZE_ACTION": "Maximize"
710
631
  },
711
- "KOrganisationsActivity": {
712
- "ORGANISATIONS_LABEL": "My organisations",
713
- "CREATE_ORGANISATION_LABEL": "Create an organisation",
714
- "SEARCH_ORGANISATIONS": "Rechercher des organisations",
715
- "SORT_ORGANISATIONS": "Trier les organisations"
716
- },
717
- "KMembersActivity": {
718
- "MEMBERS_LABEL": "@:MEMBERS",
719
- "SORT_MEMBERS": "Sort members",
720
- "SEARCH_MEMBERS": "Search members",
721
- "EXPORT_MEMBERS": "Export members",
722
- "ADD_USER_LABEL": "Add a member",
723
- "INVITE_GUEST_LABEL": "Invite guests"
724
- },
725
- "KAddMember": {
726
- "TITLE": "Add one or more persons ?",
727
- "EMAIL_FIELD_LABEL": "Enter the email address of the person to be added",
728
- "NAME_FIELD_LABEL": "Enter the name of this person",
729
- "ROLE_FIELD_LABEL": "Select the role granted to this person",
730
- "ADD_MESSAGE": "<b>{email}</b> is already registered. Would you like to add this persion to your organisation ?",
731
- "INVITE_MESSAGE": "<b>{email}</b> is not registered. Would you like to invite this person ?",
732
- "FILE_FIELD_LABEL": "Select the CSV file you want to import",
733
- "OWNER_LABEL": "@:OWNER",
734
- "MANAGER_LABEL": "@:MANAGER",
735
- "MEMBER_LABEL": "@:MEMBER",
736
- "CANCEL_BUTTON": "@:CANCEL",
737
- "CONTINUE_BUTTON": "Continue",
738
- "BACK_BUTTON": "Back",
739
- "ADD_BUTTON": "Add",
740
- "INVITE_BUTTON": "Invite",
741
- "ALREADY_MEMBER_ERROR": "This person is already a member of your organisation",
742
- "CONTENT_FILE_ERROR": "Are you sure your file is correclty formatted ?",
743
- "INVALID_FIELDS_VALUES_ERROR": "Invalid values",
744
- "INVALID_FIELDS_NUMBER_ERROR": "Invalid field number",
745
- "ALERT_FILE_IMPORT_MESSAGE": "No valid record detected. Please ensure your file is correctly formatted",
746
- "CONFIRM_FILE_IMPORT_MESSAGE": "<b>{errors} error(s)</b> detected among {records}] record(s). Would you to continue ?",
747
- "USER_ADDED_MESSAGE": "This person as been added",
748
- "GUEST_ADDED_MESSAGE": "This person as been invited"
749
- },
750
- "KAddTag": {
751
- "TITLE": "Tag {member} with an existing tag ?",
752
- "TAG_FIELD_LABEL": "Enter the name of the tag",
753
- "CLOSE_ACTION": "@:CLOSE",
754
- "ADD_BUTTON": "Tag"
755
- },
756
- "KJoinGroup": {
757
- "TITLE": "Add {member} to an existing group ?",
758
- "GROUP_FIELD_LABEL": "Enter the name of the group",
759
- "ROLE_FIELD_LABEL": "Delegate group management to this member?",
760
- "OWNER_LABEL": "@:OWNER",
761
- "MANAGER_LABEL": "@:MANAGER",
762
- "MEMBER_LABEL": "@:MEMBER",
763
- "CLOSE_ACTION": "@:CLOSE",
764
- "ADD_BUTTON": "Add"
765
- },
766
- "KChangeRole": {
767
- "TITLE": "Change role of {member} ?",
768
- "ROLE_FIELD_LABEL": "Select the role to be granted to the user",
769
- "CLOSE_ACTION": "@:CLOSE",
770
- "UPDATE_BUTTON": "Update"
771
- },
772
- "KMemberCard": {
773
- "EDIT_ACTION": "@:EDIT",
774
- "REMOVE_ACTION": "@:REMOVE",
775
- "TAGS_SECTION": "Tags",
776
- "NO_TAGS_LABEL": "Update tags",
777
- "TAG_ACTION": "Add a tag",
778
- "REMOVE_TAG_DIALOG_TITLE": "Remove tag {tag} ?",
779
- "REMOVE_TAG_DIALOG_MESSAGE": "Are you sure you want to remove tag <b>{tag}</b> for <b>{member}</b>?",
780
- "GROUPS_SECTION": "Groups",
781
- "NO_GROUPS_LABEL": "No groups",
782
- "JOIN_GROUP_ACTION": "Join a group",
783
- "EXPIRE_AT_LABEL": "Invitation expire at",
784
- "CHANGE_ROLE_ACTION": "Change role",
785
- "RESEND_INVITATION_ACTION": "Resend an invitation",
786
- "REMOVE_DIALOG_TITLE": "Remove {member} ?",
787
- "REMOVE_DIALOG_MESSAGE": "Are you sure you want to remove <b>{member}</b> from your organisation ?",
788
- "LEAVE_GROUP_DIALOG_TITLE": "Leave the group {group} '?",
789
- "LEAVE_GROUP_DIALOG_MESSAGE": "Are you sure you want <b>{member}</b> to leave the group <b>{group}</b> ?",
790
- "RESEND_INVITATION_DIALOG_TITLE": "Resend the invitation for {member} ?",
791
- "RESEND_INVITATION_DIALOG_MESSAGE": "Is <b>{member}</b>'s email address correct ?"
792
- },
793
- "KTagsActivity": {
794
- "TAGS_LABEL": "@:TAGS",
795
- "SORT_TAGS": "Sort tags",
796
- "SEARCH_TAGS": "Search tags",
797
- "EXPORT_TAGS": "Export tags",
798
- "CREATE_TAG_LABEL": "Create a tag"
799
- },
800
- "KTagCard": {
801
- "EDIT_ACTION": "@:EDIT",
802
- "REMOVE_ACTION": "@:REMOVE",
803
- "MEMBERS_SECTION": "Members",
804
- "MEMBERS_LABEL": "{count} member(s)",
805
- "VIEW_MEMBERS_LABEL": "View members with tag"
806
- },
807
- "KGroupsActivity": {
808
- "GROUPS_LABEL": "@:GROUPS",
809
- "SORT_GROUPS": "Sort groups",
810
- "SEARCH_GROUPS": "Search groups",
811
- "EXPORT_GROUPS": "Export groups",
812
- "CREATE_GROUP_LABEL": "Create a group"
813
- },
814
- "KGroupCard": {
815
- "EDIT_ACTION": "@:EDIT",
816
- "REMOVE_ACTION": "@:REMOVE",
817
- "DESCRIPTION_SECTION": "Description",
818
- "NO_DESCRIPTION_LABEL": "No description",
819
- "MEMBERS_SECTION": "Members",
820
- "MEMBERS_LABEL": "{count} member(s)",
821
- "VIEW_MEMBERS_LABEL": "View members"
822
- },
823
632
  "KResetPassword": {
824
633
  "TITLE": "Reset your password ?",
825
634
  "MESSAGE": "Please enter your new password to proceed",
@@ -843,13 +652,6 @@
843
652
  "ERROR_MESSAGE_IS_VERIFIED": "Check your inbox and verify your email address first",
844
653
  "ERROR_MESSAGE_DEFAULT": "Error while sending email, please check the address and send it again or try again later"
845
654
  },
846
- "KMemberFilter": {
847
- "NONE": "None",
848
- "OWNER": "Owner",
849
- "MANAGER": "Manager",
850
- "MEMBER": "Member",
851
- "GUEST": "Guest"
852
- },
853
655
  "KSorter": {
854
656
  "SORT": "Sort"
855
657
  },
@@ -902,7 +704,13 @@
902
704
  "SERIES_EXPORT_FILE": "Series.csv"
903
705
  },
904
706
  "KFilter": {
905
- "SEARCH_LABEL": "Search"
707
+ "SEARCH_LABEL": "@:SEARCH"
708
+ },
709
+ "KTagsFilterControl": {
710
+ "FILTER": "Filter by properties"
711
+ },
712
+ "KTimeFilterControl": {
713
+ "FILTER": "Filter by time"
906
714
  },
907
715
  "KTextArea": {
908
716
  "COLLAPSE": "Collapse"
@@ -912,12 +720,31 @@
912
720
  "PREVIOUS_HOUR": "Previous hour",
913
721
  "PREVIOUS_DAY": "Previous day",
914
722
  "START_REALTIME": "Start real-time",
915
- "STTOP_REALTIME": "Stop real-time",
723
+ "STOP_REALTIME": "Stop real-time",
916
724
  "SET_DATETIME": "Set date and time",
917
725
  "SET_STEP": "Set step",
918
726
  "NEXT_DAY": "Next day",
919
727
  "NEXT_HOUR": "Next hour",
920
728
  "NEXT_STEP": "Next step"
729
+ },
730
+ "KImage": {
731
+ "RESET": "Reset"
732
+ },
733
+ "KBrowser": {
734
+ "DOWNLOAD_FILE": "Download file",
735
+ "UPLOAD_FILES": "Upload files",
736
+ "UPLOAD": "Upload",
737
+ "DELETE_FILE": "Delete file",
738
+ "DELETE_FILE_MESSAGE": "Are you sure you want to delete {name} ?",
739
+ "CANNOT_BE_VIEWED": "This file cannot be viewed",
740
+ "NO_FILES": "No files"
741
+ },
742
+ "KUploader": {
743
+ "ADD_FILES": "Add files...",
744
+ "EMPTY_FILE": "File {file} is empty or corrupted !",
745
+ "INVALID_TYPE": "Type of file {file} is invalid !",
746
+ "FILE_TOO_LARGE": "File {file} is too large. The size must be less than {size}Mb",
747
+ "UPLOAD_FILE_SUCCEEDED": "File {file} has been successfully uploaded",
748
+ "UPLOAD_FILE_ERRORED": "Cannot upload file {file} !"
921
749
  }
922
750
  }
923
-