fcr-ui-scene 3.4.5 → 3.5.1

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 (421) hide show
  1. package/lib/base.js +4 -1
  2. package/lib/creator.d.ts +4 -1
  3. package/lib/creator.js +66 -3
  4. package/lib/electron/app.js +0 -3
  5. package/lib/electron/bootstrap-dev.js +2 -0
  6. package/lib/electron/bootstrap-sdk.js +2 -0
  7. package/lib/electron/main.js +14 -3
  8. package/lib/electron/plugins/devtool-shortcut.js +5 -0
  9. package/lib/electron/plugins/screenshot.js +4 -1
  10. package/lib/modules/action-bar/components/apps/app-item/index.css +3 -3
  11. package/lib/modules/action-bar/components/apps/app-item/index.js +35 -24
  12. package/lib/modules/action-bar/components/apps/app-list.d.ts +3 -0
  13. package/lib/modules/action-bar/components/apps/app-list.js +45 -0
  14. package/lib/modules/action-bar/components/apps/index.css +1 -0
  15. package/lib/modules/action-bar/components/apps/index.js +7 -4
  16. package/lib/modules/action-bar/components/apps/useAppItemOptions.d.ts +10 -2
  17. package/lib/modules/action-bar/components/apps/useAppItemOptions.js +10 -6
  18. package/lib/modules/action-bar/components/apps/useBeautyBackground.d.ts +1 -1
  19. package/lib/modules/action-bar/components/apps/useBeautyBackground.js +2 -2
  20. package/lib/modules/action-bar/components/apps/useInterpreter.d.ts +1 -1
  21. package/lib/modules/action-bar/components/apps/useInterpreter.js +6 -6
  22. package/lib/modules/action-bar/components/apps/useLiveStreaming.d.ts +1 -1
  23. package/lib/modules/action-bar/components/apps/useLiveStreaming.js +2 -2
  24. package/lib/modules/action-bar/components/apps/useWidgetList.d.ts +10 -0
  25. package/lib/modules/action-bar/components/apps/useWidgetList.js +38 -0
  26. package/lib/modules/action-bar/components/chat/index.css +8 -0
  27. package/lib/modules/action-bar/components/chat/index.js +2 -1
  28. package/lib/modules/action-bar/components/collapse/index.d.ts +8 -6
  29. package/lib/modules/action-bar/components/collapse/index.js +60 -74
  30. package/lib/modules/action-bar/components/interpreter/index.js +3 -3
  31. package/lib/modules/action-bar/components/item/index.js +1 -1
  32. package/lib/modules/action-bar/components/more/index.js +13 -7
  33. package/lib/modules/action-bar/components/notification-bar/index.d.ts +1 -1
  34. package/lib/modules/action-bar/components/notification-bar/index.js +13 -6
  35. package/lib/modules/action-bar/components/participants/index.js +1 -1
  36. package/lib/modules/action-bar/components/screen-share/index.js +1 -1
  37. package/lib/modules/action-bar/components/screen-share/submenu.js +55 -18
  38. package/lib/modules/action-bar/components/security/index.js +8 -2
  39. package/lib/modules/action-bar/components/trigger-output-language/index.js +68 -55
  40. package/lib/modules/action-bar/components/trigger-subscribe-language/index.js +35 -18
  41. package/lib/modules/action-bar/index.css +8 -0
  42. package/lib/modules/action-bar/index.d.ts +8 -0
  43. package/lib/modules/action-bar/index.js +6 -3
  44. package/lib/modules/action-bar/store.d.ts +37 -22
  45. package/lib/modules/action-bar/store.js +275 -375
  46. package/lib/modules/action-bar/types.d.ts +8 -13
  47. package/lib/modules/action-bar/view.js +3 -8
  48. package/lib/modules/audio-stream/index.d.ts +6 -1
  49. package/lib/modules/audio-stream/index.js +77 -11
  50. package/lib/modules/chat/chat-room-store.d.ts +4 -7
  51. package/lib/modules/chat/chat-room-store.js +39 -62
  52. package/lib/modules/chat/components/chat-action/index.js +2 -2
  53. package/lib/modules/chat/components/chat-bar/index.css +4 -0
  54. package/lib/modules/chat/components/chat-bar/index.d.ts +1 -1
  55. package/lib/modules/chat/components/chat-bar/index.js +18 -16
  56. package/lib/modules/chat/components/chat-select/index.js +16 -147
  57. package/lib/modules/chat/components/chat-select/select-input/index.d.ts +7 -0
  58. package/lib/modules/chat/components/chat-select/select-input/index.js +35 -0
  59. package/lib/modules/chat/components/chat-select/select-item/index.d.ts +12 -0
  60. package/lib/modules/chat/components/chat-select/select-item/index.js +153 -0
  61. package/lib/modules/chat/components/chat-tabs/index.d.ts +2 -0
  62. package/lib/modules/chat/components/chat-tabs/index.js +61 -0
  63. package/lib/modules/chat/components/message-list/chat-empty/index.d.ts +2 -0
  64. package/lib/modules/chat/components/message-list/chat-empty/index.js +26 -0
  65. package/lib/modules/chat/components/message-list/history-unread-message-button/index.d.ts +7 -0
  66. package/lib/modules/chat/components/message-list/history-unread-message-button/index.js +55 -0
  67. package/lib/modules/chat/components/message-list/index.d.ts +1 -1
  68. package/lib/modules/chat/components/message-list/index.js +55 -359
  69. package/lib/modules/chat/components/message-list/message-item/index.d.ts +15 -0
  70. package/lib/modules/chat/components/message-list/message-item/index.js +309 -0
  71. package/lib/modules/chat/components/message-list/scroll-bottom-button/index.d.ts +9 -0
  72. package/lib/modules/chat/components/message-list/scroll-bottom-button/index.js +67 -0
  73. package/lib/modules/chat/index.css +9 -0
  74. package/lib/modules/chat/index.d.ts +6 -0
  75. package/lib/modules/chat/index.js +4 -1
  76. package/lib/modules/chat/store.d.ts +17 -7
  77. package/lib/modules/chat/store.js +75 -72
  78. package/lib/modules/chat/types.d.ts +7 -7
  79. package/lib/modules/chat/types.js +2 -1
  80. package/lib/modules/chat/view.js +22 -102
  81. package/lib/modules/components/device-control/store.d.ts +4 -3
  82. package/lib/modules/components/device-control/store.js +13 -24
  83. package/lib/modules/components/leave-meeting/components/assign-host.js +17 -2
  84. package/lib/modules/components/leave-meeting/index.js +8 -7
  85. package/lib/modules/components/leave-meeting/store.d.ts +15 -7
  86. package/lib/modules/components/leave-meeting/store.js +116 -95
  87. package/lib/modules/components/member-window/components/member-actions/components/audio-control.d.ts +6 -0
  88. package/lib/modules/components/member-window/components/member-actions/components/audio-control.js +36 -0
  89. package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.d.ts +40 -0
  90. package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.js +170 -0
  91. package/lib/modules/components/member-window/components/member-actions/components/icon-status.d.ts +11 -0
  92. package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +105 -0
  93. package/lib/modules/components/member-window/components/member-actions/components/layout/index.d.ts +9 -0
  94. package/lib/modules/components/member-window/components/member-actions/components/layout/index.js +42 -0
  95. package/lib/modules/components/member-window/components/member-actions/components/more-actions.d.ts +11 -0
  96. package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +157 -0
  97. package/lib/modules/components/member-window/components/member-actions/components/share-status.d.ts +2 -0
  98. package/lib/modules/components/member-window/components/member-actions/components/share-status.js +34 -0
  99. package/lib/modules/components/member-window/components/member-actions/components/user-info.d.ts +16 -0
  100. package/lib/modules/components/member-window/components/member-actions/components/user-info.js +130 -0
  101. package/lib/modules/components/member-window/components/member-actions/components/user-tag.d.ts +12 -0
  102. package/lib/modules/components/member-window/components/member-actions/components/user-tag.js +57 -0
  103. package/lib/modules/components/member-window/components/member-actions/index.d.ts +3 -0
  104. package/lib/modules/components/member-window/components/member-actions/index.js +122 -0
  105. package/lib/modules/components/member-window/components/member-actions/libs/index.d.ts +2 -0
  106. package/lib/modules/components/member-window/components/member-actions/libs/index.js +24 -0
  107. package/lib/modules/components/member-window/components/member-actions/provider.d.ts +21 -0
  108. package/lib/modules/components/member-window/components/member-actions/provider.js +77 -0
  109. package/lib/modules/components/member-window/components/member-actions/store.d.ts +48 -0
  110. package/lib/modules/components/member-window/components/member-actions/store.js +307 -0
  111. package/lib/modules/components/member-window/components/member-board.d.ts +2 -0
  112. package/lib/modules/components/member-window/components/member-board.js +63 -0
  113. package/lib/modules/components/member-window/components/mic-volume.d.ts +2 -0
  114. package/lib/modules/components/member-window/components/mic-volume.js +23 -0
  115. package/lib/modules/components/member-window/components/video-player/components/local-video-player.d.ts +4 -0
  116. package/lib/modules/components/member-window/components/video-player/components/local-video-player.js +40 -0
  117. package/lib/modules/components/member-window/components/video-player/components/remote-video-player.d.ts +8 -0
  118. package/lib/modules/components/member-window/components/video-player/components/remote-video-player.js +62 -0
  119. package/lib/modules/components/member-window/components/video-player/index.d.ts +9 -0
  120. package/lib/modules/components/member-window/components/video-player/index.js +38 -0
  121. package/lib/modules/components/member-window/index.css +22 -2
  122. package/lib/modules/components/member-window/index.d.ts +10 -75
  123. package/lib/modules/components/member-window/index.js +20 -738
  124. package/lib/modules/components/member-window/types.d.ts +79 -0
  125. package/lib/modules/components/member-window/types.js +6 -0
  126. package/lib/modules/components/security-menu/index.css +0 -2
  127. package/lib/modules/components/security-menu/index.d.ts +5 -1
  128. package/lib/modules/components/security-menu/index.js +37 -59
  129. package/lib/modules/connection-gateway/index.d.ts +6 -0
  130. package/lib/modules/connection-gateway/index.js +4 -1
  131. package/lib/modules/connection-gateway/store.d.ts +12 -3
  132. package/lib/modules/connection-gateway/store.js +29 -27
  133. package/lib/modules/control-bar/components/meeting-details/index.js +11 -17
  134. package/lib/modules/control-bar/components/more-actions/index.js +5 -4
  135. package/lib/modules/control-bar/components/share-state-nav/index.js +22 -10
  136. package/lib/modules/control-bar/index.css +1 -2
  137. package/lib/modules/control-bar/index.d.ts +14 -0
  138. package/lib/modules/control-bar/index.js +10 -4
  139. package/lib/modules/control-bar/store.d.ts +40 -20
  140. package/lib/modules/control-bar/store.js +156 -191
  141. package/lib/modules/control-bar/view.js +65 -25
  142. package/lib/modules/device-pretest/audio-preview/microphone-detection.js +1 -1
  143. package/lib/modules/dialog/components/control-bar/index.d.ts +1 -1
  144. package/lib/modules/dialog/components/control-bar/index.js +43 -43
  145. package/lib/modules/dialog/components/device-setting/index.js +2 -1
  146. package/lib/modules/dialog/components/dialog-container/component/body.d.ts +1 -0
  147. package/lib/modules/dialog/components/dialog-container/component/body.js +3 -2
  148. package/lib/modules/dialog/components/dialog-container/index.d.ts +2 -0
  149. package/lib/modules/dialog/components/dialog-container/index.js +19 -13
  150. package/lib/modules/dialog/components/live-streaming/index.js +4 -2
  151. package/lib/modules/dialog/components/participant/index.js +2 -2
  152. package/lib/modules/dialog/components/share-screen-selection/index.js +3 -1
  153. package/lib/modules/dialog/components/system-preference/assets/bg1.png +0 -0
  154. package/lib/modules/dialog/components/system-preference/assets/bg2.png +0 -0
  155. package/lib/modules/dialog/components/system-preference/assets/fcr_png_host.png +0 -0
  156. package/lib/modules/dialog/components/system-preference/electron.js +6 -6
  157. package/lib/modules/dialog/components/system-preference/index.css +3 -0
  158. package/lib/modules/dialog/components/system-preference/index.d.ts +17 -2
  159. package/lib/modules/dialog/components/system-preference/index.js +47 -55
  160. package/lib/modules/dialog/components/video-window/index.d.ts +1 -1
  161. package/lib/modules/dialog/components/video-window/index.js +216 -101
  162. package/lib/modules/dialog/components/widget/electron.d.ts +5 -0
  163. package/lib/modules/dialog/components/widget/electron.js +37 -0
  164. package/lib/modules/dialog/components/widget/index.d.ts +6 -0
  165. package/lib/modules/dialog/components/widget/index.js +43 -0
  166. package/lib/modules/dialog/hooks/useElectron.d.ts +7 -0
  167. package/lib/modules/dialog/hooks/useElectron.js +226 -28
  168. package/lib/modules/dialog/index.css +1 -11
  169. package/lib/modules/dialog/index.d.ts +9 -6
  170. package/lib/modules/dialog/index.js +12 -12
  171. package/lib/modules/dialog/store.d.ts +26 -10
  172. package/lib/modules/dialog/store.js +151 -82
  173. package/lib/modules/dialog/type.d.ts +84 -0
  174. package/lib/modules/dialog/type.js +6 -0
  175. package/lib/modules/dialog/view.d.ts +1 -4
  176. package/lib/modules/dialog/view.js +12 -9
  177. package/lib/modules/event-confirm/index.css +11 -0
  178. package/lib/modules/event-confirm/index.d.ts +6 -0
  179. package/lib/modules/event-confirm/index.js +3 -2
  180. package/lib/modules/event-confirm/store.d.ts +10 -4
  181. package/lib/modules/event-confirm/store.js +91 -32
  182. package/lib/modules/event-confirm/view.js +63 -24
  183. package/lib/modules/event-toast/store.js +4 -2
  184. package/lib/modules/interpreter/action/edit-btn/index.js +5 -5
  185. package/lib/modules/interpreter/action/switch-btn/index.js +7 -7
  186. package/lib/modules/interpreter/index.d.ts +5 -1
  187. package/lib/modules/interpreter/index.js +4 -2
  188. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/index.js +3 -3
  189. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/index.js +6 -5
  190. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/option-Item.js +2 -2
  191. package/lib/modules/interpreter/interpreter-list/interpreter-item/index.js +2 -2
  192. package/lib/modules/interpreter/store.d.ts +8 -5
  193. package/lib/modules/interpreter/store.js +90 -39
  194. package/lib/modules/interpreter/type.d.ts +5 -1
  195. package/lib/modules/interpreter/utils.d.ts +0 -1
  196. package/lib/modules/interpreter/utils.js +2 -23
  197. package/lib/modules/interpreter/view.js +2 -6
  198. package/lib/modules/invite/index.d.ts +4 -0
  199. package/lib/modules/invite/index.js +3 -1
  200. package/lib/modules/invite/store.d.ts +11 -2
  201. package/lib/modules/invite/store.js +27 -4
  202. package/lib/modules/layout/components/Aside.js +1 -1
  203. package/lib/modules/layout/components/Carousel.js +36 -14
  204. package/lib/modules/layout/components/Gallery.js +33 -11
  205. package/lib/modules/layout/index.css +2 -2
  206. package/lib/modules/layout/index.d.ts +6 -0
  207. package/lib/modules/layout/index.js +4 -1
  208. package/lib/modules/layout/store.d.ts +23 -10
  209. package/lib/modules/layout/store.js +185 -163
  210. package/lib/modules/layout/type.d.ts +2 -0
  211. package/lib/modules/live-streaming/index.d.ts +2 -0
  212. package/lib/modules/live-streaming/index.js +2 -2
  213. package/lib/modules/live-streaming/store.d.ts +4 -8
  214. package/lib/modules/live-streaming/store.js +9 -19
  215. package/lib/modules/notification/index.css +17 -0
  216. package/lib/modules/notification/store.js +4 -2
  217. package/lib/modules/notification/view.js +7 -2
  218. package/lib/modules/offscreen-pulling/index.d.ts +1 -0
  219. package/lib/modules/offscreen-pulling/index.js +4 -0
  220. package/lib/modules/participant/components/confirm-input/index.d.ts +6 -0
  221. package/lib/modules/participant/components/confirm-input/index.js +50 -0
  222. package/lib/modules/participant/components/mute-all/index.d.ts +3 -7
  223. package/lib/modules/participant/components/mute-all/index.js +21 -33
  224. package/lib/modules/participant/components/participants/components/footer/components/buttons.d.ts +6 -0
  225. package/lib/modules/participant/components/participants/components/footer/components/buttons.js +52 -0
  226. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +60 -0
  227. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.d.ts +2 -0
  228. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.js +166 -0
  229. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.d.ts +5 -0
  230. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.js +28 -0
  231. package/lib/modules/participant/components/participants/components/footer/components/footer/index.css +13 -0
  232. package/lib/modules/participant/components/participants/components/footer/components/footer/index.d.ts +5 -0
  233. package/lib/modules/participant/components/participants/components/footer/components/footer/index.js +242 -0
  234. package/lib/modules/participant/components/participants/components/footer/index.d.ts +5 -0
  235. package/lib/modules/participant/components/participants/components/footer/index.js +48 -0
  236. package/lib/modules/participant/components/participants/components/merge/index.d.ts +11 -0
  237. package/lib/modules/participant/components/participants/components/merge/index.js +49 -0
  238. package/lib/modules/participant/components/participants/components/participants/components/attendee/index.css +191 -0
  239. package/lib/modules/participant/components/participants/components/participants/components/attendee/index.d.ts +4 -0
  240. package/lib/modules/participant/components/participants/components/participants/components/attendee/index.js +204 -0
  241. package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.css +49 -0
  242. package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.d.ts +5 -0
  243. package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.js +219 -0
  244. package/lib/modules/participant/components/participants/components/participants/components/user-row/index.d.ts +5 -0
  245. package/lib/modules/participant/components/participants/components/participants/components/user-row/index.js +70 -0
  246. package/lib/modules/participant/components/participants/components/participants/index.css +104 -0
  247. package/lib/modules/participant/components/participants/components/participants/index.d.ts +3 -0
  248. package/lib/modules/participant/components/participants/components/participants/index.js +110 -0
  249. package/lib/modules/participant/components/participants/components/render-tab/index.d.ts +2 -0
  250. package/lib/modules/participant/components/participants/components/render-tab/index.js +49 -0
  251. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.d.ts +3 -0
  252. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.js +48 -0
  253. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.d.ts +6 -0
  254. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.js +28 -0
  255. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.d.ts +7 -0
  256. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.js +39 -0
  257. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +69 -0
  258. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.d.ts +5 -0
  259. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.js +135 -0
  260. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.d.ts +7 -0
  261. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.js +31 -0
  262. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.d.ts +12 -0
  263. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.js +82 -0
  264. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.d.ts +4 -0
  265. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.js +26 -0
  266. package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.d.ts +2 -0
  267. package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.js +75 -0
  268. package/lib/modules/participant/components/participants/components/render-user/index.d.ts +5 -0
  269. package/lib/modules/participant/components/participants/components/render-user/index.js +21 -0
  270. package/lib/modules/participant/components/participants/index.js +18 -112
  271. package/lib/modules/participant/components/participants/types.d.ts +96 -0
  272. package/lib/modules/participant/components/participants/types.js +37 -0
  273. package/lib/modules/participant/index.css +3 -0
  274. package/lib/modules/participant/index.d.ts +12 -0
  275. package/lib/modules/participant/index.js +7 -1
  276. package/lib/modules/participant/member-list-data-source.d.ts +2 -2
  277. package/lib/modules/participant/member-list-data-source.js +11 -17
  278. package/lib/modules/participant/store.d.ts +44 -37
  279. package/lib/modules/participant/store.js +527 -536
  280. package/lib/modules/participant/type.d.ts +2 -9
  281. package/lib/modules/pc-audio-connect/store.d.ts +1 -1
  282. package/lib/modules/pc-audio-connect/store.js +9 -6
  283. package/lib/modules/setting/audio-settings/audio-settings.js +5 -4
  284. package/lib/modules/setting/audio-settings/index.css +11 -2
  285. package/lib/modules/setting/config.js +1 -1
  286. package/lib/modules/setting/store.d.ts +1 -0
  287. package/lib/modules/setting/store.js +20 -2
  288. package/lib/modules/setting/video-settings/index.css +12 -17
  289. package/lib/modules/setting/video-settings/video-settings-basic.js +40 -44
  290. package/lib/modules/share-screen/components/selection/index.js +70 -80
  291. package/lib/modules/share-screen/index.d.ts +6 -1
  292. package/lib/modules/share-screen/index.js +4 -1
  293. package/lib/modules/share-screen/store.d.ts +37 -33
  294. package/lib/modules/share-screen/store.js +330 -438
  295. package/lib/modules/sound-effect/sound-effect-player.d.ts +0 -4
  296. package/lib/modules/sound-effect/sound-effect-player.js +4 -4
  297. package/lib/modules/state-bar/index.css +2 -15
  298. package/lib/modules/state-bar/index.d.ts +10 -0
  299. package/lib/modules/state-bar/index.js +6 -1
  300. package/lib/modules/state-bar/live-streaming-state.js +0 -17
  301. package/lib/modules/state-bar/meeting-details.js +12 -24
  302. package/lib/modules/state-bar/meeting-time.js +5 -10
  303. package/lib/modules/state-bar/store.d.ts +31 -8
  304. package/lib/modules/state-bar/store.js +146 -100
  305. package/lib/modules/state-bar/view.js +63 -32
  306. package/lib/modules/video-window/components/deviceState/index.d.ts +7 -0
  307. package/lib/modules/video-window/components/deviceState/index.js +75 -0
  308. package/lib/modules/video-window/components/members/index.css +51 -0
  309. package/lib/modules/video-window/components/members/index.d.ts +2 -0
  310. package/lib/modules/video-window/components/members/index.js +131 -0
  311. package/lib/modules/video-window/components/speaking/index.css +86 -0
  312. package/lib/modules/video-window/components/speaking/index.d.ts +3 -0
  313. package/lib/modules/video-window/components/speaking/index.js +48 -0
  314. package/lib/modules/video-window/components/topControl/index.css +35 -0
  315. package/lib/modules/video-window/components/topControl/index.d.ts +3 -0
  316. package/lib/modules/video-window/components/topControl/index.js +79 -0
  317. package/lib/modules/video-window/index.d.ts +7 -0
  318. package/lib/modules/video-window/index.js +14 -20
  319. package/lib/modules/video-window/store.d.ts +19 -88
  320. package/lib/modules/video-window/store.js +98 -365
  321. package/lib/modules/video-window/type.d.ts +40 -4
  322. package/lib/modules/video-window/type.js +4 -4
  323. package/lib/modules/video-window/view.js +11 -23
  324. package/lib/modules/whiteboard/index.d.ts +1 -0
  325. package/lib/modules/whiteboard/index.js +7 -4
  326. package/lib/modules/widget/index.css +17 -0
  327. package/lib/modules/widget/index.d.ts +10 -0
  328. package/lib/modules/widget/index.js +114 -0
  329. package/lib/modules/widget/sdk.d.ts +30 -0
  330. package/lib/modules/widget/sdk.js +224 -0
  331. package/lib/modules/widget/store.d.ts +14 -0
  332. package/lib/modules/widget/store.js +28 -0
  333. package/lib/modules/widget/type.d.ts +156 -0
  334. package/lib/modules/widget/type.js +6 -0
  335. package/lib/modules/widget/view.d.ts +2 -0
  336. package/lib/modules/widget/view.js +47 -0
  337. package/lib/modules/widget/web-widget.d.ts +29 -0
  338. package/lib/modules/widget/web-widget.js +234 -0
  339. package/lib/providers/ability-provider.d.ts +24 -0
  340. package/lib/providers/ability-provider.js +38 -0
  341. package/lib/providers/chat-provider.d.ts +16 -9
  342. package/lib/providers/chat-provider.js +76 -8
  343. package/lib/providers/device-privilege-provider.d.ts +5 -1
  344. package/lib/providers/device-privilege-provider.js +21 -1
  345. package/lib/providers/device-provider.js +5 -2
  346. package/lib/providers/device-stream-provider.d.ts +15 -3
  347. package/lib/providers/device-stream-provider.js +118 -34
  348. package/lib/providers/dialog-provider.d.ts +9 -8
  349. package/lib/providers/dialog-provider.js +8 -4
  350. package/lib/providers/event-provider.js +4 -2
  351. package/lib/providers/interpreter-provider.d.ts +7 -26
  352. package/lib/providers/interpreter-provider.js +473 -706
  353. package/lib/providers/local-storage-provider.d.ts +6 -1
  354. package/lib/providers/local-storage-provider.js +15 -2
  355. package/lib/providers/message-provider.js +4 -2
  356. package/lib/providers/phone-audio-provider.js +24 -18
  357. package/lib/providers/privilege-provider.d.ts +13 -12
  358. package/lib/providers/privilege-provider.js +19 -11
  359. package/lib/providers/renderer-provider.d.ts +5 -0
  360. package/lib/providers/renderer-provider.js +8 -1
  361. package/lib/providers/room-provider.d.ts +7 -17
  362. package/lib/providers/room-provider.js +113 -161
  363. package/lib/providers/screen-share-provider.d.ts +19 -0
  364. package/lib/providers/screen-share-provider.js +102 -10
  365. package/lib/providers/widget-provider.d.ts +52 -0
  366. package/lib/providers/widget-provider.js +171 -0
  367. package/lib/scenes/main-scene.d.ts +11 -0
  368. package/lib/scenes/main-scene.js +60 -33
  369. package/lib/scenes/waiting-scene.d.ts +9 -0
  370. package/lib/scenes/waiting-scene.js +27 -26
  371. package/lib/schema.d.ts +114 -0
  372. package/lib/schema.js +77 -0
  373. package/lib/shared-data-source/chat-data.d.ts +11 -0
  374. package/lib/shared-data-source/chat-data.js +17 -6
  375. package/lib/shared-data-source/interpreter.d.ts +34 -21
  376. package/lib/shared-data-source/interpreter.js +104 -103
  377. package/lib/shared-data-source/meeting-time.d.ts +68 -0
  378. package/lib/shared-data-source/meeting-time.js +299 -0
  379. package/lib/shared-data-source/member-data.d.ts +126 -0
  380. package/lib/shared-data-source/member-data.js +451 -0
  381. package/lib/shared-data-source/pin-data.d.ts +8 -4
  382. package/lib/shared-data-source/pin-data.js +92 -4
  383. package/lib/shared-data-source/security-data.d.ts +35 -0
  384. package/lib/shared-data-source/security-data.js +156 -0
  385. package/lib/shared-data-source/setting.d.ts +3 -1
  386. package/lib/shared-data-source/setting.js +12 -1
  387. package/lib/shared-data-source/video-window.d.ts +7 -8
  388. package/lib/shared-data-source/video-window.js +97 -94
  389. package/lib/shared-data-source/waiting-room.d.ts +29 -2
  390. package/lib/shared-data-source/waiting-room.js +103 -39
  391. package/lib/translations/enUS.d.ts +25 -12
  392. package/lib/translations/enUS.js +47 -68
  393. package/lib/translations/zhCN.d.ts +26 -12
  394. package/lib/translations/zhCN.js +63 -83
  395. package/lib/type.d.ts +64 -48
  396. package/lib/type.js +14 -1
  397. package/lib/ui-manager.d.ts +3 -2
  398. package/lib/ui-manager.js +8 -7
  399. package/lib/ui-scene.d.ts +7 -1
  400. package/lib/ui-scene.js +187 -97
  401. package/lib/utilities/constant.d.ts +7 -3
  402. package/lib/utilities/constant.js +4 -0
  403. package/lib/utilities/default-config.d.ts +5 -1
  404. package/lib/utilities/default-config.js +28 -2
  405. package/lib/utilities/logger.d.ts +8 -0
  406. package/lib/utilities/logger.js +42 -0
  407. package/lib/utilities/meeting-detail.js +11 -10
  408. package/lib/utilities/parameters.d.ts +4 -0
  409. package/lib/utilities/parameters.js +13 -1
  410. package/lib/utilities/renderer.d.ts +1 -0
  411. package/lib/utilities/renderer.js +4 -1
  412. package/lib/utilities/tools.d.ts +7 -6
  413. package/lib/utilities/tools.js +2 -6
  414. package/lib/utilities/validate-params.d.ts +2 -0
  415. package/lib/utilities/validate-params.js +16 -0
  416. package/lib/waiting-room-control-manager.d.ts +28 -0
  417. package/lib/waiting-room-control-manager.js +212 -0
  418. package/lib/widget-sdk.d.ts +2 -0
  419. package/lib/widget-sdk.js +13 -0
  420. package/package.json +7 -6
  421. package/public/index.html +12 -6
