fcr-ui-scene 3.5.1 → 3.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (379) hide show
  1. package/lib/creator.d.ts +14 -0
  2. package/lib/creator.js +239 -14
  3. package/lib/electron/app.js +0 -21
  4. package/lib/electron/bootstrap-sdk.js +136 -7
  5. package/lib/electron/injections.d.ts +19 -7
  6. package/lib/electron/injections.js +206 -77
  7. package/lib/electron/ipc/ipc.d.ts +26 -0
  8. package/lib/electron/ipc/ipc.js +137 -0
  9. package/lib/electron/ipc/type.d.ts +11 -0
  10. package/lib/electron/ipc/type.js +19 -0
  11. package/lib/electron/logger.js +1 -1
  12. package/lib/electron/main.js +1 -1
  13. package/lib/electron/plugins/meeting-state.d.ts +1 -0
  14. package/lib/electron/plugins/meeting-state.js +3 -3
  15. package/lib/electron/plugins/screenshot.js +2 -2
  16. package/lib/electron/preload.js +67 -5
  17. package/lib/electron/window.js +0 -2
  18. package/lib/global.css +21 -0
  19. package/lib/modules/action-bar/components/apps/index.js +1 -0
  20. package/lib/modules/action-bar/components/apps/useWidgetList.js +1 -1
  21. package/lib/modules/action-bar/components/item/index.d.ts +2 -0
  22. package/lib/modules/action-bar/components/item/index.js +4 -2
  23. package/lib/modules/action-bar/components/leave/index.js +1 -0
  24. package/lib/modules/action-bar/components/more/index.js +1 -0
  25. package/lib/modules/action-bar/components/record/index.js +43 -106
  26. package/lib/modules/action-bar/components/record/popover.d.ts +4 -0
  27. package/lib/modules/action-bar/components/record/popover.js +57 -0
  28. package/lib/modules/action-bar/components/record/stop-record-dialog.js +1 -0
  29. package/lib/modules/action-bar/components/screen-share/index.js +15 -3
  30. package/lib/modules/action-bar/components/screen-share/submenu.js +2 -2
  31. package/lib/modules/action-bar/components/security/index.js +2 -1
  32. package/lib/modules/action-bar/components/smaller/index.js +1 -1
  33. package/lib/modules/action-bar/components/trigger-output-language/index.js +17 -22
  34. package/lib/modules/action-bar/components/trigger-subscribe-language/index.js +2 -1
  35. package/lib/modules/action-bar/index.css +3 -2
  36. package/lib/modules/action-bar/index.js +2 -1
  37. package/lib/modules/action-bar/store.d.ts +5 -0
  38. package/lib/modules/action-bar/store.js +30 -12
  39. package/lib/modules/action-bar/types.d.ts +1 -0
  40. package/lib/modules/chat/chat-room-store.js +1 -1
  41. package/lib/modules/chat/components/chat-bar/index.d.ts +1 -1
  42. package/lib/modules/chat/components/chat-bar/index.js +5 -3
  43. package/lib/modules/chat/components/chat-select/select-item/index.js +1 -1
  44. package/lib/modules/chat/components/message-list/index.js +1 -2
  45. package/lib/modules/chat/components/message-list/message-item/index.d.ts +0 -1
  46. package/lib/modules/chat/components/message-list/message-item/index.js +9 -10
  47. package/lib/modules/chat/index.css +24 -0
  48. package/lib/modules/chat/view.js +13 -3
  49. package/lib/modules/components/device-control/components/carmera/index.js +4 -5
  50. package/lib/modules/components/device-control/components/microphone/index.js +4 -5
  51. package/lib/modules/components/device-control/index.css +6 -3
  52. package/lib/modules/components/leave-meeting/components/assign-host.js +26 -4
  53. package/lib/modules/components/leave-meeting/components/index.css +35 -0
  54. package/lib/modules/components/leave-meeting/index.js +1 -0
  55. package/lib/modules/components/leave-meeting/store.js +25 -67
  56. package/lib/modules/components/member-window/components/member-actions/components/audio-control.js +3 -2
  57. package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.js +1 -1
  58. package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +10 -9
  59. package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +2 -2
  60. package/lib/modules/components/member-window/components/member-actions/components/user-info.js +1 -1
  61. package/lib/modules/components/member-window/components/member-actions/index.js +2 -2
  62. package/lib/modules/components/member-window/components/video-player/components/remote-video-player.js +3 -14
  63. package/lib/modules/components/member-window/index.css +18 -7
  64. package/lib/modules/components/member-window/types.d.ts +1 -1
  65. package/lib/modules/components/security-menu/index.css +2 -2
  66. package/lib/modules/components/security-menu/index.js +80 -28
  67. package/lib/modules/components/tab-frame/index.css +1 -1
  68. package/lib/modules/control-bar/components/meeting-details/index.css +1 -1
  69. package/lib/modules/control-bar/components/meeting-details/index.js +15 -9
  70. package/lib/modules/control-bar/components/more-actions/index.js +3 -21
  71. package/lib/modules/control-bar/components/share-state-nav/index.js +4 -20
  72. package/lib/modules/control-bar/index.d.ts +2 -0
  73. package/lib/modules/control-bar/index.js +3 -1
  74. package/lib/modules/control-bar/store.d.ts +11 -2
  75. package/lib/modules/control-bar/store.js +103 -95
  76. package/lib/modules/control-bar/view.js +1 -6
  77. package/lib/modules/device-pretest/audio-preview/speaker-detection.js +1 -1
  78. package/lib/modules/dialog/components/chat/electron.d.ts +1 -3
  79. package/lib/modules/dialog/components/chat/index.js +24 -17
  80. package/lib/modules/dialog/components/confirm-leave-meeting/index.d.ts +6 -0
  81. package/lib/modules/dialog/components/confirm-leave-meeting/index.js +86 -0
  82. package/lib/modules/dialog/components/control-bar/index.d.ts +1 -2
  83. package/lib/modules/dialog/components/control-bar/index.js +5 -17
  84. package/lib/modules/dialog/components/dialog-container/component/body.d.ts +1 -0
  85. package/lib/modules/dialog/components/dialog-container/component/body.js +4 -2
  86. package/lib/modules/dialog/components/dialog-container/index.css +2 -1
  87. package/lib/modules/dialog/components/dialog-container/index.d.ts +1 -0
  88. package/lib/modules/dialog/components/dialog-container/index.js +3 -1
  89. package/lib/modules/dialog/components/participant/index.d.ts +0 -1
  90. package/lib/modules/dialog/components/participant/index.js +15 -24
  91. package/lib/modules/dialog/components/pre-setting/electron.d.ts +2 -0
  92. package/lib/modules/dialog/components/pre-setting/electron.js +51 -0
  93. package/lib/modules/dialog/components/pre-setting/index.css +26 -0
  94. package/lib/modules/dialog/components/pre-setting/index.d.ts +6 -0
  95. package/lib/modules/dialog/components/pre-setting/index.js +38 -0
  96. package/lib/modules/dialog/components/pre-setting-container/component/body.d.ts +8 -0
  97. package/lib/modules/dialog/components/pre-setting-container/component/body.js +80 -0
  98. package/lib/modules/dialog/components/pre-setting-container/index.css +82 -0
  99. package/lib/modules/dialog/components/pre-setting-container/index.d.ts +18 -0
  100. package/lib/modules/dialog/components/pre-setting-container/index.js +117 -0
  101. package/lib/modules/dialog/components/rename/index.d.ts +4 -0
  102. package/lib/modules/dialog/components/rename/index.js +72 -0
  103. package/lib/modules/dialog/components/video-window/index.js +18 -16
  104. package/lib/modules/dialog/components/widget/electron.d.ts +2 -1
  105. package/lib/modules/dialog/components/widget/electron.js +3 -2
  106. package/lib/modules/dialog/components/widget/index.d.ts +2 -1
  107. package/lib/modules/dialog/components/widget/index.js +4 -6
  108. package/lib/modules/dialog/dialogs.d.ts +1 -0
  109. package/lib/modules/dialog/dialogs.js +3 -2
  110. package/lib/modules/dialog/hooks/useElectron.d.ts +2 -0
  111. package/lib/modules/dialog/hooks/useElectron.js +11 -13
  112. package/lib/modules/dialog/index.d.ts +2 -0
  113. package/lib/modules/dialog/index.js +2 -1
  114. package/lib/modules/dialog/store.d.ts +8 -3
  115. package/lib/modules/dialog/store.js +38 -26
  116. package/lib/modules/dialog/type.d.ts +1 -0
  117. package/lib/modules/dialog/view.js +2 -1
  118. package/lib/modules/event-confirm/index.d.ts +2 -0
  119. package/lib/modules/event-confirm/index.js +2 -1
  120. package/lib/modules/event-confirm/store.d.ts +9 -1
  121. package/lib/modules/event-confirm/store.js +94 -8
  122. package/lib/modules/event-confirm/view.js +55 -46
  123. package/lib/modules/{sound-effect → event-sound}/index.d.ts +3 -2
  124. package/lib/modules/{sound-effect → event-sound}/index.js +9 -5
  125. package/lib/modules/event-toast/store.js +2 -0
  126. package/lib/modules/interpreter/dialog-content/index.js +4 -1
  127. package/lib/modules/interpreter/index.d.ts +2 -0
  128. package/lib/modules/interpreter/index.js +2 -1
  129. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/index.js +3 -0
  130. package/lib/modules/interpreter/store.d.ts +2 -2
  131. package/lib/modules/interpreter/store.js +30 -24
  132. package/lib/modules/interpreter/type.d.ts +2 -0
  133. package/lib/modules/invite/components/pstn-invite.js +3 -9
  134. package/lib/modules/invite/components/voip-invite.css +26 -0
  135. package/lib/modules/invite/components/voip-invite.d.ts +1 -0
  136. package/lib/modules/invite/components/voip-invite.js +8 -11
  137. package/lib/modules/invite/index.css +16 -3
  138. package/lib/modules/invite/index.d.ts +2 -1
  139. package/lib/modules/invite/index.js +2 -1
  140. package/lib/modules/invite/store.d.ts +5 -1
  141. package/lib/modules/invite/store.js +8 -1
  142. package/lib/modules/layout/components/Carousel.d.ts +1 -1
  143. package/lib/modules/layout/components/Carousel.js +16 -118
  144. package/lib/modules/layout/components/CommonVideoRenderer.d.ts +13 -0
  145. package/lib/modules/layout/components/CommonVideoRenderer.js +214 -0
  146. package/lib/modules/layout/components/Gallery.d.ts +1 -0
  147. package/lib/modules/layout/components/Gallery.js +62 -205
  148. package/lib/modules/layout/components/index.css +17 -34
  149. package/lib/modules/layout/index.d.ts +2 -0
  150. package/lib/modules/layout/index.js +2 -1
  151. package/lib/modules/layout/store.d.ts +5 -2
  152. package/lib/modules/layout/store.js +47 -39
  153. package/lib/modules/layout/type.d.ts +4 -0
  154. package/lib/modules/layout/type.js +6 -1
  155. package/lib/modules/live-streaming/store.d.ts +1 -0
  156. package/lib/modules/live-streaming/store.js +19 -8
  157. package/lib/modules/participant/components/confirm-input/index.d.ts +4 -4
  158. package/lib/modules/participant/components/confirm-input/index.js +74 -6
  159. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +27 -3
  160. package/lib/modules/participant/components/participants/components/footer/components/footer/index.css +4 -0
  161. package/lib/modules/participant/components/participants/components/footer/components/footer/index.js +3 -2
  162. package/lib/modules/participant/components/participants/components/participants/components/attendee/index.css +4 -3
  163. package/lib/modules/participant/components/participants/components/participants/components/attendee/index.js +1 -0
  164. package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.css +9 -1
  165. package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.js +1 -1
  166. package/lib/modules/participant/components/participants/components/participants/index.css +1 -0
  167. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +18 -0
  168. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.js +12 -5
  169. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.js +1 -8
  170. package/lib/modules/participant/index.css +6 -0
  171. package/lib/modules/participant/index.d.ts +1 -0
  172. package/lib/modules/participant/index.js +9 -0
  173. package/lib/modules/participant/store.d.ts +6 -0
  174. package/lib/modules/participant/store.js +130 -96
  175. package/lib/modules/pc-audio-connect/store.js +1 -1
  176. package/lib/modules/phone-audio-connect/index.d.ts +2 -0
  177. package/lib/modules/phone-audio-connect/index.js +2 -1
  178. package/lib/modules/phone-audio-connect/store.d.ts +4 -1
  179. package/lib/modules/phone-audio-connect/store.js +4 -2
  180. package/lib/modules/setting/audio-settings/audio-settings.js +70 -48
  181. package/lib/modules/setting/audio-settings/index.css +23 -6
  182. package/lib/modules/setting/general-settings/general-settings.d.ts +1 -2
  183. package/lib/modules/setting/general-settings/general-settings.js +111 -37
  184. package/lib/modules/setting/general-settings/index.css +15 -0
  185. package/lib/modules/setting/index.d.ts +4 -1
  186. package/lib/modules/setting/index.js +7 -4
  187. package/lib/modules/setting/state/index.js +1 -1
  188. package/lib/modules/setting/store.d.ts +24 -11
  189. package/lib/modules/setting/store.js +203 -142
  190. package/lib/modules/setting/video-settings/index.css +13 -2
  191. package/lib/modules/setting/video-settings/video-settings-basic.js +18 -27
  192. package/lib/modules/setting/video-settings/video-settings.d.ts +0 -2
  193. package/lib/modules/setting/video-settings/video-settings.js +3 -2
  194. package/lib/modules/setting/view.d.ts +11 -2
  195. package/lib/modules/setting/view.js +93 -71
  196. package/lib/modules/share-screen/components/selection/index.js +6 -2
  197. package/lib/modules/share-screen/index.d.ts +4 -1
  198. package/lib/modules/share-screen/index.js +3 -1
  199. package/lib/modules/share-screen/store.d.ts +15 -5
  200. package/lib/modules/share-screen/store.js +105 -59
  201. package/lib/modules/share-screen/view.js +1 -1
  202. package/lib/modules/state-bar/index.css +4 -2
  203. package/lib/modules/state-bar/index.d.ts +2 -0
  204. package/lib/modules/state-bar/index.js +2 -1
  205. package/lib/modules/state-bar/layout-config.js +1 -0
  206. package/lib/modules/state-bar/live-streaming-state.js +1 -0
  207. package/lib/modules/state-bar/meeting-detail.css +10 -1
  208. package/lib/modules/state-bar/meeting-details.js +42 -26
  209. package/lib/modules/state-bar/meeting-network-state.css +8 -0
  210. package/lib/modules/state-bar/meeting-time.js +9 -20
  211. package/lib/modules/state-bar/store.d.ts +5 -1
  212. package/lib/modules/state-bar/store.js +10 -3
  213. package/lib/modules/state-bar/view.js +17 -6
  214. package/lib/modules/video-window/components/members/index.js +0 -3
  215. package/lib/modules/waiting-room-layout/index.css +13 -0
  216. package/lib/modules/waiting-room-layout/index.d.ts +2 -1
  217. package/lib/modules/waiting-room-layout/index.js +2 -1
  218. package/lib/modules/waiting-room-layout/store.d.ts +12 -1
  219. package/lib/modules/waiting-room-layout/store.js +42 -6
  220. package/lib/modules/waiting-room-layout/view.js +22 -5
  221. package/lib/modules/whiteboard/components/control-bar/index.css +1 -1
  222. package/lib/modules/whiteboard/components/switch-theme/libs.d.ts +1 -1
  223. package/lib/modules/whiteboard/components/switch-theme/libs.js +3 -1
  224. package/lib/modules/whiteboard/components/toolbar/ style.css +1 -0
  225. package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +1 -0
  226. package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/picker.js +1 -0
  227. package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.js +3 -14
  228. package/lib/modules/whiteboard/components/toolbar/components/expansion/index.d.ts +1 -0
  229. package/lib/modules/whiteboard/components/toolbar/components/expansion/index.js +83 -0
  230. package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +2 -2
  231. package/lib/modules/whiteboard/components/toolbar/components/history.js +3 -3
  232. package/lib/modules/whiteboard/components/toolbar/components/item/index.d.ts +1 -0
  233. package/lib/modules/whiteboard/components/toolbar/components/item/index.js +42 -0
  234. package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +2 -2
  235. package/lib/modules/whiteboard/components/toolbar/components/screen-capture-picker.js +2 -2
  236. package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +3 -3
  237. package/lib/modules/whiteboard/components/toolbar/hooks/index.js +6 -6
  238. package/lib/modules/whiteboard/components/toolbar/index.js +9 -113
  239. package/lib/modules/whiteboard/components/toolbar/store.d.ts +18 -0
  240. package/lib/modules/whiteboard/components/toolbar/store.js +276 -83
  241. package/lib/modules/whiteboard/context.d.ts +1 -2
  242. package/lib/modules/whiteboard/index.d.ts +1 -14
  243. package/lib/modules/whiteboard/index.js +131 -426
  244. package/lib/modules/whiteboard/view.js +12 -10
  245. package/lib/modules/widget/sdk.js +2 -1
  246. package/lib/object-manager.d.ts +8 -0
  247. package/lib/object-manager.js +75 -0
  248. package/lib/plugins/browser-runtime-plugin.js +19 -14
  249. package/lib/providers/ability-provider.d.ts +8 -0
  250. package/lib/providers/ability-provider.js +14 -0
  251. package/lib/providers/device-privilege-provider.d.ts +1 -0
  252. package/lib/providers/device-privilege-provider.js +53 -75
  253. package/lib/providers/device-provider.d.ts +18 -8
  254. package/lib/providers/device-provider.js +397 -209
  255. package/lib/providers/device-stream-provider.js +0 -4
  256. package/lib/providers/dialog-provider.d.ts +1 -0
  257. package/lib/providers/dialog-provider.js +4 -18
  258. package/lib/providers/event-provider.js +45 -2
  259. package/lib/providers/interpreter-provider.d.ts +4 -0
  260. package/lib/providers/interpreter-provider.js +166 -137
  261. package/lib/providers/message-provider.js +44 -2
  262. package/lib/providers/privilege-provider.d.ts +33 -0
  263. package/lib/providers/privilege-provider.js +120 -45
  264. package/lib/providers/room-provider.d.ts +12 -10
  265. package/lib/providers/room-provider.js +162 -262
  266. package/lib/providers/screen-share-provider.d.ts +4 -0
  267. package/lib/providers/screen-share-provider.js +3 -6
  268. package/lib/providers/widget-provider.js +6 -4
  269. package/lib/runtime.d.ts +20 -8
  270. package/lib/scenes/main-scene.d.ts +2 -0
  271. package/lib/scenes/main-scene.js +95 -37
  272. package/lib/scenes/waiting-scene.js +16 -13
  273. package/lib/schema.d.ts +55 -32
  274. package/lib/schema.js +23 -9
  275. package/lib/shared-data-source/config.d.ts +6 -2
  276. package/lib/shared-data-source/config.js +81 -10
  277. package/lib/shared-data-source/member-data.d.ts +16 -20
  278. package/lib/shared-data-source/member-data.js +121 -110
  279. package/lib/shared-data-source/screen-share-data-source.d.ts +37 -0
  280. package/lib/shared-data-source/screen-share-data-source.js +134 -0
  281. package/lib/shared-data-source/security-data.d.ts +1 -0
  282. package/lib/shared-data-source/security-data.js +3 -5
  283. package/lib/shared-data-source/setting.d.ts +1 -0
  284. package/lib/shared-data-source/setting.js +33 -17
  285. package/lib/shared-data-source/video-window.d.ts +3 -3
  286. package/lib/shared-data-source/video-window.js +55 -38
  287. package/lib/translations/enUS.d.ts +48 -1
  288. package/lib/translations/enUS.js +101 -17
  289. package/lib/translations/zhCN.d.ts +48 -1
  290. package/lib/translations/zhCN.js +88 -4
  291. package/lib/type.d.ts +40 -20
  292. package/lib/type.js +14 -1
  293. package/lib/ui-manager.d.ts +11 -9
  294. package/lib/ui-manager.js +118 -29
  295. package/lib/ui-scene.d.ts +7 -4
  296. package/lib/ui-scene.js +111 -128
  297. package/lib/utilities/constant.d.ts +3 -1
  298. package/lib/utilities/constant.js +2 -0
  299. package/lib/utilities/copyText.js +15 -11
  300. package/lib/utilities/default-config.d.ts +2 -0
  301. package/lib/utilities/default-config.js +11 -5
  302. package/lib/utilities/i18n-common-data.d.ts +2 -0
  303. package/lib/utilities/i18n-common-data.js +15 -0
  304. package/lib/utilities/logger.d.ts +0 -1
  305. package/lib/utilities/logger.js +3 -4
  306. package/lib/utilities/renderer.d.ts +0 -9
  307. package/lib/utilities/renderer.js +1 -70
  308. package/lib/utilities/screen.js +3 -1
  309. package/lib/utilities/setting-config-storage.d.ts +6 -1
  310. package/lib/utilities/setting-config-storage.js +21 -4
  311. package/lib/utilities/tools.d.ts +7 -6
  312. package/lib/utilities/tools.js +56 -44
  313. package/lib/utilities/ui-resources.d.ts +6 -0
  314. package/lib/utilities/ui-resources.js +47 -9
  315. package/lib/waiting-room-control-manager.d.ts +4 -4
  316. package/lib/waiting-room-control-manager.js +29 -9
  317. package/package.json +6 -6
  318. package/public/assets/browser/images/default1.jpg +0 -0
  319. package/public/assets/browser/images/default2.jpg +0 -0
  320. package/public/assets/browser/images/default3.jpg +0 -0
  321. package/public/assets/browser/images/default4.jpg +0 -0
  322. package/public/assets/browser/images/default5.jpg +0 -0
  323. package/public/assets/browser/images/default6.jpg +0 -0
  324. package/public/assets/browser/images/default7.jpg +0 -0
  325. package/public/assets/browser/sound_effects/pretest.mp3 +0 -0
  326. package/public/assets/browser/sound_effects/recording_started.mp3 +0 -0
  327. package/public/assets/browser/sound_effects/remote_user_joined.mp3 +0 -0
  328. package/public/assets/browser/sound_effects/speaker_test.mp3 +0 -0
  329. package/public/assets/browser/videos/default8.mp4 +0 -0
  330. package/public/assets/browser/videos/default9.mp4 +0 -0
  331. package/public/assets/electron/images/default1.jpg +0 -0
  332. package/public/assets/electron/images/default2.jpg +0 -0
  333. package/public/assets/electron/sound_effects/pretest.mp3 +0 -0
  334. package/public/assets/electron/videos/default8.mp4 +0 -0
  335. package/public/index.html +103 -82
  336. package/lib/hooks/meeting-time.d.ts +0 -15
  337. package/lib/hooks/meeting-time.js +0 -92
  338. package/lib/login-confirm-dialog.d.ts +0 -13
  339. package/lib/login-confirm-dialog.js +0 -85
  340. package/lib/modules/action-bar/components/apps/appitems.d.ts +0 -3
  341. package/lib/modules/action-bar/components/apps/appitems.js +0 -45
  342. package/lib/modules/components/member-window/components/member-board.d.ts +0 -2
  343. package/lib/modules/components/member-window/components/member-board.js +0 -63
  344. package/lib/modules/dialog/components/system-preference/bg1.png +0 -0
  345. package/lib/modules/dialog/components/system-preference/bg2.png +0 -0
  346. package/lib/modules/dialog/types/index.d.ts +0 -70
  347. package/lib/modules/participant/components/attendee/components/microphone-indicator/index.d.ts +0 -6
  348. package/lib/modules/participant/components/attendee/components/microphone-indicator/index.js +0 -28
  349. package/lib/modules/participant/components/attendee/components/user-avatar/index.d.ts +0 -7
  350. package/lib/modules/participant/components/attendee/components/user-avatar/index.js +0 -39
  351. package/lib/modules/participant/components/attendee/index.css +0 -69
  352. package/lib/modules/participant/components/attendee/index.d.ts +0 -4
  353. package/lib/modules/participant/components/attendee/index.js +0 -337
  354. package/lib/modules/participant/components/drop-menu/index.css +0 -60
  355. package/lib/modules/participant/components/drop-menu/index.d.ts +0 -2
  356. package/lib/modules/participant/components/drop-menu/index.js +0 -189
  357. package/lib/modules/participant/components/footer/buttons.d.ts +0 -6
  358. package/lib/modules/participant/components/footer/buttons.js +0 -52
  359. package/lib/modules/participant/components/footer/index.d.ts +0 -4
  360. package/lib/modules/participant/components/footer/index.js +0 -37
  361. package/lib/modules/participant/components/merge/index.d.ts +0 -11
  362. package/lib/modules/participant/components/merge/index.js +0 -49
  363. package/lib/modules/participant/components/rename/index.d.ts +0 -4
  364. package/lib/modules/participant/components/rename/index.js +0 -45
  365. package/lib/modules/participant/components/user-action/index.d.ts +0 -17
  366. package/lib/modules/participant/components/user-action/index.js +0 -169
  367. package/lib/modules/video-window/deviceState/index.d.ts +0 -16
  368. package/lib/modules/video-window/deviceState/index.js +0 -75
  369. package/lib/modules/video-window/members/index.css +0 -51
  370. package/lib/modules/video-window/members/index.d.ts +0 -2
  371. package/lib/modules/video-window/members/index.js +0 -157
  372. package/lib/modules/video-window/speaking/index.css +0 -69
  373. package/lib/modules/video-window/speaking/index.d.ts +0 -3
  374. package/lib/modules/video-window/speaking/index.js +0 -57
  375. package/lib/modules/video-window/topControl/index.css +0 -35
  376. package/lib/modules/video-window/topControl/index.d.ts +0 -3
  377. package/lib/modules/video-window/topControl/index.js +0 -92
  378. /package/lib/modules/{sound-effect → event-sound}/sound-effect-player.d.ts +0 -0
  379. /package/lib/modules/{sound-effect → event-sound}/sound-effect-player.js +0 -0