@@ -7,7 +7,6 @@ Object.defineProperty(exports, "__esModule", {
7
7
  exports.enUs = void 0;
8
8
  var enUs = exports.enUs = {
9
9
  fmt_role_host: 'Host',
10
- //****************** ls ******************
11
10
  fmt_role_participant: 'Attendees',
12
11
  fmt_role_cohost: 'Co-host',
13
12
  fmt_participants_label_participants: 'Member List',
@@ -20,7 +19,6 @@ var enUs = exports.enUs = {
20
19
  fmt_participants_member_button_mute: 'Mute',
21
20
  fmt_participants_member_button_unmute: 'Unmute',
22
21
  fmt_participants_member_button_more: 'More',
23
- //****************** 参会者 ******************
24
22
  fmt_attendies_options_muteall: 'Mute all attendees in the meeting room',
25
23
  fmt_attendies_button_muteall: 'Mute all',
26
24
  fmt_participants_window_mute_interpreter: 'You are muting the interpreter. Do you want to continue?',
@@ -40,6 +38,9 @@ var enUs = exports.enUs = {
40
38
  fmt_attendies_options_sethost: 'Set as the host',
41
39
  fmt_attendies_options_revokecohost: 'Revoke co-host',
42
40
  fmt_attendies_options_setcohost: 'Set as co-host',
41
+ fmt_attendies_toast_cant_sethost: "The member's device cannot be assigned as the host.",
42
+ fmt_attendies_toast_cant_setcohost: "The member's device cannot be assigned as the co-host.",
43
+ fmt_attendies_button_revokehost_error: 'Your host privileges have been revoked, and the setup has failed.',
43
44
  fmt_attendies_button_rename: 'Rename',
44
45
  fmt_attendies_options_allowlocalrecord: 'Allow recording of local videos',
45
46
  fmt_attendies_options_putinwaitingroom: 'Put it in the waiting room',
@@ -100,7 +101,6 @@ var enUs = exports.enUs = {
100
101
  fmt_additional_popup_label_enter_nickname_ok: 'OK',
101
102
  fmt_additional_label_toast_rename_off: 'Host has closed the rename function',
102
103
  fmt_actionbar_tips_leavemeeting: 'Are you sure you want to leave the meeting now?',
103
- fmt_actionbar_button_plenarysession: 'End the meeting',
104
104
  fmt_actionbar_tips_locked: 'The meeting has been locked by the host',
105
105
  fmt_actionbar_tips_recheckleave: 'You cannot join the meeting after leaving the meeting; Are you sure you want to leave the meeting now?',
106
106
  fmt_aside_status_connecting: 'Connecting',
@@ -180,8 +180,8 @@ var enUs = exports.enUs = {
180
180
  fmt_toolbar_tips_microphone_close: 'Microphone off',
181
181
  fmt_toolbar_tips_camera_open: 'Camera turned on',
182
182
  fmt_toolbar_tips_camera_close: 'Camera off',
183
- fmt_toolbar_tips_host_forbid_open_mic: 'The host prohibits turning on the microphone',
184
- fmt_toolbar_tips_host_forbid_open_camera: 'The host prohibits turning on the camera',
183
+ fmt_toolbar_tips_host_forbid_open_mic: 'The host does not allow unmuting.',
184
+ fmt_toolbar_tips_host_forbid_open_camera: 'The host does not allow attendees to start video.',
185
185
  fmt_toolbar_details_info_locked: '(Locked)',
186
186
  fmt_toolbar_details_room_locked: 'Meeting locked',
187
187
  fmt_toolbar_details_room_locked_tip: 'No participants are allowed to enter the meeting',
@@ -195,7 +195,8 @@ var enUs = exports.enUs = {
195
195
  fmt_toolbar_tips_leave_room_end_cancel: 'Cancel',
196
196
  fmt_toolbar_tips_leave_host_select_submit_tips: 'Please designate a new host',
197
197
  fmt_toolbar_leave_confirm_dialog_kick_title: 'Leave the meeting',
198
- fmt_toolbar_tips_leave_confirm_dialog_kick_info: 'You have been removed from the meeting, click the button to exit the  meeting.',
198
+ fmt_toolbar_tips_leave_confirm_dialog_kick_info: 'You have been removed from the meeting by the host',
199
+ fmt_toolbar_tips_leave_confirm_dialog_kick_info_content: 'Confirm removing {reason1} from the meeting?"',
199
200
  fmt_toolbar_leave_confirm_dialog_submit: 'Got It',
200
201
  fmt_toolbar_tips_leave_confirm_dialog_end_title: 'The meeting has ended',
201
202
  fmt_toolbar_tips_leave_confirm_dialog_end_info: 'The meeting has ended, please click the button to leave the meeting room',
@@ -247,7 +248,8 @@ var enUs = exports.enUs = {
247
248
  fmt_broadcast_livestream_tips_hand_over_pc_to_mobile: 'The new host is joining the meeting via a mobile device. Live streaming functionality is not currently supported, and the live broadcast has been suspended.',
248
249
  fmt_broadcast_livestream_tips_hand_over_mobile: 'You are joining the meeting via a mobile device. Live streaming functionality is not currently supported, and the live broadcast has been suspended.',
249
250
  fmt_broadcast_livestream_label_stop_pc_only: 'Live streaming can only be stopped on the computer, but you can copy the live streaming link to others',
250
- //****************** 设备检测&管理 ******************
251
+ fmt_broadcast_livestream_button_hide: 'Hide',
252
+ fmt_broadcast_livestream_button_show: 'Show',
251
253
  fmt_device_label_audio_mute: 'Mute',
252
254
  fmt_device_label_audio_unmute: 'Unmute',
253
255
  fmt_device_label_video_start: 'Open Camera',
@@ -279,7 +281,6 @@ var enUs = exports.enUs = {
279
281
  fmt_status_label_saysomething: 'Say Something',
280
282
  fmt_status_label_stoprecord: 'Stop Recording',
281
283
  fmt_status_label_rotation: 'reverse lens',
282
- //****************** 入会检测 ******************
283
284
  fmt_sip_button_unmute: 'Request to unmute',
284
285
  fmt_sip_button_opencamera: 'Request to open camera',
285
286
  fmt_sip_button_topup: 'Top up',
@@ -338,15 +339,12 @@ var enUs = exports.enUs = {
338
339
  fmt_uimanager_option_Selfieview: 'Look at my self ',
339
340
  fmt_uimanager_tips_urmuted: 'You have been muted by the host',
340
341
  fmt_uimanager_tips_urturnedoff: 'You have had your camera turned off by the host',
341
- fmt_uimanager_tips_norightsvideo: 'You have no permission to turn on video',
342
- fmt_uimanager_tips_norightsaudio: 'You have no permission to turn on audio',
343
342
  fmt_uimanager_tips_inviteturnon: 'The host invites you to turn on the camera',
344
343
  fmt_uimanager_tips_Remove: 'Remove {reason2}',
345
344
  fmt_uimanager_tips_designedas: 'Should {reason1} be designated as the {reason2} of the meeting?',
346
345
  fmt_uimanager_tips_userleaft: 'The user has left the meeting',
347
346
  fmt_uimanager_labels_Setas: 'Set as {reason1}',
348
347
  fmt_uimanager_tips_allmuted: 'You have turned on all mute',
349
- fmt_uimanager_tips_meetinglocked: 'You have locked the meeting, no one else can join',
350
348
  fmt_uimanager_tips_meetingunlocked: 'You have unlocked the meeting, new participants can join',
351
349
  fmt_uimanager_labels_designate: 'You have been designated as',
352
350
  fmt_uimanager_labels_Becoming: '{reason2} Becoming {reason1}',
@@ -374,7 +372,6 @@ var enUs = exports.enUs = {
374
372
  fmt_uimanager_window_un_pin: 'Cancel fixed',
375
373
  fmt_uimanager_window_pin_success: 'The screen is locked. Click on the bottom right corner to unlock it',
376
374
  fmt_uimanager_window_un_pin_success: 'The screen has been unlocked',
377
- fmt_uimanager_window_pin_error_hide_mine: "You have enabled the 'Hide My Videos' feature, but the fixed window cannot take effect",
378
375
  fmt_uimanager_window_pin_error_hide_no_video: "You have enabled the 'Hide Non Video Attendees' feature, but the fixed window cannot take effect",
379
376
  fmt_uimanager_follow_pc: "Simulate following the host's computer view",
380
377
  fmt_chat_label_chat: 'Chat',
@@ -506,7 +503,6 @@ var enUs = exports.enUs = {
506
503
  fmt_screenshare_tips_hostprohibitssharing: 'Host prohibits screen sharing',
507
504
  fmt_screenshare_tips_faild_reselect: 'Screen sharing failed, please reselect the window',
508
505
  fmt_screenshare_tips_faild_screenselect: 'Screen sharing failed, please select the screen to share again',
509
- fmt_screenshare_tips_faild_nopermission: 'Screen sharing failed, screen sharing permission has been revoked by the host',
510
506
  fmt_screenshare_tips_faild_restrict: 'Screen sharing is restricted',
511
507
  fmt_screenshare_tips_faild_alreadysharing: 'Someone is already sharing the screen, you cannot operate it temporarily.',
512
508
  fmt_screenshare_options_allowshare: 'Allow flexible meetings to share screens',
@@ -515,7 +511,6 @@ var enUs = exports.enUs = {
515
511
  fmt_screenshare_options_enableedit: 'Enable whiteboard editing',
516
512
  fmt_actionbar_screenshare_option_selectcontent: 'Select shared content',
517
513
  fmt_actionbar_screenshare_labels_others: 'Others',
518
- fmt_actionbar_screenshare_tips_restrictshare: 'The Host restricts screen sharing function',
519
514
  fmt_modules_labels_sharing: 'You are sharing',
520
515
  fmt_share_tips_othsersharing: 'Other attendees are sharing',
521
516
  fmt_share_tips_stopothersharing: "Initiate sharing now and {reason1}'s sharing will be stopped. Continue?",
@@ -543,7 +538,6 @@ var enUs = exports.enUs = {
543
538
  fmt_screenshare_stop_share_board: 'Stop sharing whiteboard',
544
539
  fmt_screenshare_stop_share_screen: 'Stop sharing screen',
545
540
  fmt_screenshare_no_permission_open_board: 'No permission to open whiteboard',
546
- fmt_screenshare_administrator_disables_share_screen_board: 'Meeting administrators disable shared screens or whiteboards',
547
541
  fmt_screenshare_no_permission_close_board: 'No permission to close whiteboard',
548
542
  fmt_screenshare_clash_board_remind_title: 'Other attendees are sharing the whiteboard',
549
543
  fmt_screenshare_clash_board_remind_content: 'The cloud whiteboard in the meeting only supports one person to initiate.',
@@ -552,7 +546,7 @@ var enUs = exports.enUs = {
552
546
  fmt_screenshare_clash_screen_share_remind_content_stop_board: 'Initiating the sharing now will stop {reason1}‘s whiteboard sharing. Do you want to continue?',
553
547
  fmt_screenshare_opposite_side: 'other party',
554
548
  fmt_screenshare_continue_share: 'Continue sharing',
555
- fmt_screenshare_cohost_can_not_share_remind: 'Security settings are restricted, only the host and co-hosts can share screens.',
549
+ fmt_screenshare_cohost_can_not_share_remind: 'Sharing failed. Currently, only the host is allowed to initiate sharing.',
556
550
  fmt_screenshare_pop_more: 'Multiple Choice',
557
551
  fmt_screenshare_room_new_screen_share: '{reason1} is sharing the screen',
558
552
  fmt_screenshare_room_speaker_spotlight_username: 'Speaking: {reason1}',
@@ -685,28 +679,19 @@ var enUs = exports.enUs = {
685
679
  fmt_meetinginfo_duration_1: '%1$d minute',
686
680
  fmt_meetinginfo_duration_2: '%1$d hour and %2$d minutes',
687
681
  fmt_meetinginfo_duration_2_no_min: '%1$d hour',
688
- //标签
689
682
  fmt_information_label_lockmeeting: 'Lock Meeting',
690
- //提示
691
683
  fmt_information_tips_lockedbyhost: 'The {reason1} has locked the meeting and no one else is allowed to join',
692
- //提示
693
684
  fmt_information_tips_copysuccess: 'Copy successful (?)',
694
- //提示
695
685
  fmt_information_tips_copyfailed: 'Copy failed (?)',
696
- //标签
697
686
  fmt_information_label_sharemeetingnumber: 'Share meeting number or invitation link',
698
- //提示
699
687
  fmt_additional_tips_invitationfailed: 'Invitation link copying failed',
700
- //提示
701
688
  fmt_additional_tips_invitation: 'The invitation link has been copied to the clipboard',
702
689
  fmt_sharing_button_copydetailed: 'Copy detailed',
703
690
  fmt_sharing_label_invitationlink: 'link',
704
691
  fmt_sharing_tips_copyto_clipboard: 'invite information copied to clipboard',
705
692
  fmt_sharing_tips_copyfull_failed: 'invite information copied failed',
706
693
  fmt_sharing_label_invitationdetailed: '{reason1} invites you to join the meeting, the meeting topic: {reason2}, the meeting time: {reason3}, the meeting link: {reason4}',
707
- //通知
708
694
  fmt_information_tips_meeting_inprogress: 'Meeting in progress',
709
- //通知
710
695
  fmt_information_tips_click_return_meeting: 'Click to return to the meeting interface',
711
696
  fmt_information_label_s_fast_meeting: "'s Fast Meeting",
712
697
  fmt_networkstatus_window_title: 'Network connections',
@@ -751,8 +736,6 @@ var enUs = exports.enUs = {
751
736
  fmt_security_tips_share_screen_off: 'You have enabled screen sharing for attendees',
752
737
  fmt_security_tips_start_audio_on: 'You have allowed self unmuting',
753
738
  fmt_security_tips_start_audio_off: 'You have prohibited self unmuting',
754
- fmt_security_tips_host_start_audio_on: '{reason1} has allowed self unmuting',
755
- fmt_security_tips_host_start_audio_off: '{reason1} has canceled self unmuting',
756
739
  fmt_security_tips_start_video_on: 'You have allowed open video',
757
740
  fmt_security_tips_start_video_off: 'You have prohibited open video',
758
741
  fmt_security_tips_host_start_video_on: '{reason1} Open video allowed',
@@ -767,7 +750,6 @@ var enUs = exports.enUs = {
767
750
  fmt_failure_popup_label_crash_tips: 'The app is crashing, please close the app and try again.',
768
751
  fmt_failure_popup_button_close_app: 'Close the app',
769
752
  fmt_failure_popup_button_refresh: 'Refresh',
770
- //****************** 设置 ******************
771
753
  fmt_settings_option_setting: 'Setting',
772
754
  fmt_settings_option_general: 'General',
773
755
  fmt_settings_option_about_us: 'About US',
@@ -824,7 +806,7 @@ var enUs = exports.enUs = {
824
806
  fmt_setting_option_high_definition: 'High definition video',
825
807
  fmt_setting_option_joinmeeting: 'Close video when joining the meeting',
826
808
  fmt_setting_option_joinmeeting_preview: 'Moderately display video window when joining a video conference',
827
- fmt_setting_option_hidenonvideo: 'Hide non video attendees',
809
+ fmt_setting_option_hidenonvideo: 'Hide participants without video',
828
810
  fmt_setting_label_maxattendees: 'The maximum number of attendees displayed on single screen view',
829
811
  fmt_setting_label_maxattendees_16: '16 attendees',
830
812
  fmt_setting_label_maxattendees_25: '25 attendees',
@@ -848,9 +830,9 @@ var enUs = exports.enUs = {
848
830
  fmt_internalsetting_labels_audiostereoencode: 'This option allows stereo encoding of audio. A microphone or audio interface with stereo effect is required. This option will increase CPU usage and occupy more network bandwidth.',
849
831
  fmt_internalsetting_tips_preventechoes: 'Prevent capturing or generating echoes to improve sound quality. If you are not using headphones or playing an instrument, it is recommended to enable this option.',
850
832
  fmt_internalsetting_tips_optiomizeaudio: 'Optimize audio to provide the highest quality sound effects. This feature will increase CPU usage and occupy more network bandwidth. For optimal results, it is strongly recommended to connect to Ethernet instead of WiFi.',
851
- fmt_internalsetting_tips_speakerpriority: 'After activating voice stimulation, priority will be given to displaying the attending members who are currently speaking.',
833
+ fmt_internalsetting_tips_speakerpriority: 'When voice stimulation is enabled, the participants who are speaking are displayed first.',
852
834
  fmt_internalsetting_labels_voicestimulation: 'Voice stimulation',
853
- fmt_internalsetting_options_hidenonvideo: 'Hide non video attendees',
835
+ fmt_internalsetting_options_hidenonvideo: 'Hide participants without video',
854
836
  fmt_internalsetting_options_adjustlowlight: 'Adjust to use low light compensation',
855
837
  fmt_internalsetting_options_closevideojoin: 'Close my video when joining the meeting',
856
838
  fmt_internalsetting_options_alwaysbox: 'Always display video preview window when joining a video conference',
@@ -894,7 +876,7 @@ var enUs = exports.enUs = {
894
876
  fmt_internalsetting_other_hide_me: 'Hide my videos',
895
877
  fmt_internalsetting_other_hide_me_toast: 'After other members join or turn on video streaming, your video window will be hidden on this device',
896
878
  fmt_internalsetting_other_spot_light: 'Voice stimulation',
897
- fmt_internalsetting_other_spot_light_desc: 'After activating voice stimulation, the attending members who are currently speaking will be prioritized for display.',
879
+ fmt_internalsetting_other_spot_light_desc: 'When voice stimulation is enabled, the participants who are speaking are displayed first.',
898
880
  fmt_internalsetting_room_window_top: 'Top and bottom layout',
899
881
  fmt_internalsetting_room_window_big: 'Large and small layout',
900
882
  fmt_internalsetting_room_window_left: 'Left and right layout',
@@ -902,20 +884,19 @@ var enUs = exports.enUs = {
902
884
  fmt_internalsetting_room_window_switched: 'Switch to {reason1}',
903
885
  fmt_internalsetting_labels_Network_type: 'Network type',
904
886
  fmt_internalsetting_labels_resolving_power: 'Resolution',
905
- //****************** 设置提示部分 ******************
906
887
  fmt_settings_labels_sidebar: 'Sidebar',
907
888
  fmt_settings_labels_fold: 'Fold',
908
889
  fmt_settings_labels_theme: 'Theme',
909
- fmt_settings_tips_sharingprohibited: '{reason1} Sharing is prohibited.You can contact the meeting administrator to enable it',
910
- fmt_settings_tips_videoenabled: '{reason1} has enabled video',
911
- fmt_settings_tips_disabledvideo: '{reason1} has disabled video',
912
- fmt_settings_tips_allowedScreensharing: '{reason1} has allowed screen sharing',
913
- fmt_settings_tips_disabledScreensharing: '{reason1} has disabled screen sharing',
914
- fmt_settings_tips_allowedchat: '{reason1} has allowed chat',
915
- fmt_settings_tips_banedchat: '{reason1} has prohibited chat',
916
- fmt_settings_tips_allowedselfunmuting: '{reason1} has allowed self unmuting',
917
- fmt_settings_tips_disabledselfunmuting: '{reason1} has disabled self unmuting',
918
- fmt_settings_tips_muteallwhilejoin: '{reason1} has set mute for all participants when they join the meeting',
890
+ fmt_settings_tips_sharingprohibited: 'Host Sharing is prohibited.You can contact the meeting administrator to enable it',
891
+ fmt_settings_tips_videoenabled: 'Host has enabled video',
892
+ fmt_settings_tips_disabledvideo: 'Host has disabled video',
893
+ fmt_settings_tips_allowedScreensharing: 'Host has allowed screen sharing',
894
+ fmt_settings_tips_disabledScreensharing: 'Host has disabled screen sharing',
895
+ fmt_settings_tips_allowedchat: 'Host has allowed chat',
896
+ fmt_settings_tips_banedchat: 'Host has prohibited chat',
897
+ fmt_settings_tips_allowedselfunmuting: 'Host has allowed self unmuting',
898
+ fmt_settings_tips_disabledselfunmuting: 'Host has does not allow self unmuting',
899
+ fmt_settings_tips_muteallwhilejoin: 'Host has set mute for all participants when they join the meeting',
919
900
  fmt_settings_labels_you: 'You',
920
901
  fmt_settings_tips_Blockallchat: "‘Block all chat'",
921
902
  fmt_settings_tips_groupchatonly: "'Group chat only'",
@@ -938,7 +919,6 @@ var enUs = exports.enUs = {
938
919
  fmt_settings_popup_label_link_audio_to_hear_others: 'In order to hear other users, please join the meeting using cell phone audio',
939
920
  fmt_settings_popup_label_select_audio: 'Select audio',
940
921
  fmt_settings_popup_label_audio_not_connect_click_select: 'Audio not connected, please click to select',
941
- //****************** 直播 ******************
942
922
  fmt_live_label_thirdplatform: 'Live streaming to third-party platforms',
943
923
  fmt_live_label_videostreamingurl: 'Video streaming URL',
944
924
  fmt_live_inputtips_videostreamingurl: 'Please enter the video stream URL',
@@ -956,7 +936,6 @@ var enUs = exports.enUs = {
956
936
  fmt_live_label_copylink: 'Copy live streaming link',
957
937
  fmt_tips_button_Stopsteaming: 'Stop live',
958
938
  fmt_live_label_push_platform: 'Push the meeting to the specified live platform',
959
- //****************** 录制 ******************
960
939
  fmt_record_button_Cloudrecording: 'Record',
961
940
  fmt_record_button_Localrecording: 'Local recording',
962
941
  fmt_record_button_pauserecording: 'Pause',
@@ -996,6 +975,8 @@ var enUs = exports.enUs = {
996
975
  fmt_record_record_started: 'Cloud recording system has started',
997
976
  fmt_record_record_stop_ask: 'Are you sure to stop recording now?',
998
977
  fmt_record_record_stop_confirm: 'Confirm to stop recording',
978
+ fmt_record_toast_record_paused: 'Cloud recording has been paused',
979
+ fmt_record_toast_record_resumed: 'Cloud recording has been resumed',
999
980
  fmt_pstn_label_accessmethod: 'Select audio access method',
1000
981
  fmt_pstn_options_PCaudioconnet: 'Connect to PC audio',
1001
982
  fmt_pstn_options_phoneaudioconnet: 'Connect to phone audio',
@@ -1142,7 +1123,6 @@ var enUs = exports.enUs = {
1142
1123
  fmt_waitingroom_mainwindow_popup_button_view_detailed: 'View details',
1143
1124
  fmt_waitingroom_mainwindow_popup_button_not_remind: 'No more remind',
1144
1125
  fmt_waitingroom_attendie_popup_label_Leave: 'Leave meeting',
1145
- fmt_waitingroom_attendie_popup_label_click_leave: 'You are removed from the meeting, click the button to leave.',
1146
1126
  fmt_waitingroom_attendie_overview_label_waitingroom: 'Waiting Room',
1147
1127
  fmt_waitingroom_attendie_overview_label_wait_moment: 'The host has activated the waiting room,please wait a moment.',
1148
1128
  fmt_waitingroom_attendie_overview_label_move_in_by_host: 'You have been moved to the waiting room.',
@@ -1248,7 +1228,6 @@ var enUs = exports.enUs = {
1248
1228
  fmt_ai_subtitles_setting_label_listening_no_content: 'No content yet',
1249
1229
  fmt_ai_transcriptions_sidebar_button_stop_translation: 'Stop transcribing',
1250
1230
  fmt_ai_transcriptions_sidebar_button_start_translation: 'Start transcribing',
1251
- //****************** AI会议纪要 ******************
1252
1231
  fmt_ai_summary_create_option_create_summary: 'Create meeting summary for the meeting',
1253
1232
  fmt_ai_summary_create_labels_meeting_list: 'List of meetings',
1254
1233
  fmt_ai_summary_create_labels_valid_records: 'Only the last 2 days of meeting summaries are displayed',
@@ -1272,13 +1251,12 @@ var enUs = exports.enUs = {
1272
1251
  fmt_ai_summary_setting_option_meeting_assistant: 'Meeting Assistant',
1273
1252
  fmt_ai_summary_setting_option_teacher: 'Teacher',
1274
1253
  fmt_ai_summary_setting_option_sales_manager: 'Sales Manager',
1275
- //****************** 会前设置页 ******************
1276
1254
  fmt_premeeting_setting_mobile_label_settings: 'Settings',
1277
1255
  fmt_premeeting_setting_mobile_label_host_settings: 'Meeting host settings when joining a meeting',
1278
1256
  fmt_premeeting_setting_mobile_swtich_mute_when_join: 'Mute when joining a meeting ',
1279
1257
  fmt_premeeting_setting_mobile_label_personal_settings: 'Personal Settings',
1280
1258
  fmt_premeeting_setting_mobile_label_video: 'Video',
1281
- fmt_premeeting_setting_mobile_swtich_hide_video_off: 'Hide video-off attendees when joining a meeting ',
1259
+ fmt_premeeting_setting_mobile_swtich_hide_video_off: 'Hide participants without video',
1282
1260
  fmt_premeeting_setting_mobile_swtich_hide_my_video: 'Hide my video when joining a meeting ',
1283
1261
  fmt_premeeting_setting_mobile_option_background: 'Background ',
1284
1262
  fmt_premeeting_setting_mobile_option_enabled: 'Enabled ',
@@ -1325,7 +1303,6 @@ var enUs = exports.enUs = {
1325
1303
  fmt_premeeting_setting_mobile_popup_button_cancel: 'Cancel',
1326
1304
  fmt_premeeting_setting_mobile_popup_button_log_out: 'Log out ',
1327
1305
  fmt_premeeting_setting_mobile_button_log_out_confirm: 'Confirm',
1328
- //****************** 首页 ******************
1329
1306
  fmt_premeeting_joinroom_mobile_button_upandin: 'Sign up and log in',
1330
1307
  fmt_premeeting_joinroom_mobile_label_flexible_meeting: 'Flexible Meeting',
1331
1308
  fmt_premeeting_joinroom_mobile_label_enterprise_account: 'Enterprise account',
@@ -1343,7 +1320,6 @@ var enUs = exports.enUs = {
1343
1320
  fmt_premeeting_joinroom_mobile_button_confirm_exit: 'Confirm to exit',
1344
1321
  fmt_premeeting_joinroom_mobile_button_cancel: 'Cancel',
1345
1322
  fmt_premeeting_joinroom_mobile_label_rename: 'Rename',
1346
- //****************** 水印(移动) ******************
1347
1323
  fmt_security_setting_mobile_label_watermark: 'Watermark',
1348
1324
  fmt_security_setting_mobile_label_watermark_style: 'Watermark style',
1349
1325
  fmt_security_setting_mobile_option_watermark_style_single: 'Single line',
@@ -1355,7 +1331,6 @@ var enUs = exports.enUs = {
1355
1331
  fmt_security_setting_mobile_label_rename: 'Rename',
1356
1332
  fmt_security_setting_mobile_label_unmute: 'Unmute',
1357
1333
  fmt_security_setting_mobile_label_start_video: 'Turn on Video',
1358
- fmt_security_setting_mobile_popup_toast_lock_meeting: "You've locked the meeting. No one else can join.",
1359
1334
  fmt_security_setting_mobile_popup_toast_unlock_meeting: 'You have unlocked sessions for new attendees to join',
1360
1335
  fmt_security_setting_mobile_chat_popup_label_participants: 'Allow Participants to Chat With',
1361
1336
  fmt_security_setting_mobile_chat_popup_option_no_one: 'No one',
@@ -1363,12 +1338,10 @@ var enUs = exports.enUs = {
1363
1338
  fmt_security_setting_mobile_chat_popup_option_all: 'All',
1364
1339
  fmt_security_setting_mobile_chat_popup_option_all_chat: 'All public and private chats',
1365
1340
  fmt_security_mobile_mainwindow_label_watermark: '{reason1}{reason1}',
1366
- //****************** 安全(移动) ******************
1367
1341
  fmt_security_setting_mobile_label_security: 'Security',
1368
1342
  fmt_security_setting_mobile_label_security_label: 'SECURITY',
1369
1343
  fmt_security_setting_mobile_label_lock_meeting: 'Lock Meeting',
1370
1344
  fmt_security_setting_mobile_label_waiting_room: 'Waiting Room',
1371
- //****************** 安全 ******************
1372
1345
  fmt_security_setting_label_security_setting: 'Meeting Security Setting',
1373
1346
  fmt_security_setting_label_lock_meeting: 'Lock Meeting',
1374
1347
  fmt_security_setting_label_waiting_room: 'Attendees must first enter the waiting room',
@@ -1379,7 +1352,7 @@ var enUs = exports.enUs = {
1379
1352
  fmt_security_setting_label_chat_with: 'Chat with',
1380
1353
  fmt_security_setting_label_share_screen: 'Share Screen',
1381
1354
  fmt_security_setting_label_rename: 'Rename by Participant',
1382
- fmt_security_setting_label_unmute: 'Unmute by Participant',
1355
+ fmt_security_setting_label_unmute: 'Self unmute',
1383
1356
  fmt_security_setting_label_start_video: 'Turn on Video',
1384
1357
  fmt_security_setting_label_remove_participant: 'Remove participant',
1385
1358
  fmt_security_setting_label_pause_participant: 'Pause Participant',
@@ -1391,7 +1364,6 @@ var enUs = exports.enUs = {
1391
1364
  fmt_security_mainwindow_label_watermark: '{reason1}{reason1}',
1392
1365
  fmt_security_mainwindow_label_toast_unmute_not_allow: 'Hosts/co-hosts not allowed to unmute themselves',
1393
1366
  fmt_security_mainwindow_label_toast_name_change_not_allow: 'Hosts/co-hosts are not allowed to change their own name',
1394
- //****************** 设置 ******************
1395
1367
  fmt_premeeting_setting_label_settings: 'Setting',
1396
1368
  fmt_premeeting_setting_label_normal: 'Normal',
1397
1369
  fmt_premeeting_setting_label_voice_motivation: 'Voice Motivation',
@@ -1433,7 +1405,7 @@ var enUs = exports.enUs = {
1433
1405
  fmt_premeeting_setting_label_automatically_adjust_volume: 'Automatically adjust {reason1} volume',
1434
1406
  fmt_premeeting_setting_label_microphone: 'Microphone',
1435
1407
  fmt_premeeting_setting_button_test_microphone: 'Test Microphone',
1436
- fmt_premeeting_setting_label_speak_into_your_microphone: 'Speak into your microphone. If you cannot hear your own voice, please change the microphone.',
1408
+ fmt_premeeting_setting_label_speak_into_your_microphone: "Click 'Test Microphone' to ensure other participants can hear you clearly.",
1437
1409
  fmt_premeeting_setting_button_recording: 'Recording',
1438
1410
  fmt_premeeting_setting_label_change_the_microphone: 'If you cannot hear the test sound, please change the microphone.',
1439
1411
  fmt_premeeting_setting_label_input_level: 'Input Level',
@@ -1493,7 +1465,6 @@ var enUs = exports.enUs = {
1493
1465
  fmt_meeting_mainwidow_version_popup_label_new_version_ready: 'New Version is Ready',
1494
1466
  fmt_meeting_mainwindow_version_popup_label_experience_after_restarting: 'Experience it after restarting the application ({reason1})',
1495
1467
  fmt_meeting_mainwindow_version_popup_button_restart_application: 'Restart Application',
1496
- //****************** 同声传译-PC ******************
1497
1468
  fmt_interpretation_setting_controller_option_simultaneous_interpretation: 'Simultaneous Interpretation',
1498
1469
  fmt_interpretation_setting_controller_toast_turn_on_simultaneous_interpretation: 'Turn on Simultaneous Interpretation',
1499
1470
  fmt_interpretation_setting_controller_toast_turn_off_simultaneous_interpretation: 'Turn off Simultaneous Interpretation',
@@ -1552,7 +1523,6 @@ var enUs = exports.enUs = {
1552
1523
  fmt_interpretation_mainwindow_toast_label_turn_off_interpret: 'You have turned off simultaneous interpretation',
1553
1524
  fmt_interpretation_interpreter_popup_special_host: 'Cohost',
1554
1525
  fmt_interpretation_interpreter_popup_special_co_host: 'Host',
1555
- //****************** 同声传译-mobile ******************
1556
1526
  fmt_interpretation_mobile_setting_controller_option_interpret: 'simultaneous interpretation',
1557
1527
  fmt_interpretation_mobile_setting_controller_label_interpret: 'simultaneous interpretation',
1558
1528
  fmt_interpretation_mobile_setting_controller_toast_label_setting_by_one: '{reason1} may be setting up this function',
@@ -1596,7 +1566,6 @@ var enUs = exports.enUs = {
1596
1566
  fmt_interpretation_mobile_controller_popup_button_interpret_setting: 'Simultaneous interpretation settings',
1597
1567
  fmt_interpretation_mobile_attendnees_toast_label_channel_close: 'The simultaneous interpretation channel you selected has been closed and has been switched to the original channel for you.',
1598
1568
  fmt_interpretation_mobile_meeting_win_label_translator: 'TRANS.',
1599
- //****************** 免密登陆 ******************
1600
1569
  fmt_meeting_creatpage_label_smart_meeting: 'Flexible Meetings',
1601
1570
  fmt_meeting_creatpage_label_fast_experience: 'Fast Experience',
1602
1571
  fmt_meeting_creatpage_button_create_meeting: 'Create a Meeting',
@@ -1648,7 +1617,6 @@ var enUs = exports.enUs = {
1648
1617
  fmt_link_invitation_password: 'The meeting password: {reason1}',
1649
1618
  fmt_meeting_creatpage_toast_password_only_contain: 'Password can only contain numbers, letters and symbols',
1650
1619
  fmt_meeting_creatpage_toast_password_only_six: 'Membership password length is 6 digits',
1651
- //****************** 翻译语言 ******************
1652
1620
  fmt_translate_language_chinese: 'Chinese',
1653
1621
  fmt_translate_language_english: 'English',
1654
1622
  fmt_translate_language_japanese: 'Japanese',
@@ -1683,9 +1651,6 @@ var enUs = exports.enUs = {
1683
1651
  fmt_translate_language_vietnamese_mini: 'VI',
1684
1652
  fmt_translate_language_malay_mini: 'MS',
1685
1653
  fmt_translate_language_turkish_mini: 'TR',
1686
- //****************** 分组 ******************
1687
-
1688
- // web
1689
1654
  fmt_group_mainwindow_sidebar_button_group_discuss: 'Breakout Groups',
1690
1655
  fmt_group_mainwindow_sidebar_label_group_discuss_on: 'Open Subgroup',
1691
1656
  fmt_group_mainwindow_sidebar_label_group_discuss_off: 'Close Subgroup',
@@ -1815,7 +1780,6 @@ var enUs = exports.enUs = {
1815
1780
  fmt_group_mainwindow_breakout_room_count_popup_button_back_main: 'Return to the main room',
1816
1781
  fmt_group_popup_creat_next_label_end_after_count: 'All breakout sessions will end automatically after the countdown.',
1817
1782
  fmt_group_popup_creat_next_label_back_main_after_count_auto: 'You will return to the main room',
1818
- //移动
1819
1783
  fmt_mobile_group_function_button_breakout_group: 'Breakout Group',
1820
1784
  fmt_mobile_group_sidebar_button_leave_group: 'Leaving Group',
1821
1785
  fmt_mobile_group_creat_label_creat_group: 'Create Grouping',
@@ -1906,15 +1870,30 @@ var enUs = exports.enUs = {
1906
1870
  fmt_mobile_group_breakout_room_label_finishi_after_timer: 'All breakout sessions will end automatically after the countdown.',
1907
1871
  fmt_mobile_group_breakout_room_label_back_main_auto: 'You will return to the main automated session',
1908
1872
  fmt_mobile_group_breakout_room_button_leave_group: 'Leave the breakout group',
1909
- //****************** h5 单补 ******************
1910
1873
  fmt_h_label_more_function: 'More Function',
1911
1874
  fmt_h_label_tempor_hide_screen_share: 'When sharing the screen, other participants will be temporarily hidden.',
1912
1875
  fmt_h_label_tempor_hide_white_board: 'When sharing the whiteboard, other participants will be temporarily hidden.',
1913
1876
  fmt_h_tips_host_enabled_waiting_room: 'The host has enabled the waiting room, and you cannot join the meeting at the moment.',
1914
1877
  fmt_h_tips_tap_to_play: 'Tap to play',
1915
- //****************** 错误信息 ******************
1916
1878
  fmt_pc_room_not_exist_error: 'The room does not exist or the password is wrong',
1917
1879
  fmt_lock_error: 'The host has locked the meeting and no one else can join',
1918
1880
  fmt_end_error: 'The meeting has ended',
1919
- fmt_host_leave_error: 'The moderator is not in the meeting'
1881
+ fmt_host_leave_error: 'The moderator is not in the meeting',
1882
+ fmt_hostkey_window_title_reclaim_host: 'Reclaim host role',
1883
+ fmt_hostkey_window_content_reclaim_host: '{reason1} is the current host.Reclaiming might cause interruption',
1884
+ fmt_hostkey_window_button_reclaim_host: 'Reclaim host role',
1885
+ fmt_hostkey_window_button_remain_cohost: 'Remain Co-host',
1886
+ fmt_hostkey_window_button_remain_attendees: 'Remain Attendees',
1887
+ fmt_hostkey_meetingroom_toast_now_host: 'You are now the host',
1888
+ fmt_hostkey_participant_button_reclaim_host: 'Reclaim host role',
1889
+ fmt_hostkey_participant_button_claim_host: 'Claim host role',
1890
+ fmt_hostkey_input_hostkey_title_enter_key: 'Enter host key to claim host role',
1891
+ fmt_hostkey_input_hostkey_text_hint_enter_key: 'Enter host key',
1892
+ fmt_hostkey_input_hostkey_button_cancel: 'Cancel',
1893
+ fmt_hostkey_input_hostkey_button_ok: 'OK',
1894
+ fmt_hostkey_input_hostkey_tips_incorrect_key: 'Incorrect host key',
1895
+ fmt_hostkey_meetingroom_toast_unable_to_claim_host: 'Unable to claim host role because there is already a host in the meeting',
1896
+ fmt_jbh_title_host_not_in_meeting: 'The meeting has not started yet',
1897
+ fmt_jbh_title_host_in_meeting: 'Please wait.The host will let you into the meeting soon.',
1898
+ fmt_jbh_title_meeting_topic: 'Meeting Topic'
1920
1899
  };
@@ -31,6 +31,9 @@ export declare const zhCn: {
31
31
  fmt_attendies_options_sethost: string;
32
32
  fmt_attendies_options_revokecohost: string;
33
33
  fmt_attendies_options_setcohost: string;
34
+ fmt_attendies_toast_cant_sethost: string;
35
+ fmt_attendies_toast_cant_setcohost: string;
36
+ fmt_attendies_button_revokehost_error: string;
34
37
  fmt_attendies_button_rename: string;
35
38
  fmt_attendies_options_allowlocalrecord: string;
36
39
  fmt_attendies_options_putinwaitingroom: string;
@@ -91,7 +94,6 @@ export declare const zhCn: {
91
94
  fmt_additional_popup_label_enter_nickname_ok: string;
92
95
  fmt_additional_label_toast_rename_off: string;
93
96
  fmt_actionbar_tips_leavemeeting: string;
94
- fmt_actionbar_button_plenarysession: string;
95
97
  fmt_actionbar_tips_locked: string;
96
98
  fmt_actionbar_tips_recheckleave: string;
97
99
  fmt_aside_status_connecting: string;
@@ -187,6 +189,7 @@ export declare const zhCn: {
187
189
  fmt_toolbar_tips_leave_host_select_submit_tips: string;
188
190
  fmt_toolbar_leave_confirm_dialog_kick_title: string;
189
191
  fmt_toolbar_tips_leave_confirm_dialog_kick_info: string;
192
+ fmt_toolbar_tips_leave_confirm_dialog_kick_info_content: string;
190
193
  fmt_toolbar_leave_confirm_dialog_submit: string;
191
194
  fmt_toolbar_tips_leave_confirm_dialog_end_title: string;
192
195
  fmt_toolbar_tips_leave_confirm_dialog_end_info: string;
@@ -238,6 +241,8 @@ export declare const zhCn: {
238
241
  fmt_broadcast_livestream_tips_hand_over_pc_to_mobile: string;
239
242
  fmt_broadcast_livestream_tips_hand_over_mobile: string;
240
243
  fmt_broadcast_livestream_label_stop_pc_only: string;
244
+ fmt_broadcast_livestream_button_hide: string;
245
+ fmt_broadcast_livestream_button_show: string;
241
246
  fmt_device_label_audio_mute: string;
242
247
  fmt_device_label_audio_unmute: string;
243
248
  fmt_device_label_video_start: string;
@@ -327,15 +332,12 @@ export declare const zhCn: {
327
332
  fmt_uimanager_option_Selfieview: string;
328
333
  fmt_uimanager_tips_urmuted: string;
329
334
  fmt_uimanager_tips_urturnedoff: string;
330
- fmt_uimanager_tips_norightsvideo: string;
331
- fmt_uimanager_tips_norightsaudio: string;
332
335
  fmt_uimanager_tips_inviteturnon: string;
333
336
  fmt_uimanager_tips_Remove: string;
334
337
  fmt_uimanager_tips_designedas: string;
335
338
  fmt_uimanager_tips_userleaft: string;
336
339
  fmt_uimanager_labels_Setas: string;
337
340
  fmt_uimanager_tips_allmuted: string;
338
- fmt_uimanager_tips_meetinglocked: string;
339
341
  fmt_uimanager_tips_meetingunlocked: string;
340
342
  fmt_uimanager_labels_designate: string;
341
343
  fmt_uimanager_labels_Becoming: string;
@@ -363,7 +365,6 @@ export declare const zhCn: {
363
365
  fmt_uimanager_window_un_pin: string;
364
366
  fmt_uimanager_window_pin_success: string;
365
367
  fmt_uimanager_window_un_pin_success: string;
366
- fmt_uimanager_window_pin_error_hide_mine: string;
367
368
  fmt_uimanager_window_pin_error_hide_no_video: string;
368
369
  fmt_uimanager_follow_pc: string;
369
370
  fmt_chat_label_chat: string;
@@ -495,7 +496,6 @@ export declare const zhCn: {
495
496
  fmt_screenshare_tips_hostprohibitssharing: string;
496
497
  fmt_screenshare_tips_faild_reselect: string;
497
498
  fmt_screenshare_tips_faild_screenselect: string;
498
- fmt_screenshare_tips_faild_nopermission: string;
499
499
  fmt_screenshare_tips_faild_restrict: string;
500
500
  fmt_screenshare_tips_faild_alreadysharing: string;
501
501
  fmt_screenshare_options_allowshare: string;
@@ -504,7 +504,6 @@ export declare const zhCn: {
504
504
  fmt_screenshare_options_enableedit: string;
505
505
  fmt_actionbar_screenshare_option_selectcontent: string;
506
506
  fmt_actionbar_screenshare_labels_others: string;
507
- fmt_actionbar_screenshare_tips_restrictshare: string;
508
507
  fmt_modules_labels_sharing: string;
509
508
  fmt_share_tips_othsersharing: string;
510
509
  fmt_share_tips_stopothersharing: string;
@@ -532,7 +531,6 @@ export declare const zhCn: {
532
531
  fmt_screenshare_stop_share_board: string;
533
532
  fmt_screenshare_stop_share_screen: string;
534
533
  fmt_screenshare_no_permission_open_board: string;
535
- fmt_screenshare_administrator_disables_share_screen_board: string;
536
534
  fmt_screenshare_no_permission_close_board: string;
537
535
  fmt_screenshare_clash_board_remind_title: string;
538
536
  fmt_screenshare_clash_board_remind_content: string;
@@ -731,8 +729,6 @@ export declare const zhCn: {
731
729
  fmt_security_tips_share_screen_off: string;
732
730
  fmt_security_tips_start_audio_on: string;
733
731
  fmt_security_tips_start_audio_off: string;
734
- fmt_security_tips_host_start_audio_on: string;
735
- fmt_security_tips_host_start_audio_off: string;
736
732
  fmt_security_tips_start_video_on: string;
737
733
  fmt_security_tips_start_video_off: string;
738
734
  fmt_security_tips_host_start_video_on: string;
@@ -972,6 +968,8 @@ export declare const zhCn: {
972
968
  fmt_record_record_started: string;
973
969
  fmt_record_record_stop_ask: string;
974
970
  fmt_record_record_stop_confirm: string;
971
+ fmt_record_toast_record_paused: string;
972
+ fmt_record_toast_record_resumed: string;
975
973
  fmt_pstn_label_accessmethod: string;
976
974
  fmt_pstn_options_PCaudioconnet: string;
977
975
  fmt_pstn_options_phoneaudioconnet: string;
@@ -1118,7 +1116,6 @@ export declare const zhCn: {
1118
1116
  fmt_waitingroom_mainwindow_popup_button_view_detailed: string;
1119
1117
  fmt_waitingroom_mainwindow_popup_button_not_remind: string;
1120
1118
  fmt_waitingroom_attendie_popup_label_Leave: string;
1121
- fmt_waitingroom_attendie_popup_label_click_leave: string;
1122
1119
  fmt_waitingroom_attendie_overview_label_waitingroom: string;
1123
1120
  fmt_waitingroom_attendie_overview_label_wait_moment: string;
1124
1121
  fmt_waitingroom_attendie_overview_label_move_in_by_host: string;
@@ -1157,6 +1154,7 @@ export declare const zhCn: {
1157
1154
  fmt_waitingroom_mobile_memberlist_popup_label_admit_all: string;
1158
1155
  fmt_waitingroom_mobile_memberlist_popup_label_sure_to_admit_all: string;
1159
1156
  fmt_waitingroom_mobile_memberlist_tips_all_removed: string;
1157
+ fmt_waitingroom_mobile_memberlist_tips_removed: string;
1160
1158
  fmt_waitingroom_mobile_memberlist_tips_all_amitted: string;
1161
1159
  fmt_waitingroom_mobile_memberlist_label_nocontent: string;
1162
1160
  fmt_waitingroom_mobile_chat_label_send_to: string;
@@ -1326,7 +1324,6 @@ export declare const zhCn: {
1326
1324
  fmt_security_setting_mobile_label_rename: string;
1327
1325
  fmt_security_setting_mobile_label_unmute: string;
1328
1326
  fmt_security_setting_mobile_label_start_video: string;
1329
- fmt_security_setting_mobile_popup_toast_lock_meeting: string;
1330
1327
  fmt_security_setting_mobile_popup_toast_unlock_meeting: string;
1331
1328
  fmt_security_setting_mobile_chat_popup_label_participants: string;
1332
1329
  fmt_security_setting_mobile_chat_popup_option_no_one: string;
@@ -1873,4 +1870,21 @@ export declare const zhCn: {
1873
1870
  fmt_lock_error: string;
1874
1871
  fmt_end_error: string;
1875
1872
  fmt_host_leave_error: string;
1873
+ fmt_hostkey_window_title_reclaim_host: string;
1874
+ fmt_hostkey_window_content_reclaim_host: string;
1875
+ fmt_hostkey_window_button_reclaim_host: string;
1876
+ fmt_hostkey_window_button_remain_cohost: string;
1877
+ fmt_hostkey_window_button_remain_attendees: string;
1878
+ fmt_hostkey_meetingroom_toast_now_host: string;
1879
+ fmt_hostkey_participant_button_reclaim_host: string;
1880
+ fmt_hostkey_participant_button_claim_host: string;
1881
+ fmt_hostkey_input_hostkey_title_enter_key: string;
1882
+ fmt_hostkey_input_hostkey_text_hint_enter_key: string;
1883
+ fmt_hostkey_input_hostkey_button_cancel: string;
1884
+ fmt_hostkey_input_hostkey_button_ok: string;
1885
+ fmt_hostkey_input_hostkey_tips_incorrect_key: string;
1886
+ fmt_hostkey_meetingroom_toast_unable_to_claim_host: string;
1887
+ fmt_jbh_title_host_not_in_meeting: string;
1888
+ fmt_jbh_title_host_in_meeting: string;
1889
+ fmt_jbh_title_meeting_topic: string;
1876
1890
  };