@@ -34,6 +34,7 @@ export declare const enUs: {
34
34
  fmt_attendies_toast_cant_sethost: string;
35
35
  fmt_attendies_toast_cant_setcohost: string;
36
36
  fmt_attendies_button_revokehost_error: string;
37
+ fmt_attendies_toast_cohost_upper_limit: string;
37
38
  fmt_attendies_button_rename: string;
38
39
  fmt_attendies_options_allowlocalrecord: string;
39
40
  fmt_attendies_options_putinwaitingroom: string;
@@ -89,10 +90,11 @@ export declare const enUs: {
89
90
  fmt_additional_label_meet_view_all: string;
90
91
  fmt_additional_label_change_name_self: string;
91
92
  fmt_additional_tips_nickname_change_success: string;
92
- fmt_additional_popup_label_change_nickname: string;
93
93
  fmt_additional_popup_label_enter_nickname: string;
94
94
  fmt_additional_popup_label_enter_nickname_ok: string;
95
95
  fmt_additional_label_toast_rename_off: string;
96
+ fmt_attendies_toast_host_enabled_mute: string;
97
+ fmt_attendies_toast_host_turned_off_video: string;
96
98
  fmt_actionbar_tips_leavemeeting: string;
97
99
  fmt_actionbar_tips_locked: string;
98
100
  fmt_actionbar_tips_recheckleave: string;
@@ -560,6 +562,21 @@ export declare const enUs: {
560
562
  fmt_screenshare_tips_sharing_audio_cancel: string;
561
563
  fmt_screenshare_tips_sharing_audio_confirm: string;
562
564
  fmt_screenshare_tips_sharing_disabled_tocontact: string;
565
+ fmt_screenshare_toast_network_error_unable_start_screen_share: string;
566
+ fmt_screenshare_controlbar_button_annotations: string;
567
+ fmt_screenshare_controlbar_annotations_options_attendees_annotate: string;
568
+ fmt_screenshare_controlbar_annotations_options_show_name: string;
569
+ fmt_screenshare_toast_host_enabled_annotations: string;
570
+ fmt_screenshare_toast_host_disabled_annotations: string;
571
+ fmt_screenshare_controlbar_options_clear_all: string;
572
+ fmt_screenshare_toast_annotations_visible_participants: string;
573
+ fmt_screenshare_controlbar_button_settings: string;
574
+ fmt_screenshare_controlbar_settings_label_share_audio_settings: string;
575
+ fmt_screenshare_controlbar_settings_options_enable_share_audio: string;
576
+ fmt_screenshare_controlbar_settings_label_annotation_settings: string;
577
+ fmt_screenshare_controlbar_settings_label_annotation_controls: string;
578
+ fmt_screenshare_toast_annotation_controls_screen_sharing_disabled: string;
579
+ fmt_screenshare_tips_host_not_enabled_annotations: string;
563
580
  fmt_screenshare_tips_unenabled: string;
564
581
  fmt_screenshare_whiteboard_options_changetheme: string;
565
582
  fmt_screenshare_tips_alreadyoriginalsize: string;
@@ -877,6 +894,31 @@ export declare const enUs: {
877
894
  fmt_internalsetting_room_window_switched: string;
878
895
  fmt_internalsetting_labels_Network_type: string;
879
896
  fmt_internalsetting_labels_resolving_power: string;
897
+ fmt_internalsetting_options_play_prompt: string;
898
+ fmt_internalsetting_labels_audio: string;
899
+ fmt_internalsetting_labels_hide_video_off: string;
900
+ fmt_internalsetting_labels_hide_my_video: string;
901
+ fmt_settings_labels_virtual_background: string;
902
+ fmt_settings_labels_prompt_tone: string;
903
+ fmt_meeting_setting_button_meeting_settings: string;
904
+ fmt_meeting_setting_labels_meeting_settings: string;
905
+ fmt_meeting_setting_labels_audio_video_settings: string;
906
+ fmt_meeting_setting_options_mute_participants: string;
907
+ fmt_meeting_setting_options_disable_video: string;
908
+ fmt_meeting_setting_labels_Security: string;
909
+ fmt_meeting_setting_options_enable_waiting_room: string;
910
+ fmt_meeting_setting_options_jbh: string;
911
+ fmt_meeting_setting_options_show_time: string;
912
+ fmt_meeting_setting_options_show_duration: string;
913
+ fmt_meeting_setting_options_show_information: string;
914
+ fmt_meeting_setting_labels_advanced: string;
915
+ fmt_meeting_setting_options_enable_live_streaming: string;
916
+ fmt_meeting_setting_options_enable_interpretation: string;
917
+ fmt_meeting_setting_options_generate_meeting_minutes: string;
918
+ fmt_meeting_setting_toast_enabled_mute: string;
919
+ fmt_meeting_setting_toast_turned_off_video: string;
920
+ fmt_meeting_setting_toast_disabled_mute: string;
921
+ fmt_meeting_setting_toast_turned_on_video: string;
880
922
  fmt_settings_labels_sidebar: string;
881
923
  fmt_settings_labels_fold: string;
882
924
  fmt_settings_labels_theme: string;
@@ -1272,6 +1314,7 @@ export declare const enUs: {
1272
1314
  fmt_premeeting_setting_mobile_option_auto: string;
1273
1315
  fmt_premeeting_setting_mobile_option_bright: string;
1274
1316
  fmt_premeeting_setting_mobile_option_dark: string;
1317
+ fmt_premeeting_setting_option_setting_after_restarting: string;
1275
1318
  fmt_premeeting_setting_mobile_option_region: string;
1276
1319
  fmt_premeeting_setting_mobile_option_developer_mode: string;
1277
1320
  fmt_premeeting_setting_mobile_label_about_us: string;
@@ -1296,6 +1339,8 @@ export declare const enUs: {
1296
1339
  fmt_premeeting_setting_mobile_popup_button_cancel: string;
1297
1340
  fmt_premeeting_setting_mobile_popup_button_log_out: string;
1298
1341
  fmt_premeeting_setting_mobile_button_log_out_confirm: string;
1342
+ fmt_premeeting_setting_button_more_meeting_control: string;
1343
+ fmt_premeeting_setting_checkbox_joining_meeting_connect_audio: string;
1299
1344
  fmt_premeeting_joinroom_mobile_button_upandin: string;
1300
1345
  fmt_premeeting_joinroom_mobile_label_flexible_meeting: string;
1301
1346
  fmt_premeeting_joinroom_mobile_label_enterprise_account: string;
@@ -1357,6 +1402,7 @@ export declare const enUs: {
1357
1402
  fmt_security_mainwindow_label_watermark: string;
1358
1403
  fmt_security_mainwindow_label_toast_unmute_not_allow: string;
1359
1404
  fmt_security_mainwindow_label_toast_name_change_not_allow: string;
1405
+ fmt_security_mainwindow_label_interactive_annotations: string;
1360
1406
  fmt_premeeting_setting_label_settings: string;
1361
1407
  fmt_premeeting_setting_label_normal: string;
1362
1408
  fmt_premeeting_setting_label_voice_motivation: string;
@@ -1413,6 +1459,7 @@ export declare const enUs: {
1413
1459
  fmt_premeeting_setting_label_low: string;
1414
1460
  fmt_premeeting_setting_label_medium: string;
1415
1461
  fmt_premeeting_setting_label_high: string;
1462
+ fmt_premeeting_setting_label_turn_off: string;
1416
1463
  fmt_premeeting_setting_label_professional_audio: string;
1417
1464
  fmt_premeeting_setting_label_enable_stereo: string;
1418
1465
  fmt_premeeting_setting_label_high_fidelity_music_mode: string;
@@ -7,6 +7,7 @@ Object.defineProperty(exports, "__esModule", {
7
7
  exports.enUs = void 0;
8
8
  var enUs = exports.enUs = {
9
9
  fmt_role_host: 'Host',
10
+ //****************** ls ******************
10
11
  fmt_role_participant: 'Attendees',
11
12
  fmt_role_cohost: 'Co-host',
12
13
  fmt_participants_label_participants: 'Member List',
@@ -19,6 +20,7 @@ var enUs = exports.enUs = {
19
20
  fmt_participants_member_button_mute: 'Mute',
20
21
  fmt_participants_member_button_unmute: 'Unmute',
21
22
  fmt_participants_member_button_more: 'More',
23
+ //****************** 参会者 ******************
22
24
  fmt_attendies_options_muteall: 'Mute all attendees in the meeting room',
23
25
  fmt_attendies_button_muteall: 'Mute all',
24
26
  fmt_participants_window_mute_interpreter: 'You are muting the interpreter. Do you want to continue?',
@@ -41,6 +43,7 @@ var enUs = exports.enUs = {
41
43
  fmt_attendies_toast_cant_sethost: "The member's device cannot be assigned as the host.",
42
44
  fmt_attendies_toast_cant_setcohost: "The member's device cannot be assigned as the co-host.",
43
45
  fmt_attendies_button_revokehost_error: 'Your host privileges have been revoked, and the setup has failed.',
46
+ fmt_attendies_toast_cohost_upper_limit: 'The number of co-hosts has reached the upper limit; no more co-hosts can be set.',
44
47
  fmt_attendies_button_rename: 'Rename',
45
48
  fmt_attendies_options_allowlocalrecord: 'Allow recording of local videos',
46
49
  fmt_attendies_options_putinwaitingroom: 'Put it in the waiting room',
@@ -96,10 +99,11 @@ var enUs = exports.enUs = {
96
99
  fmt_additional_label_meet_view_all: 'Meeting View for All',
97
100
  fmt_additional_label_change_name_self: 'Rename',
98
101
  fmt_additional_tips_nickname_change_success: 'Nickname changed successfully',
99
- fmt_additional_popup_label_change_nickname: 'Rename in the Meeting',
100
102
  fmt_additional_popup_label_enter_nickname: 'Please enter a nickname',
101
103
  fmt_additional_popup_label_enter_nickname_ok: 'OK',
102
104
  fmt_additional_label_toast_rename_off: 'Host has closed the rename function',
105
+ fmt_attendies_toast_host_enabled_mute: 'The host has enabled mute upon entry for all participants​​',
106
+ fmt_attendies_toast_host_turned_off_video: '​​The host has turned off video automatically upon entry',
103
107
  fmt_actionbar_tips_leavemeeting: 'Are you sure you want to leave the meeting now?',
104
108
  fmt_actionbar_tips_locked: 'The meeting has been locked by the host',
105
109
  fmt_actionbar_tips_recheckleave: 'You cannot join the meeting after leaving the meeting; Are you sure you want to leave the meeting now?',
@@ -166,7 +170,7 @@ var enUs = exports.enUs = {
166
170
  fmt_popup_button_openvideo: 'Open video',
167
171
  fmt_popup_button_drag: 'Drag',
168
172
  fmt_popup_label_muted: 'Muted',
169
- fmt_popup_label_turnedon: 'Turned on',
173
+ fmt_popup_label_turnedon: 'On',
170
174
  fmt_popup_label_meetingduration: 'Meeting duration {reason1} minutes',
171
175
  fmt_leave_tips_removetip: 'You have been removed from this meeting. Clicking the button to exit',
172
176
  fmt_leave_tips_classover: 'The meeting has ended, click the button to leave the meeting room.',
@@ -226,8 +230,8 @@ var enUs = exports.enUs = {
226
230
  fmt_audio_popup_button_cancel: 'Cancel',
227
231
  fmt_popup_copywrite_stopstreamingnow: 'Are you sure to stop the live broadcast now?',
228
232
  fmt_popup_options_confirmstop: 'Confirm to stop live streaming',
229
- fmt_popup_options_placedbottom: 'Send to back',
230
- fmt_popup_options_placedtop: 'Bring to front',
233
+ fmt_popup_options_placedbottom: 'Move to Bottom​',
234
+ fmt_popup_options_placedtop: '​​Move to Top​',
231
235
  fmt_broadcast_tips_righturl: 'Please enter the correct live streaming page address',
232
236
  fmt_broadcast_tips_anyonewatch: 'Anyone who uses this link can watch the live broadcast',
233
237
  fmt_broadcast_tips_streamingwebpage: 'Please enter the URL of the live streaming webpage',
@@ -250,6 +254,7 @@ var enUs = exports.enUs = {
250
254
  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',
251
255
  fmt_broadcast_livestream_button_hide: 'Hide',
252
256
  fmt_broadcast_livestream_button_show: 'Show',
257
+ //****************** 设备检测&管理 ******************
253
258
  fmt_device_label_audio_mute: 'Mute',
254
259
  fmt_device_label_audio_unmute: 'Unmute',
255
260
  fmt_device_label_video_start: 'Open Camera',
@@ -281,6 +286,7 @@ var enUs = exports.enUs = {
281
286
  fmt_status_label_saysomething: 'Say Something',
282
287
  fmt_status_label_stoprecord: 'Stop Recording',
283
288
  fmt_status_label_rotation: 'reverse lens',
289
+ //****************** 入会检测 ******************
284
290
  fmt_sip_button_unmute: 'Request to unmute',
285
291
  fmt_sip_button_opencamera: 'Request to open camera',
286
292
  fmt_sip_button_topup: 'Top up',
@@ -430,7 +436,7 @@ var enUs = exports.enUs = {
430
436
  fmt_chat_enable_limit: 'Currently mutted',
431
437
  fmt_chat_say_something: 'Say something',
432
438
  fmt_chat_send_cohost: 'Host/Co-host',
433
- fmt_chat_setting_value: "Participants' chat permissions in the meeting",
439
+ fmt_chat_setting_value: 'chat permissions',
434
440
  fmt_chat_send_open: 'Allow chat freely',
435
441
  fmt_chat_send_only_open: 'Only public chat allowed',
436
442
  fmt_chat_send_only_cohost: 'Only hosts and co-hosts private chat allowed',
@@ -567,6 +573,21 @@ var enUs = exports.enUs = {
567
573
  fmt_screenshare_tips_sharing_audio_cancel: 'Stop audio sharing ',
568
574
  fmt_screenshare_tips_sharing_audio_confirm: 'Keep Mic on',
569
575
  fmt_screenshare_tips_sharing_disabled_tocontact: '{reason1} Disabled sharing, you can contact the meeting administrator to enable it',
576
+ fmt_screenshare_toast_network_error_unable_start_screen_share: 'Network error,unable to start screen sharing.Please check network.',
577
+ fmt_screenshare_controlbar_button_annotations: 'Annotations',
578
+ fmt_screenshare_controlbar_annotations_options_attendees_annotate: 'Allow other attendees to annotate',
579
+ fmt_screenshare_controlbar_annotations_options_show_name: 'Show annoatator name',
580
+ fmt_screenshare_toast_host_enabled_annotations: 'The host or sharer has enabled interactive annotations',
581
+ fmt_screenshare_toast_host_disabled_annotations: 'The host or sharer has disabled interactive annotations',
582
+ fmt_screenshare_controlbar_options_clear_all: 'Clear all annotations',
583
+ fmt_screenshare_toast_annotations_visible_participants: 'Your annotations are visible to all participants',
584
+ fmt_screenshare_controlbar_button_settings: 'settings',
585
+ fmt_screenshare_controlbar_settings_label_share_audio_settings: 'Share Audio Settings',
586
+ fmt_screenshare_controlbar_settings_options_enable_share_audio: 'Enable Shared Audio',
587
+ fmt_screenshare_controlbar_settings_label_annotation_settings: 'Interactive Annotation Settings',
588
+ fmt_screenshare_controlbar_settings_label_annotation_controls: 'Interactive Annotation Controls',
589
+ fmt_screenshare_toast_annotation_controls_screen_sharing_disabled: 'Screen sharing has been turned off',
590
+ fmt_screenshare_tips_host_not_enabled_annotations: 'The host or presenter has not enabled the interactive annotation',
570
591
  fmt_screenshare_tips_unenabled: 'The conference administrator has not enabled the whiteboard editing function',
571
592
  fmt_screenshare_whiteboard_options_changetheme: 'Change whiteboard theme',
572
593
  fmt_screenshare_tips_alreadyoriginalsize: "It is already 'original size'",
@@ -590,20 +611,20 @@ var enUs = exports.enUs = {
590
611
  fmt_screenshare_whiteboard_tips_righclick: 'Right click to set as permanent color',
591
612
  fmt_screenshare_whiteboard_button_setcolor: 'Set as permanent color',
592
613
  fmt_screenshare_whiteboard_button_eraser: 'Eraser',
593
- fmt_screenshare_whiteboard_button_empty: 'Empty',
614
+ fmt_screenshare_whiteboard_button_empty: 'Clear',
594
615
  fmt_screenshare_whiteboard_button_additionaltools: 'Additional tools',
595
- fmt_screenshare_whiteboard_button_withdrwa: 'Withdraw',
596
- fmt_screenshare_whiteboard_button_forward: 'Forward',
597
- fmt_screenshare_whiteboard_button_paintbrush: 'Paint brush',
616
+ fmt_screenshare_whiteboard_button_withdrwa: 'Undo',
617
+ fmt_screenshare_whiteboard_button_forward: 'Redo',
618
+ fmt_screenshare_whiteboard_button_paintbrush: 'Pen',
598
619
  fmt_screenshare_whiteboard_button_cutting: 'Cutting',
599
620
  fmt_screenshare_whiteboard_button_screenshot: 'Screenshot',
600
621
  fmt_screenshare_whiteboard_options_hideshot: 'Hidden room screenshot',
601
- fmt_screenshare_whiteboard_button_shape: 'Shape',
602
- fmt_screenshare_whiteboard_button_laserpen: 'Laser pen',
603
- fmt_screenshare_whiteboard_button_boxselection: 'Box selection',
622
+ fmt_screenshare_whiteboard_button_shape: 'Graphic',
623
+ fmt_screenshare_whiteboard_button_laserpen: 'Laser',
624
+ fmt_screenshare_whiteboard_button_boxselection: 'Select',
604
625
  fmt_screenshare_whiteboard_button_text: 'Text',
605
626
  fmt_screenshare_whiteboard_button_dragdrop: 'Drag and drop',
606
- fmt_screenshare_whiteboard_button_savescript: 'Save Whiteboard Script',
627
+ fmt_screenshare_whiteboard_button_savescript: 'Save',
607
628
  fmt_screenshare_whiteboard_button_spread: 'Spread',
608
629
  fmt_screenshare_whiteboard_tips_choose_pen_first: 'Start by selecting a shape or brush',
609
630
  fmt_screenshare_whiteboard_tips_downloading: 'The blackboard is currently being downloaded',
@@ -679,19 +700,28 @@ var enUs = exports.enUs = {
679
700
  fmt_meetinginfo_duration_1: '%1$d minute',
680
701
  fmt_meetinginfo_duration_2: '%1$d hour and %2$d minutes',
681
702
  fmt_meetinginfo_duration_2_no_min: '%1$d hour',
703
+ //标签
682
704
  fmt_information_label_lockmeeting: 'Lock Meeting',
705
+ //提示
683
706
  fmt_information_tips_lockedbyhost: 'The {reason1} has locked the meeting and no one else is allowed to join',
707
+ //提示
684
708
  fmt_information_tips_copysuccess: 'Copy successful (?)',
709
+ //提示
685
710
  fmt_information_tips_copyfailed: 'Copy failed (?)',
711
+ //标签
686
712
  fmt_information_label_sharemeetingnumber: 'Share meeting number or invitation link',
713
+ //提示
687
714
  fmt_additional_tips_invitationfailed: 'Invitation link copying failed',
715
+ //提示
688
716
  fmt_additional_tips_invitation: 'The invitation link has been copied to the clipboard',
689
717
  fmt_sharing_button_copydetailed: 'Copy detailed',
690
718
  fmt_sharing_label_invitationlink: 'link',
691
719
  fmt_sharing_tips_copyto_clipboard: 'invite information copied to clipboard',
692
720
  fmt_sharing_tips_copyfull_failed: 'invite information copied failed',
693
721
  fmt_sharing_label_invitationdetailed: '{reason1} invites you to join the meeting, the meeting topic: {reason2}, the meeting time: {reason3}, the meeting link: {reason4}',
722
+ //通知
694
723
  fmt_information_tips_meeting_inprogress: 'Meeting in progress',
724
+ //通知
695
725
  fmt_information_tips_click_return_meeting: 'Click to return to the meeting interface',
696
726
  fmt_information_label_s_fast_meeting: "'s Fast Meeting",
697
727
  fmt_networkstatus_window_title: 'Network connections',
@@ -750,6 +780,7 @@ var enUs = exports.enUs = {
750
780
  fmt_failure_popup_label_crash_tips: 'The app is crashing, please close the app and try again.',
751
781
  fmt_failure_popup_button_close_app: 'Close the app',
752
782
  fmt_failure_popup_button_refresh: 'Refresh',
783
+ //****************** 设置 ******************
753
784
  fmt_settings_option_setting: 'Setting',
754
785
  fmt_settings_option_general: 'General',
755
786
  fmt_settings_option_about_us: 'About US',
@@ -884,6 +915,33 @@ var enUs = exports.enUs = {
884
915
  fmt_internalsetting_room_window_switched: 'Switch to {reason1}',
885
916
  fmt_internalsetting_labels_Network_type: 'Network type',
886
917
  fmt_internalsetting_labels_resolving_power: 'Resolution',
918
+ fmt_internalsetting_options_play_prompt: 'Play a prompt tone upon entry',
919
+ fmt_internalsetting_labels_audio: 'Audio',
920
+ fmt_internalsetting_labels_hide_video_off: 'After checking this option, you will not see the views of participants who have not turned on their cameras during the meeting (others will still be able to see them).',
921
+ fmt_internalsetting_labels_hide_my_video: 'After checking this option, you will not see your own view during the meeting (others will still be able to see your view).',
922
+ fmt_settings_labels_virtual_background: 'Virtual Background',
923
+ fmt_settings_labels_prompt_tone: 'prompt tone',
924
+ //****************** 会控设置 ******************
925
+ fmt_meeting_setting_button_meeting_settings: 'Meeting settings',
926
+ fmt_meeting_setting_labels_meeting_settings: 'Meeting settings',
927
+ fmt_meeting_setting_labels_audio_video_settings: 'Audio and Video Settings (when joining a meeting)',
928
+ fmt_meeting_setting_options_mute_participants: 'Mute participants upon entry',
929
+ fmt_meeting_setting_options_disable_video: 'Disable video for attendees upon entry',
930
+ fmt_meeting_setting_labels_Security: 'Security',
931
+ fmt_meeting_setting_options_enable_waiting_room: 'Enable Waiting Room',
932
+ fmt_meeting_setting_options_jbh: 'Attendees can join before host',
933
+ fmt_meeting_setting_options_show_time: 'Show meeting time',
934
+ fmt_meeting_setting_options_show_duration: 'Show participant duration',
935
+ fmt_meeting_setting_options_show_information: 'Show meeting information',
936
+ fmt_meeting_setting_labels_advanced: 'Advanced',
937
+ fmt_meeting_setting_options_enable_live_streaming: 'Enable Live Streaming',
938
+ fmt_meeting_setting_options_enable_interpretation: 'Enable Interpretation',
939
+ fmt_meeting_setting_options_generate_meeting_minutes: 'Generate AI Meeting Minutes',
940
+ fmt_meeting_setting_toast_enabled_mute: 'You has enabled mute upon entry for all participants​​',
941
+ fmt_meeting_setting_toast_turned_off_video: '​​You has turned off video automatically upon entry',
942
+ fmt_meeting_setting_toast_disabled_mute: 'You has disabled mute upon entry for all participants​​',
943
+ fmt_meeting_setting_toast_turned_on_video: '​​You has turned on video automatically upon entry',
944
+ //****************** 设置提示部分 ******************
887
945
  fmt_settings_labels_sidebar: 'Sidebar',
888
946
  fmt_settings_labels_fold: 'Fold',
889
947
  fmt_settings_labels_theme: 'Theme',
@@ -901,7 +959,7 @@ var enUs = exports.enUs = {
901
959
  fmt_settings_tips_Blockallchat: "‘Block all chat'",
902
960
  fmt_settings_tips_groupchatonly: "'Group chat only'",
903
961
  fmt_settings_tips_hostchatonly: "'Only permit chat to host or cohost'",
904
- fmt_settings_tips_confirmactivate: 'Confirm to activate',
962
+ fmt_settings_tips_confirmactivate: 'Confirm',
905
963
  fmt_settings_tips_passwordcopyfailed: 'Meeting password copying failed',
906
964
  fmt_settings_tips_sharing: 'You are screen sharing',
907
965
  fmt_settings_labels_miniutes: '{reason1} minutes',
@@ -915,10 +973,11 @@ var enUs = exports.enUs = {
915
973
  fmt_settings_options_pausecloudrecording: 'Pause cloud recording',
916
974
  fmt_settings_popup_disable_while_microphone_detected: 'This function is disabled while the microphone is being detected',
917
975
  fmt_settings_popup_disable_while_speaker_detected: 'This function is disabled while the speaker is beiing detected',
918
- fmt_settings_popup_label_use_phone_audio: 'Using phone audio',
976
+ fmt_settings_popup_label_use_phone_audio: 'Phone',
919
977
  fmt_settings_popup_label_link_audio_to_hear_others: 'In order to hear other users, please join the meeting using cell phone audio',
920
978
  fmt_settings_popup_label_select_audio: 'Select audio',
921
979
  fmt_settings_popup_label_audio_not_connect_click_select: 'Audio not connected, please click to select',
980
+ //****************** 直播 ******************
922
981
  fmt_live_label_thirdplatform: 'Live streaming to third-party platforms',
923
982
  fmt_live_label_videostreamingurl: 'Video streaming URL',
924
983
  fmt_live_inputtips_videostreamingurl: 'Please enter the video stream URL',
@@ -936,6 +995,7 @@ var enUs = exports.enUs = {
936
995
  fmt_live_label_copylink: 'Copy live streaming link',
937
996
  fmt_tips_button_Stopsteaming: 'Stop live',
938
997
  fmt_live_label_push_platform: 'Push the meeting to the specified live platform',
998
+ //****************** 录制 ******************
939
999
  fmt_record_button_Cloudrecording: 'Record',
940
1000
  fmt_record_button_Localrecording: 'Local recording',
941
1001
  fmt_record_button_pauserecording: 'Pause',
@@ -1228,6 +1288,7 @@ var enUs = exports.enUs = {
1228
1288
  fmt_ai_subtitles_setting_label_listening_no_content: 'No content yet',
1229
1289
  fmt_ai_transcriptions_sidebar_button_stop_translation: 'Stop transcribing',
1230
1290
  fmt_ai_transcriptions_sidebar_button_start_translation: 'Start transcribing',
1291
+ //****************** AI会议纪要 ******************
1231
1292
  fmt_ai_summary_create_option_create_summary: 'Create meeting summary for the meeting',
1232
1293
  fmt_ai_summary_create_labels_meeting_list: 'List of meetings',
1233
1294
  fmt_ai_summary_create_labels_valid_records: 'Only the last 2 days of meeting summaries are displayed',
@@ -1251,6 +1312,7 @@ var enUs = exports.enUs = {
1251
1312
  fmt_ai_summary_setting_option_meeting_assistant: 'Meeting Assistant',
1252
1313
  fmt_ai_summary_setting_option_teacher: 'Teacher',
1253
1314
  fmt_ai_summary_setting_option_sales_manager: 'Sales Manager',
1315
+ //****************** 会前设置页 ******************
1254
1316
  fmt_premeeting_setting_mobile_label_settings: 'Settings',
1255
1317
  fmt_premeeting_setting_mobile_label_host_settings: 'Meeting host settings when joining a meeting',
1256
1318
  fmt_premeeting_setting_mobile_swtich_mute_when_join: 'Mute when joining a meeting ',
@@ -1272,13 +1334,14 @@ var enUs = exports.enUs = {
1272
1334
  fmt_premeeting_setting_mobile_swtich_voice_stimulation: 'Voice stimulation',
1273
1335
  fmt_premeeting_setting_mobile_label_speaking_display_first: 'When voice stimulation is enabled, the participants who are speaking are displayed first.',
1274
1336
  fmt_premeeting_setting_mobile_option_bilingual: 'Bilingual ',
1275
- fmt_premeeting_setting_mobile_option_chinese: 'Chinese',
1276
- fmt_premeeting_setting_mobile_option_english: 'English',
1337
+ fmt_premeeting_setting_mobile_option_chinese: '中文',
1338
+ fmt_premeeting_setting_mobile_option_english: 'EN',
1277
1339
  fmt_premeeting_setting_mobile_option_language_auto: 'Auto',
1278
1340
  fmt_premeeting_setting_mobile_option_appearance: 'Appearance',
1279
1341
  fmt_premeeting_setting_mobile_option_auto: 'Auto',
1280
1342
  fmt_premeeting_setting_mobile_option_bright: 'Bright',
1281
1343
  fmt_premeeting_setting_mobile_option_dark: 'Dark',
1344
+ fmt_premeeting_setting_option_setting_after_restarting: 'Appearance settings will take effect after restarting Flexible Meeting',
1282
1345
  fmt_premeeting_setting_mobile_option_region: 'Region',
1283
1346
  fmt_premeeting_setting_mobile_option_developer_mode: 'Developer mode',
1284
1347
  fmt_premeeting_setting_mobile_label_about_us: 'About us',
@@ -1303,6 +1366,9 @@ var enUs = exports.enUs = {
1303
1366
  fmt_premeeting_setting_mobile_popup_button_cancel: 'Cancel',
1304
1367
  fmt_premeeting_setting_mobile_popup_button_log_out: 'Log out ',
1305
1368
  fmt_premeeting_setting_mobile_button_log_out_confirm: 'Confirm',
1369
+ fmt_premeeting_setting_button_more_meeting_control: 'More Conference Control Settings',
1370
+ fmt_premeeting_setting_checkbox_joining_meeting_connect_audio: 'Automatically connect audio when joining a meeting',
1371
+ //****************** 首页 ******************
1306
1372
  fmt_premeeting_joinroom_mobile_button_upandin: 'Sign up and log in',
1307
1373
  fmt_premeeting_joinroom_mobile_label_flexible_meeting: 'Flexible Meeting',
1308
1374
  fmt_premeeting_joinroom_mobile_label_enterprise_account: 'Enterprise account',
@@ -1320,6 +1386,7 @@ var enUs = exports.enUs = {
1320
1386
  fmt_premeeting_joinroom_mobile_button_confirm_exit: 'Confirm to exit',
1321
1387
  fmt_premeeting_joinroom_mobile_button_cancel: 'Cancel',
1322
1388
  fmt_premeeting_joinroom_mobile_label_rename: 'Rename',
1389
+ //****************** 水印(移动) ******************
1323
1390
  fmt_security_setting_mobile_label_watermark: 'Watermark',
1324
1391
  fmt_security_setting_mobile_label_watermark_style: 'Watermark style',
1325
1392
  fmt_security_setting_mobile_option_watermark_style_single: 'Single line',
@@ -1338,10 +1405,12 @@ var enUs = exports.enUs = {
1338
1405
  fmt_security_setting_mobile_chat_popup_option_all: 'All',
1339
1406
  fmt_security_setting_mobile_chat_popup_option_all_chat: 'All public and private chats',
1340
1407
  fmt_security_mobile_mainwindow_label_watermark: '{reason1}{reason1}',
1408
+ //****************** 安全(移动) ******************
1341
1409
  fmt_security_setting_mobile_label_security: 'Security',
1342
1410
  fmt_security_setting_mobile_label_security_label: 'SECURITY',
1343
1411
  fmt_security_setting_mobile_label_lock_meeting: 'Lock Meeting',
1344
1412
  fmt_security_setting_mobile_label_waiting_room: 'Waiting Room',
1413
+ //****************** 安全 ******************
1345
1414
  fmt_security_setting_label_security_setting: 'Meeting Security Setting',
1346
1415
  fmt_security_setting_label_lock_meeting: 'Lock Meeting',
1347
1416
  fmt_security_setting_label_waiting_room: 'Attendees must first enter the waiting room',
@@ -1364,6 +1433,8 @@ var enUs = exports.enUs = {
1364
1433
  fmt_security_mainwindow_label_watermark: '{reason1}{reason1}',
1365
1434
  fmt_security_mainwindow_label_toast_unmute_not_allow: 'Hosts/co-hosts not allowed to unmute themselves',
1366
1435
  fmt_security_mainwindow_label_toast_name_change_not_allow: 'Hosts/co-hosts are not allowed to change their own name',
1436
+ fmt_security_mainwindow_label_interactive_annotations: 'Allow interactive annotations',
1437
+ //****************** 设置 ******************
1367
1438
  fmt_premeeting_setting_label_settings: 'Setting',
1368
1439
  fmt_premeeting_setting_label_normal: 'Normal',
1369
1440
  fmt_premeeting_setting_label_voice_motivation: 'Voice Motivation',
@@ -1420,6 +1491,7 @@ var enUs = exports.enUs = {
1420
1491
  fmt_premeeting_setting_label_low: 'Low',
1421
1492
  fmt_premeeting_setting_label_medium: 'Medium',
1422
1493
  fmt_premeeting_setting_label_high: 'High',
1494
+ fmt_premeeting_setting_label_turn_off: 'Turn Off',
1423
1495
  fmt_premeeting_setting_label_professional_audio: 'Professional Audio',
1424
1496
  fmt_premeeting_setting_label_enable_stereo: 'Enable Stereo',
1425
1497
  fmt_premeeting_setting_label_high_fidelity_music_mode: 'High-Fidelity Music Mode',
@@ -1465,6 +1537,7 @@ var enUs = exports.enUs = {
1465
1537
  fmt_meeting_mainwidow_version_popup_label_new_version_ready: 'New Version is Ready',
1466
1538
  fmt_meeting_mainwindow_version_popup_label_experience_after_restarting: 'Experience it after restarting the application ({reason1})',
1467
1539
  fmt_meeting_mainwindow_version_popup_button_restart_application: 'Restart Application',
1540
+ //****************** 同声传译-PC ******************
1468
1541
  fmt_interpretation_setting_controller_option_simultaneous_interpretation: 'Simultaneous Interpretation',
1469
1542
  fmt_interpretation_setting_controller_toast_turn_on_simultaneous_interpretation: 'Turn on Simultaneous Interpretation',
1470
1543
  fmt_interpretation_setting_controller_toast_turn_off_simultaneous_interpretation: 'Turn off Simultaneous Interpretation',
@@ -1523,6 +1596,7 @@ var enUs = exports.enUs = {
1523
1596
  fmt_interpretation_mainwindow_toast_label_turn_off_interpret: 'You have turned off simultaneous interpretation',
1524
1597
  fmt_interpretation_interpreter_popup_special_host: 'Cohost',
1525
1598
  fmt_interpretation_interpreter_popup_special_co_host: 'Host',
1599
+ //****************** 同声传译-mobile ******************
1526
1600
  fmt_interpretation_mobile_setting_controller_option_interpret: 'simultaneous interpretation',
1527
1601
  fmt_interpretation_mobile_setting_controller_label_interpret: 'simultaneous interpretation',
1528
1602
  fmt_interpretation_mobile_setting_controller_toast_label_setting_by_one: '{reason1} may be setting up this function',
@@ -1566,6 +1640,7 @@ var enUs = exports.enUs = {
1566
1640
  fmt_interpretation_mobile_controller_popup_button_interpret_setting: 'Simultaneous interpretation settings',
1567
1641
  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.',
1568
1642
  fmt_interpretation_mobile_meeting_win_label_translator: 'TRANS.',
1643
+ //****************** 免密登陆 ******************
1569
1644
  fmt_meeting_creatpage_label_smart_meeting: 'Flexible Meetings',
1570
1645
  fmt_meeting_creatpage_label_fast_experience: 'Fast Experience',
1571
1646
  fmt_meeting_creatpage_button_create_meeting: 'Create a Meeting',
@@ -1617,6 +1692,7 @@ var enUs = exports.enUs = {
1617
1692
  fmt_link_invitation_password: 'The meeting password: {reason1}',
1618
1693
  fmt_meeting_creatpage_toast_password_only_contain: 'Password can only contain numbers, letters and symbols',
1619
1694
  fmt_meeting_creatpage_toast_password_only_six: 'Membership password length is 6 digits',
1695
+ //****************** 翻译语言 ******************
1620
1696
  fmt_translate_language_chinese: 'Chinese',
1621
1697
  fmt_translate_language_english: 'English',
1622
1698
  fmt_translate_language_japanese: 'Japanese',
@@ -1651,6 +1727,9 @@ var enUs = exports.enUs = {
1651
1727
  fmt_translate_language_vietnamese_mini: 'VI',
1652
1728
  fmt_translate_language_malay_mini: 'MS',
1653
1729
  fmt_translate_language_turkish_mini: 'TR',
1730
+ //****************** 分组 ******************
1731
+
1732
+ // web
1654
1733
  fmt_group_mainwindow_sidebar_button_group_discuss: 'Breakout Groups',
1655
1734
  fmt_group_mainwindow_sidebar_label_group_discuss_on: 'Open Subgroup',
1656
1735
  fmt_group_mainwindow_sidebar_label_group_discuss_off: 'Close Subgroup',
@@ -1780,6 +1859,7 @@ var enUs = exports.enUs = {
1780
1859
  fmt_group_mainwindow_breakout_room_count_popup_button_back_main: 'Return to the main room',
1781
1860
  fmt_group_popup_creat_next_label_end_after_count: 'All breakout sessions will end automatically after the countdown.',
1782
1861
  fmt_group_popup_creat_next_label_back_main_after_count_auto: 'You will return to the main room',
1862
+ //移动
1783
1863
  fmt_mobile_group_function_button_breakout_group: 'Breakout Group',
1784
1864
  fmt_mobile_group_sidebar_button_leave_group: 'Leaving Group',
1785
1865
  fmt_mobile_group_creat_label_creat_group: 'Create Grouping',
@@ -1870,15 +1950,18 @@ var enUs = exports.enUs = {
1870
1950
  fmt_mobile_group_breakout_room_label_finishi_after_timer: 'All breakout sessions will end automatically after the countdown.',
1871
1951
  fmt_mobile_group_breakout_room_label_back_main_auto: 'You will return to the main automated session',
1872
1952
  fmt_mobile_group_breakout_room_button_leave_group: 'Leave the breakout group',
1953
+ //****************** h5 单补 ******************
1873
1954
  fmt_h_label_more_function: 'More Function',
1874
1955
  fmt_h_label_tempor_hide_screen_share: 'When sharing the screen, other participants will be temporarily hidden.',
1875
1956
  fmt_h_label_tempor_hide_white_board: 'When sharing the whiteboard, other participants will be temporarily hidden.',
1876
1957
  fmt_h_tips_host_enabled_waiting_room: 'The host has enabled the waiting room, and you cannot join the meeting at the moment.',
1877
1958
  fmt_h_tips_tap_to_play: 'Tap to play',
1959
+ //****************** 错误信息 ******************
1878
1960
  fmt_pc_room_not_exist_error: 'The room does not exist or the password is wrong',
1879
1961
  fmt_lock_error: 'The host has locked the meeting and no one else can join',
1880
1962
  fmt_end_error: 'The meeting has ended',
1881
1963
  fmt_host_leave_error: 'The moderator is not in the meeting',
1964
+ //****************** hostkey ******************
1882
1965
  fmt_hostkey_window_title_reclaim_host: 'Reclaim host role',
1883
1966
  fmt_hostkey_window_content_reclaim_host: '{reason1} is the current host.Reclaiming might cause interruption',
1884
1967
  fmt_hostkey_window_button_reclaim_host: 'Reclaim host role',
@@ -1893,6 +1976,7 @@ var enUs = exports.enUs = {
1893
1976
  fmt_hostkey_input_hostkey_button_ok: 'OK',
1894
1977
  fmt_hostkey_input_hostkey_tips_incorrect_key: 'Incorrect host key',
1895
1978
  fmt_hostkey_meetingroom_toast_unable_to_claim_host: 'Unable to claim host role because there is already a host in the meeting',
1979
+ //****************** JBH ******************
1896
1980
  fmt_jbh_title_host_not_in_meeting: 'The meeting has not started yet',
1897
1981
  fmt_jbh_title_host_in_meeting: 'Please wait.The host will let you into the meeting soon.',
1898
1982
  fmt_jbh_title_meeting_topic: 'Meeting Topic'
@@ -34,6 +34,7 @@ export declare const zhCn: {
34
34
  fmt_attendies_toast_cant_sethost: string;
35
35
  fmt_attendies_toast_cant_setcohost: string;
36
36
  fmt_attendies_button_revokehost_error: string;
37
+ fmt_attendies_toast_cohost_upper_limit: string;
37
38
  fmt_attendies_button_rename: string;
38
39
  fmt_attendies_options_allowlocalrecord: string;
39
40
  fmt_attendies_options_putinwaitingroom: string;
@@ -89,10 +90,11 @@ export declare const zhCn: {
89
90
  fmt_additional_label_meet_view_all: string;
90
91
  fmt_additional_label_change_name_self: string;
91
92
  fmt_additional_tips_nickname_change_success: string;
92
- fmt_additional_popup_label_change_nickname: string;
93
93
  fmt_additional_popup_label_enter_nickname: string;
94
94
  fmt_additional_popup_label_enter_nickname_ok: string;
95
95
  fmt_additional_label_toast_rename_off: string;
96
+ fmt_attendies_toast_host_enabled_mute: string;
97
+ fmt_attendies_toast_host_turned_off_video: string;
96
98
  fmt_actionbar_tips_leavemeeting: string;
97
99
  fmt_actionbar_tips_locked: string;
98
100
  fmt_actionbar_tips_recheckleave: string;
@@ -560,6 +562,21 @@ export declare const zhCn: {
560
562
  fmt_screenshare_tips_sharing_audio_cancel: string;
561
563
  fmt_screenshare_tips_sharing_audio_confirm: string;
562
564
  fmt_screenshare_tips_sharing_disabled_tocontact: string;
565
+ fmt_screenshare_toast_network_error_unable_start_screen_share: string;
566
+ fmt_screenshare_controlbar_button_annotations: string;
567
+ fmt_screenshare_controlbar_annotations_options_attendees_annotate: string;
568
+ fmt_screenshare_controlbar_annotations_options_show_name: string;
569
+ fmt_screenshare_toast_host_enabled_annotations: string;
570
+ fmt_screenshare_toast_host_disabled_annotations: string;
571
+ fmt_screenshare_controlbar_options_clear_all: string;
572
+ fmt_screenshare_toast_annotations_visible_participants: string;
573
+ fmt_screenshare_controlbar_button_settings: string;
574
+ fmt_screenshare_controlbar_settings_label_share_audio_settings: string;
575
+ fmt_screenshare_controlbar_settings_options_enable_share_audio: string;
576
+ fmt_screenshare_controlbar_settings_label_annotation_settings: string;
577
+ fmt_screenshare_controlbar_settings_label_annotation_controls: string;
578
+ fmt_screenshare_toast_annotation_controls_screen_sharing_disabled: string;
579
+ fmt_screenshare_tips_host_not_enabled_annotations: string;
563
580
  fmt_screenshare_tips_unenabled: string;
564
581
  fmt_screenshare_whiteboard_options_changetheme: string;
565
582
  fmt_screenshare_tips_alreadyoriginalsize: string;
@@ -877,6 +894,31 @@ export declare const zhCn: {
877
894
  fmt_internalsetting_room_window_switched: string;
878
895
  fmt_internalsetting_labels_Network_type: string;
879
896
  fmt_internalsetting_labels_resolving_power: string;
897
+ fmt_internalsetting_options_play_prompt: string;
898
+ fmt_internalsetting_labels_audio: string;
899
+ fmt_internalsetting_labels_hide_video_off: string;
900
+ fmt_internalsetting_labels_hide_my_video: string;
901
+ fmt_settings_labels_virtual_background: string;
902
+ fmt_settings_labels_prompt_tone: string;
903
+ fmt_meeting_setting_button_meeting_settings: string;
904
+ fmt_meeting_setting_labels_meeting_settings: string;
905
+ fmt_meeting_setting_labels_audio_video_settings: string;
906
+ fmt_meeting_setting_options_mute_participants: string;
907
+ fmt_meeting_setting_options_disable_video: string;
908
+ fmt_meeting_setting_labels_Security: string;
909
+ fmt_meeting_setting_options_enable_waiting_room: string;
910
+ fmt_meeting_setting_options_jbh: string;
911
+ fmt_meeting_setting_options_show_time: string;
912
+ fmt_meeting_setting_options_show_duration: string;
913
+ fmt_meeting_setting_options_show_information: string;
914
+ fmt_meeting_setting_labels_advanced: string;
915
+ fmt_meeting_setting_options_enable_live_streaming: string;
916
+ fmt_meeting_setting_options_enable_interpretation: string;
917
+ fmt_meeting_setting_options_generate_meeting_minutes: string;
918
+ fmt_meeting_setting_toast_enabled_mute: string;
919
+ fmt_meeting_setting_toast_turned_off_video: string;
920
+ fmt_meeting_setting_toast_disabled_mute: string;
921
+ fmt_meeting_setting_toast_turned_on_video: string;
880
922
  fmt_settings_labels_sidebar: string;
881
923
  fmt_settings_labels_fold: string;
882
924
  fmt_settings_labels_theme: string;
@@ -1272,6 +1314,7 @@ export declare const zhCn: {
1272
1314
  fmt_premeeting_setting_mobile_option_auto: string;
1273
1315
  fmt_premeeting_setting_mobile_option_bright: string;
1274
1316
  fmt_premeeting_setting_mobile_option_dark: string;
1317
+ fmt_premeeting_setting_option_setting_after_restarting: string;
1275
1318
  fmt_premeeting_setting_mobile_option_region: string;
1276
1319
  fmt_premeeting_setting_mobile_option_developer_mode: string;
1277
1320
  fmt_premeeting_setting_mobile_label_about_us: string;
@@ -1296,6 +1339,8 @@ export declare const zhCn: {
1296
1339
  fmt_premeeting_setting_mobile_popup_button_cancel: string;
1297
1340
  fmt_premeeting_setting_mobile_popup_button_log_out: string;
1298
1341
  fmt_premeeting_setting_mobile_button_log_out_confirm: string;
1342
+ fmt_premeeting_setting_button_more_meeting_control: string;
1343
+ fmt_premeeting_setting_checkbox_joining_meeting_connect_audio: string;
1299
1344
  fmt_premeeting_joinroom_mobile_button_upandin: string;
1300
1345
  fmt_premeeting_joinroom_mobile_label_flexible_meeting: string;
1301
1346
  fmt_premeeting_joinroom_mobile_label_enterprise_account: string;
@@ -1357,6 +1402,7 @@ export declare const zhCn: {
1357
1402
  fmt_security_mainwindow_label_watermark: string;
1358
1403
  fmt_security_mainwindow_label_toast_unmute_not_allow: string;
1359
1404
  fmt_security_mainwindow_label_toast_name_change_not_allow: string;
1405
+ fmt_security_mainwindow_label_interactive_annotations: string;
1360
1406
  fmt_premeeting_setting_label_settings: string;
1361
1407
  fmt_premeeting_setting_label_normal: string;
1362
1408
  fmt_premeeting_setting_label_voice_motivation: string;
@@ -1413,6 +1459,7 @@ export declare const zhCn: {
1413
1459
  fmt_premeeting_setting_label_low: string;
1414
1460
  fmt_premeeting_setting_label_medium: string;
1415
1461
  fmt_premeeting_setting_label_high: string;
1462
+ fmt_premeeting_setting_label_turn_off: string;
1416
1463
  fmt_premeeting_setting_label_professional_audio: string;
1417
1464
  fmt_premeeting_setting_label_enable_stereo: string;
1418
1465
  fmt_premeeting_setting_label_high_fidelity_music_mode: string;