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.zhCn = void 0;
8
8
  var zhCn = exports.zhCn = {
9
9
  fmt_role_host: '主持人',
10
- //****************** ls ******************
11
10
  fmt_role_participant: '参会者',
12
11
  fmt_role_cohost: '联席主持人',
13
12
  fmt_participants_label_participants: '成员列表',
@@ -20,7 +19,6 @@ var zhCn = exports.zhCn = {
20
19
  fmt_participants_member_button_mute: '静音',
21
20
  fmt_participants_member_button_unmute: '解除静音',
22
21
  fmt_participants_member_button_more: '更多',
23
- //****************** 参会者 ******************
24
22
  fmt_attendies_options_muteall: '将所有当前会议室的参会者静音',
25
23
  fmt_attendies_button_muteall: '全体静音',
26
24
  fmt_participants_window_mute_interpreter: '您正在禁言翻译官,是否要继续?',
@@ -40,6 +38,9 @@ var zhCn = exports.zhCn = {
40
38
  fmt_attendies_options_sethost: '设为主持人',
41
39
  fmt_attendies_options_revokecohost: '撤销联席主持人',
42
40
  fmt_attendies_options_setcohost: '设为联席主持人',
41
+ fmt_attendies_toast_cant_sethost: '该成员的参会设备不能成为主持人',
42
+ fmt_attendies_toast_cant_setcohost: '该成员的参会设备不能成为联席主持人',
43
+ fmt_attendies_button_revokehost_error: '已收回您的主持人权限,设置失败',
43
44
  fmt_attendies_button_rename: '重命名',
44
45
  fmt_attendies_options_allowlocalrecord: '允许录制本地视频',
45
46
  fmt_attendies_options_putinwaitingroom: '放进等候室',
@@ -100,7 +101,6 @@ var zhCn = exports.zhCn = {
100
101
  fmt_additional_popup_label_enter_nickname_ok: 'OK',
101
102
  fmt_additional_label_toast_rename_off: '会议管理员已关闭改名功能',
102
103
  fmt_actionbar_tips_leavemeeting: '你确定现在要离开会议吗?',
103
- fmt_actionbar_button_plenarysession: '全体结束会议',
104
104
  fmt_actionbar_tips_locked: '会议已被主持人加锁',
105
105
  fmt_actionbar_tips_recheckleave: '离开会议之后不能再加入;你确定现在要离开会议吗?',
106
106
  fmt_aside_status_connecting: '连接中...',
@@ -180,8 +180,8 @@ var zhCn = exports.zhCn = {
180
180
  fmt_toolbar_tips_microphone_close: '麦克风关闭',
181
181
  fmt_toolbar_tips_camera_open: '摄像头开启',
182
182
  fmt_toolbar_tips_camera_close: '摄像头关闭',
183
- fmt_toolbar_tips_host_forbid_open_mic: '主持人禁止开启麦克风',
184
- fmt_toolbar_tips_host_forbid_open_camera: '主持人禁止开启摄像头',
183
+ fmt_toolbar_tips_host_forbid_open_mic: '主持人不允许解除静音',
184
+ fmt_toolbar_tips_host_forbid_open_camera: '主持人不允许开启视频',
185
185
  fmt_toolbar_details_info_locked: '(锁定)',
186
186
  fmt_toolbar_details_room_locked: '会议锁定中',
187
187
  fmt_toolbar_details_room_locked_tip: '任何参会者不能进会',
@@ -195,7 +195,8 @@ var zhCn = exports.zhCn = {
195
195
  fmt_toolbar_tips_leave_room_end_cancel: '暂时不结束会议',
196
196
  fmt_toolbar_tips_leave_host_select_submit_tips: '请指定新的主持人',
197
197
  fmt_toolbar_leave_confirm_dialog_kick_title: '离开会议',
198
- fmt_toolbar_tips_leave_confirm_dialog_kick_info: '你已被从会议中移出,点击按钮离开会议',
198
+ fmt_toolbar_tips_leave_confirm_dialog_kick_info: '你已被主持人移出会议',
199
+ fmt_toolbar_tips_leave_confirm_dialog_kick_info_content: '确定将{reason1}移出会议?',
199
200
  fmt_toolbar_leave_confirm_dialog_submit: '知道了',
200
201
  fmt_toolbar_tips_leave_confirm_dialog_end_title: '会议已结束',
201
202
  fmt_toolbar_tips_leave_confirm_dialog_end_info: '会议已结束,请点击按钮离开会议。',
@@ -213,7 +214,7 @@ var zhCn = exports.zhCn = {
213
214
  fmt_actionbar_button_continue: '继续',
214
215
  fmt_actionbar_option_connectaudio: '连接语音',
215
216
  fmt_actionbar_label_dialsip: '拨打h.323/sip会议室系统',
216
- fmt_actionbar_tips_hidenonvideo: '你开启了‘隐藏非视频窗口功能’,固定视窗无法生效',
217
+ fmt_actionbar_tips_hidenonvideo: '你开启了‘隐藏非视频窗口功能’,固定视窗无法生效(用fmt_actionbar_tips_hidenonvideo)',
217
218
  fmt_driver_installation_v_sound_card: '音频驱动已安装完毕,将在重启灵动会议后生效',
218
219
  fmt_camera_popup_label_restricted: '摄像头权限受限制',
219
220
  fmt_camera_popup_label_system_change: '请到系统设置中修改摄像头权限',
@@ -247,7 +248,8 @@ var zhCn = exports.zhCn = {
247
248
  fmt_broadcast_livestream_tips_hand_over_pc_to_mobile: '新主持人正在使用移动端参会,暂不支持直播功能,直播已暂停',
248
249
  fmt_broadcast_livestream_tips_hand_over_mobile: '您正在使用移动端参会,暂不支持直播功能,直播已暂停',
249
250
  fmt_broadcast_livestream_label_stop_pc_only: '只能在电脑端停止直播,但你可复制直播链接给他人',
250
- //****************** 设备检测&管理 ******************
251
+ fmt_broadcast_livestream_button_hide: '隐藏',
252
+ fmt_broadcast_livestream_button_show: '显示',
251
253
  fmt_device_label_audio_mute: '静音',
252
254
  fmt_device_label_audio_unmute: '解除静音',
253
255
  fmt_device_label_video_start: '开启摄像头',
@@ -279,7 +281,6 @@ var zhCn = exports.zhCn = {
279
281
  fmt_status_label_saysomething: '说点什么',
280
282
  fmt_status_label_stoprecord: '停止录制',
281
283
  fmt_status_label_rotation: '反转镜头',
282
- //****************** 入会检测 ******************
283
284
  fmt_sip_button_unmute: '申请解除静音',
284
285
  fmt_sip_button_opencamera: '请求开启摄像头',
285
286
  fmt_sip_button_topup: '置顶',
@@ -338,15 +339,12 @@ var zhCn = exports.zhCn = {
338
339
  fmt_uimanager_option_Selfieview: '我看自己',
339
340
  fmt_uimanager_tips_urmuted: '主持人已将你静音',
340
341
  fmt_uimanager_tips_urturnedoff: '您已经被主持人关闭摄像头',
341
- fmt_uimanager_tips_norightsvideo: '你无权限开启视频',
342
- fmt_uimanager_tips_norightsaudio: '你无权限开启音频',
343
342
  fmt_uimanager_tips_inviteturnon: '主持人邀请你打开摄像头',
344
- fmt_uimanager_tips_Remove: '移除{reason2}吗',
343
+ fmt_uimanager_tips_Remove: '移出{reason2}吗',
345
344
  fmt_uimanager_tips_designedas: '是否将{reason1}设为会议的 {reason2}?',
346
345
  fmt_uimanager_tips_userleaft: '用户已离会',
347
346
  fmt_uimanager_labels_Setas: '设为{reason1}',
348
347
  fmt_uimanager_tips_allmuted: '你已开启了全体静音',
349
- fmt_uimanager_tips_meetinglocked: '你已锁定会议,其它任何人都无法加入',
350
348
  fmt_uimanager_tips_meetingunlocked: '你已解锁会议,新参会者可以加入',
351
349
  fmt_uimanager_labels_designate: '你被设为',
352
350
  fmt_uimanager_labels_Becoming: '{reason2} 成为 {reason1}',
@@ -363,7 +361,7 @@ var zhCn = exports.zhCn = {
363
361
  fmt_uimanager_option_Movebottom: '移动到底部',
364
362
  fmt_uimanager_option_Movetop: '移动到顶部',
365
363
  fmt_uimanager_labels_Application: '应用',
366
- fmt_uimanager_tips_ilock: '主持人(我) 锁定了会议,其他人不可入会',
364
+ fmt_uimanager_tips_ilock: '主持人锁定了会议,其他人不可入会',
367
365
  fmt_uimanager_button_close: '关闭',
368
366
  fmt_uimanager_option_popwindow: '弹出独立窗口',
369
367
  fmt_uimanager_option_mergeview: '合并到视图右侧',
@@ -374,7 +372,6 @@ var zhCn = exports.zhCn = {
374
372
  fmt_uimanager_window_un_pin: '取消固定',
375
373
  fmt_uimanager_window_pin_success: '画面已锁定,点击右下角取消锁定',
376
374
  fmt_uimanager_window_un_pin_success: '画面已解除锁定',
377
- fmt_uimanager_window_pin_error_hide_mine: '你开启了“隐藏我的视频”功能,固定视窗无法生效',
378
375
  fmt_uimanager_window_pin_error_hide_no_video: '你开启了“隐藏非视频参会者”功能,固定视窗无法生效',
379
376
  fmt_uimanager_follow_pc: '模拟跟随主持人的电脑视图',
380
377
  fmt_chat_label_chat: '聊天',
@@ -506,7 +503,6 @@ var zhCn = exports.zhCn = {
506
503
  fmt_screenshare_tips_hostprohibitssharing: '主持人禁止屏幕共享',
507
504
  fmt_screenshare_tips_faild_reselect: '屏幕共享失败, 请重新选择窗口',
508
505
  fmt_screenshare_tips_faild_screenselect: '屏幕共享失败, 请重新选择要共享的屏幕',
509
- fmt_screenshare_tips_faild_nopermission: '屏幕共享失败,屏幕共享权限已经被主持人收回',
510
506
  fmt_screenshare_tips_faild_restrict: '屏幕共享受限',
511
507
  fmt_screenshare_tips_faild_alreadysharing: '已经有人在进行屏幕分享,您暂时不能操作。',
512
508
  fmt_screenshare_options_allowshare: '允许灵动会议共享屏幕',
@@ -515,7 +511,6 @@ var zhCn = exports.zhCn = {
515
511
  fmt_screenshare_options_enableedit: '启用白板编辑',
516
512
  fmt_actionbar_screenshare_option_selectcontent: '选择共享内容',
517
513
  fmt_actionbar_screenshare_labels_others: '他人',
518
- fmt_actionbar_screenshare_tips_restrictshare: '会议管理员限制屏幕共享功能',
519
514
  fmt_modules_labels_sharing: '你正在共享',
520
515
  fmt_share_tips_othsersharing: '有其他参会者正在共享',
521
516
  fmt_share_tips_stopothersharing: '现在发起共享,将停止{reason1}的共享,是否继续?',
@@ -543,7 +538,6 @@ var zhCn = exports.zhCn = {
543
538
  fmt_screenshare_stop_share_board: '停止共享白板',
544
539
  fmt_screenshare_stop_share_screen: '停止共享屏幕',
545
540
  fmt_screenshare_no_permission_open_board: '无打开白板权限',
546
- fmt_screenshare_administrator_disables_share_screen_board: '会议管理员禁用共享屏幕或白板',
547
541
  fmt_screenshare_no_permission_close_board: '无关闭白板权限',
548
542
  fmt_screenshare_clash_board_remind_title: '有其他参会者正在共享白板',
549
543
  fmt_screenshare_clash_board_remind_content: '会议中的云白板,仅支持一个人发起。',
@@ -552,7 +546,7 @@ var zhCn = exports.zhCn = {
552
546
  fmt_screenshare_clash_screen_share_remind_content_stop_board: '现在发起共享,将停止{reason1}的白板共享,是否继续?',
553
547
  fmt_screenshare_opposite_side: '对方',
554
548
  fmt_screenshare_continue_share: '继续发起共享',
555
- fmt_screenshare_cohost_can_not_share_remind: '安全设置受限,只有主持和联席主持人可屏幕共享。',
549
+ fmt_screenshare_cohost_can_not_share_remind: '共享失败,当前只允许主持人发起共享',
556
550
  fmt_screenshare_pop_more: '多选',
557
551
  fmt_screenshare_room_new_screen_share: '{reason1}正在共享屏幕...',
558
552
  fmt_screenshare_room_speaker_spotlight_username: '正在说话:{reason1}',
@@ -685,28 +679,19 @@ var zhCn = exports.zhCn = {
685
679
  fmt_meetinginfo_duration_1: '%1$d分钟',
686
680
  fmt_meetinginfo_duration_2: '%1$d小时%2$d分钟',
687
681
  fmt_meetinginfo_duration_2_no_min: '%1$d小时',
688
- //标签
689
682
  fmt_information_label_lockmeeting: '会议锁定',
690
- //提示
691
683
  fmt_information_tips_lockedbyhost: '{reason1}锁定了会议,其他人不可入会',
692
- //提示
693
684
  fmt_information_tips_copysuccess: '复制成功(?)',
694
- //提示
695
685
  fmt_information_tips_copyfailed: '复制失败(?)',
696
- //标签
697
686
  fmt_information_label_sharemeetingnumber: '分享会议号或邀请链接',
698
- //提示
699
687
  fmt_additional_tips_invitationfailed: '邀请链接复制失败',
700
- //提示
701
688
  fmt_additional_tips_invitation: '邀请链接已复制到剪贴板',
702
689
  fmt_sharing_button_copydetailed: '复制全部信息',
703
690
  fmt_sharing_label_invitationlink: '邀请链接',
704
691
  fmt_sharing_tips_copyto_clipboard: '邀请信息已复制到剪贴板',
705
692
  fmt_sharing_tips_copyfull_failed: '邀请信息复制失败 ',
706
693
  fmt_sharing_label_invitationdetailed: '{reason1} 邀请你加入会议,会议主题:{reason2},会议时间:{reason3},会议链接:{reason4}',
707
- //通知
708
694
  fmt_information_tips_meeting_inprogress: '会议进行中',
709
- //通知
710
695
  fmt_information_tips_click_return_meeting: '点击返回会议界面',
711
696
  fmt_information_label_s_fast_meeting: '的快速会议',
712
697
  fmt_networkstatus_window_title: '网络连接',
@@ -725,7 +710,7 @@ var zhCn = exports.zhCn = {
725
710
  fmt_networkstatus_down_loss: '下行丢包率',
726
711
  fmt_networkstatus_up_loss: '上行丢包率',
727
712
  fmt_security_options_restract: '收回主持人',
728
- fmt_security_options_removemultiple: '一键移除多个参会者',
713
+ fmt_security_options_removemultiple: '一键移出多个参会者',
729
714
  fmt_security_options_openvideo: '开启视频',
730
715
  fmt_security_options_stopvideo: '关闭视频',
731
716
  fmt_security_options_openaudio: '开启音频',
@@ -740,7 +725,7 @@ var zhCn = exports.zhCn = {
740
725
  fmt_security_waiting_room: '等候室',
741
726
  fmt_security_start_video: '开启视频',
742
727
  fmt_security_pause_all: '暂停参会者活动',
743
- fmt_security_remove_all: '移除参会者',
728
+ fmt_security_remove_all: '移出参会者',
744
729
  fmt_security_tips_lock_meeting_on: '你已锁定会议,其它任何人都无法加入',
745
730
  fmt_security_tips_lock_meeting_off: '你已解锁会议,新参会者可以加入',
746
731
  fmt_security_tips_waiting_room_on: '你已启用等候室',
@@ -751,8 +736,6 @@ var zhCn = exports.zhCn = {
751
736
  fmt_security_tips_share_screen_off: '你已启用了参会者的屏幕共享',
752
737
  fmt_security_tips_start_audio_on: '您已允许自我解除静音',
753
738
  fmt_security_tips_start_audio_off: '您已禁止自我解除静音',
754
- fmt_security_tips_host_start_audio_on: '{reason1}已允许自我解除静音',
755
- fmt_security_tips_host_start_audio_off: '{reason1}已取消自我解除静音',
756
739
  fmt_security_tips_start_video_on: '您已允许开启视频',
757
740
  fmt_security_tips_start_video_off: '您已禁止开启视频',
758
741
  fmt_security_tips_host_start_video_on: '{reason1}已允许开启视频',
@@ -767,7 +750,6 @@ var zhCn = exports.zhCn = {
767
750
  fmt_failure_popup_label_crash_tips: '应用遇到崩溃问题,请关闭应用重试',
768
751
  fmt_failure_popup_button_close_app: '关闭应用',
769
752
  fmt_failure_popup_button_refresh: '刷新',
770
- //****************** 设置 ******************
771
753
  fmt_settings_option_setting: '设置',
772
754
  fmt_settings_option_general: '常规设置',
773
755
  fmt_settings_option_about_us: '关于我们',
@@ -902,20 +884,19 @@ var zhCn = exports.zhCn = {
902
884
  fmt_internalsetting_room_window_switched: '切换为{reason1}',
903
885
  fmt_internalsetting_labels_Network_type: '网络类型',
904
886
  fmt_internalsetting_labels_resolving_power: '分辨率',
905
- //****************** 设置提示部分 ******************
906
887
  fmt_settings_labels_sidebar: '侧边栏',
907
888
  fmt_settings_labels_fold: '折叠',
908
889
  fmt_settings_labels_theme: '主题',
909
- fmt_settings_tips_sharingprohibited: '{reason1}禁止共享,可联系会议管理员开启',
910
- fmt_settings_tips_videoenabled: '{reason1}已允许开启视频',
911
- fmt_settings_tips_disabledvideo: '{reason1}已禁止开启视频',
912
- fmt_settings_tips_allowedScreensharing: '{reason1}已允许屏幕共享',
913
- fmt_settings_tips_disabledScreensharing: '{reason1}已禁止屏幕共享',
914
- fmt_settings_tips_allowedchat: '{reason1}已允许聊天',
915
- fmt_settings_tips_banedchat: '{reason1}已禁止聊天',
916
- fmt_settings_tips_allowedselfunmuting: '{reason1}已允许自我解除静音',
917
- fmt_settings_tips_disabledselfunmuting: '{reason1}已禁止自我解除静音',
918
- fmt_settings_tips_muteallwhilejoin: '{reason1}已设置所有参会者加入会议时静音',
890
+ fmt_settings_tips_sharingprohibited: '主持人禁止共享,可联系会议管理员开启',
891
+ fmt_settings_tips_videoenabled: '主持人已允许开启视频',
892
+ fmt_settings_tips_disabledvideo: '主持人已禁止开启视频',
893
+ fmt_settings_tips_allowedScreensharing: '主持人已允许屏幕共享',
894
+ fmt_settings_tips_disabledScreensharing: '主持人已禁止屏幕共享',
895
+ fmt_settings_tips_allowedchat: '主持人已允许聊天',
896
+ fmt_settings_tips_banedchat: '主持人已禁止聊天',
897
+ fmt_settings_tips_allowedselfunmuting: '主持人已允许自我解除静音',
898
+ fmt_settings_tips_disabledselfunmuting: '主持人不允许自我解除静音',
899
+ fmt_settings_tips_muteallwhilejoin: '主持人已设置所有参会者加入会议时静音',
919
900
  fmt_settings_labels_you: '你',
920
901
  fmt_settings_tips_Blockallchat: "'全部禁言'",
921
902
  fmt_settings_tips_groupchatonly: "'仅限群组聊天'",
@@ -938,7 +919,6 @@ var zhCn = exports.zhCn = {
938
919
  fmt_settings_popup_label_link_audio_to_hear_others: '为了听见其他用户的声音,请使用手机音频加入会议',
939
920
  fmt_settings_popup_label_select_audio: '选择音频',
940
921
  fmt_settings_popup_label_audio_not_connect_click_select: '未接入声音,请点击选择',
941
- //****************** 直播 ******************
942
922
  fmt_live_label_thirdplatform: '直播至第三方平台',
943
923
  fmt_live_label_videostreamingurl: '视频流地址',
944
924
  fmt_live_inputtips_videostreamingurl: '请输入视频流URL',
@@ -956,7 +936,6 @@ var zhCn = exports.zhCn = {
956
936
  fmt_live_label_copylink: '复制直播链接',
957
937
  fmt_tips_button_Stopsteaming: '停止直播',
958
938
  fmt_live_label_push_platform: '将会议推送到指定的直播平台',
959
- //****************** 录制 ******************
960
939
  fmt_record_button_Cloudrecording: '云录制',
961
940
  fmt_record_button_Localrecording: '本地录制',
962
941
  fmt_record_button_pauserecording: '暂停',
@@ -996,6 +975,8 @@ var zhCn = exports.zhCn = {
996
975
  fmt_record_record_started: '云录制已开始',
997
976
  fmt_record_record_stop_ask: '确定现在停止录制吗?',
998
977
  fmt_record_record_stop_confirm: '确定停止录制',
978
+ fmt_record_toast_record_paused: '云录制已暂停',
979
+ fmt_record_toast_record_resumed: '云录制已恢复',
999
980
  fmt_pstn_label_accessmethod: '选择音频接入方式',
1000
981
  fmt_pstn_options_PCaudioconnet: '连接到电脑音频',
1001
982
  fmt_pstn_options_phoneaudioconnet: '连接到电话音频',
@@ -1111,7 +1092,7 @@ var zhCn = exports.zhCn = {
1111
1092
  fmt_waitingroom_setting_popup_close_waitingroom: '关闭等候室',
1112
1093
  fmt_waitingroom_setting_tips_choose: '{reason1}名成员仍在等候室内,将他们移出会议室还是准入到会议室?',
1113
1094
  fmt_waitingroom_setting_button_admit_all: '准入全部等候室成员',
1114
- fmt_waitingroom_setting_button_remove_all: '移除全部等候室成员',
1095
+ fmt_waitingroom_setting_button_remove_all: '移出全部等候室成员',
1115
1096
  fmt_waitingroom_setting_button_cancel: '取消',
1116
1097
  fmt_waitingroom_sidebar_button_move_to_waitingroom: '移出到等候室',
1117
1098
  fmt_waitingroom_sidebar_label_waiting: '等候室{reason1}人',
@@ -1121,13 +1102,13 @@ var zhCn = exports.zhCn = {
1121
1102
  fmt_waitingroom_sidebar_button_more: '更多',
1122
1103
  fmt_waitingroom_sidebar_button_private: '私聊',
1123
1104
  fmt_waitingroom_sidebar_button_remove: '移出',
1124
- fmt_waitingroom_sidebar_button_removeall: '全部移除',
1105
+ fmt_waitingroom_sidebar_button_removeall: '全部移出',
1125
1106
  fmt_waitingroom_sidebar_button_admitall: '全部准入',
1126
- fmt_waitingroom_sidebar_popup_removeall: '移除等候成员',
1127
- fmt_waitingroom_sidebar_popup_label_remove: '将{reason1}从等候室里移除?',
1107
+ fmt_waitingroom_sidebar_popup_removeall: '移出等候成员',
1108
+ fmt_waitingroom_sidebar_popup_label_remove: '将{reason1}从等候室里移出?',
1128
1109
  fmt_waitingroom_sidebar_popup_option_notagain: '不允许用户再次加入该会议',
1129
1110
  fmt_waitingroom_sidebar_popup_button_cancel: '取消',
1130
- fmt_waitingroom_sidebar_popup_button_remove: '移除',
1111
+ fmt_waitingroom_sidebar_popup_button_remove: '移出',
1131
1112
  fmt_waitingroom_sidebar_popup_popup_admit: '全部准入等候成员',
1132
1113
  fmt_waitingroom_sidebar_popup_label_admitall: '是否允许等候室所有成员加入会议',
1133
1114
  fmt_waitingroom_sidebar_popup_button_admitall: '全部准入',
@@ -1142,7 +1123,6 @@ var zhCn = exports.zhCn = {
1142
1123
  fmt_waitingroom_mainwindow_popup_button_view_detailed: '查看等候室',
1143
1124
  fmt_waitingroom_mainwindow_popup_button_not_remind: '不再提醒',
1144
1125
  fmt_waitingroom_attendie_popup_label_Leave: '离开会议',
1145
- fmt_waitingroom_attendie_popup_label_click_leave: '你被请出这个会议,点击按钮后将退出会议',
1146
1126
  fmt_waitingroom_attendie_overview_label_waitingroom: '等候室',
1147
1127
  fmt_waitingroom_attendie_overview_label_wait_moment: '请稍等,主持人即将邀请您入会',
1148
1128
  fmt_waitingroom_attendie_overview_label_move_in_by_host: '你被移入等候室',
@@ -1170,17 +1150,18 @@ var zhCn = exports.zhCn = {
1170
1150
  fmt_waitingroom_mobile_memberlist_popup_moveout: '移出',
1171
1151
  fmt_waitingroom_mobile_memberlist_button_admit: '准入',
1172
1152
  fmt_waitingroom_mobile_memberlist_button_privatechat: '私聊',
1173
- fmt_waitingroom_mobile_memberlist_popup_label_remove: '移除等候成员',
1174
- fmt_waitingroom_mobile_memberlist_popup_label_sure_remove: '将{reason1}从等候室移除?',
1153
+ fmt_waitingroom_mobile_memberlist_popup_label_remove: '移出等候成员',
1154
+ fmt_waitingroom_mobile_memberlist_popup_label_sure_remove: '将{reason1}从等候室移出?',
1175
1155
  fmt_waitingroom_mobile_memberlist_options_not_allowed: '不允许用户再次加入该会议',
1176
1156
  fmt_waitingroom_mobile_memberlist_button_cancel: '取消',
1177
- fmt_waitingroom_mobile_memberlist_button_remove: '移除',
1178
- fmt_waitingroom_mobile_memberlist_popup_label_remove_all: '移除全体等候室成员?',
1179
- fmt_waitingroom_mobile_memberlist_popup_label_sure_to_remove_all: '将等候室的所有成员都移除?',
1180
- fmt_waitingroom_mobile_memberlist_button_remove_all: '全部移除',
1157
+ fmt_waitingroom_mobile_memberlist_button_remove: '移出',
1158
+ fmt_waitingroom_mobile_memberlist_popup_label_remove_all: '移出全体等候室成员?',
1159
+ fmt_waitingroom_mobile_memberlist_popup_label_sure_to_remove_all: '将等候室的所有成员都移出?',
1160
+ fmt_waitingroom_mobile_memberlist_button_remove_all: '全部移出',
1181
1161
  fmt_waitingroom_mobile_memberlist_popup_label_admit_all: '全部准入等候成员',
1182
1162
  fmt_waitingroom_mobile_memberlist_popup_label_sure_to_admit_all: '是否允许等候室所有成员加入会议',
1183
- fmt_waitingroom_mobile_memberlist_tips_all_removed: '已全部移除',
1163
+ fmt_waitingroom_mobile_memberlist_tips_all_removed: '已全部移出',
1164
+ fmt_waitingroom_mobile_memberlist_tips_removed: '已移出',
1184
1165
  fmt_waitingroom_mobile_memberlist_tips_all_amitted: '已全部准入会中',
1185
1166
  fmt_waitingroom_mobile_memberlist_label_nocontent: '暂无消息',
1186
1167
  fmt_waitingroom_mobile_chat_label_send_to: '发送给',
@@ -1247,7 +1228,6 @@ var zhCn = exports.zhCn = {
1247
1228
  fmt_ai_subtitles_setting_label_listening_no_content: '暂无内容',
1248
1229
  fmt_ai_transcriptions_sidebar_button_stop_translation: '停止转写',
1249
1230
  fmt_ai_transcriptions_sidebar_button_start_translation: '开始转写',
1250
- //****************** AI会议纪要 ******************
1251
1231
  fmt_ai_summary_create_option_create_summary: '开会的同时,创建会议纪要',
1252
1232
  fmt_ai_summary_create_labels_meeting_list: '会议列表',
1253
1233
  fmt_ai_summary_create_labels_valid_records: '只显示最近2天的会议记录',
@@ -1271,7 +1251,6 @@ var zhCn = exports.zhCn = {
1271
1251
  fmt_ai_summary_setting_option_meeting_assistant: '会议助手',
1272
1252
  fmt_ai_summary_setting_option_teacher: '老师',
1273
1253
  fmt_ai_summary_setting_option_sales_manager: '销售员',
1274
- //****************** 会前设置页 ******************
1275
1254
  fmt_premeeting_setting_mobile_label_settings: '设置',
1276
1255
  fmt_premeeting_setting_mobile_label_host_settings: '会议管理员入会设置',
1277
1256
  fmt_premeeting_setting_mobile_swtich_mute_when_join: '成员入会时静音',
@@ -1324,7 +1303,6 @@ var zhCn = exports.zhCn = {
1324
1303
  fmt_premeeting_setting_mobile_popup_button_cancel: '取消',
1325
1304
  fmt_premeeting_setting_mobile_popup_button_log_out: '退出当前登录账号',
1326
1305
  fmt_premeeting_setting_mobile_button_log_out_confirm: '确定退出',
1327
- //****************** 首页 ******************
1328
1306
  fmt_premeeting_joinroom_mobile_button_upandin: '注册登录',
1329
1307
  fmt_premeeting_joinroom_mobile_label_flexible_meeting: '灵动会议',
1330
1308
  fmt_premeeting_joinroom_mobile_label_enterprise_account: '企业账号',
@@ -1342,7 +1320,6 @@ var zhCn = exports.zhCn = {
1342
1320
  fmt_premeeting_joinroom_mobile_button_confirm_exit: '确定退出',
1343
1321
  fmt_premeeting_joinroom_mobile_button_cancel: '取消',
1344
1322
  fmt_premeeting_joinroom_mobile_label_rename: '重命名',
1345
- //****************** 水印(移动) ******************
1346
1323
  fmt_security_setting_mobile_label_watermark: '水印',
1347
1324
  fmt_security_setting_mobile_label_watermark_style: '水印样式',
1348
1325
  fmt_security_setting_mobile_option_watermark_style_single: '单行',
@@ -1354,7 +1331,6 @@ var zhCn = exports.zhCn = {
1354
1331
  fmt_security_setting_mobile_label_rename: '重命名',
1355
1332
  fmt_security_setting_mobile_label_unmute: '解除禁言',
1356
1333
  fmt_security_setting_mobile_label_start_video: '开启视频',
1357
- fmt_security_setting_mobile_popup_toast_lock_meeting: '你已锁定会议,其他任何人无法加入',
1358
1334
  fmt_security_setting_mobile_popup_toast_unlock_meeting: '你已解锁会议,新参会者可加入',
1359
1335
  fmt_security_setting_mobile_chat_popup_label_participants: '允许与会者聊天',
1360
1336
  fmt_security_setting_mobile_chat_popup_option_no_one: '无',
@@ -1362,12 +1338,10 @@ var zhCn = exports.zhCn = {
1362
1338
  fmt_security_setting_mobile_chat_popup_option_all: '所有人',
1363
1339
  fmt_security_setting_mobile_chat_popup_option_all_chat: '所有公屏聊天和私聊',
1364
1340
  fmt_security_mobile_mainwindow_label_watermark: '{reason1}{reason1}',
1365
- //****************** 安全(移动) ******************
1366
1341
  fmt_security_setting_mobile_label_security: '安全',
1367
1342
  fmt_security_setting_mobile_label_security_label: 'SECURITY安全',
1368
1343
  fmt_security_setting_mobile_label_lock_meeting: '锁定会议',
1369
1344
  fmt_security_setting_mobile_label_waiting_room: '等候室',
1370
- //****************** 安全 ******************
1371
1345
  fmt_security_setting_label_security_setting: '会议安全设置',
1372
1346
  fmt_security_setting_label_lock_meeting: '锁定会议室',
1373
1347
  fmt_security_setting_label_waiting_room: '无权限的参会者入会时先进会议室',
@@ -1378,9 +1352,9 @@ var zhCn = exports.zhCn = {
1378
1352
  fmt_security_setting_label_chat_with: '聊天',
1379
1353
  fmt_security_setting_label_share_screen: '共享屏幕',
1380
1354
  fmt_security_setting_label_rename: '自我改名',
1381
- fmt_security_setting_label_unmute: '自我解除禁言',
1355
+ fmt_security_setting_label_unmute: '自我解除静音',
1382
1356
  fmt_security_setting_label_start_video: '开启视频',
1383
- fmt_security_setting_label_remove_participant: '移除参会者…',
1357
+ fmt_security_setting_label_remove_participant: '移出参会者…',
1384
1358
  fmt_security_setting_label_pause_participant: '暂停参会者活动…',
1385
1359
  fmt_security_setting_popup_toast_join_waiting_room: '无权限的参会者入会时先进会议室',
1386
1360
  fmt_security_setting_popup_toast_facilitator_watermark: '主持人开启了屏幕水印',
@@ -1390,7 +1364,6 @@ var zhCn = exports.zhCn = {
1390
1364
  fmt_security_mainwindow_label_watermark: '{reason1}{reason1}',
1391
1365
  fmt_security_mainwindow_label_toast_unmute_not_allow: '主持人/联席主持人不允许自主解除静音',
1392
1366
  fmt_security_mainwindow_label_toast_name_change_not_allow: '主持人/联席主持人不允许自我改名',
1393
- //****************** 设置 ******************
1394
1367
  fmt_premeeting_setting_label_settings: '设置',
1395
1368
  fmt_premeeting_setting_label_normal: '常规',
1396
1369
  fmt_premeeting_setting_label_voice_motivation: '语音激励',
@@ -1424,7 +1397,7 @@ var zhCn = exports.zhCn = {
1424
1397
  fmt_premeeting_setting_label_mute_the_microphone_joinning_meeting: '加入会议时将麦克风静音',
1425
1398
  fmt_premeeting_setting_label_speaker: '扬声器',
1426
1399
  fmt_premeeting_setting_button_test_speaker: '检测扬声器',
1427
- fmt_premeeting_setting_label_click_test_speaker: '点击测试扬声器以确定你可以听到他人的声+E1377:E1431音',
1400
+ fmt_premeeting_setting_label_click_test_speaker: '点击测试扬声器以确定你可以听到他人的声音',
1428
1401
  fmt_premeeting_setting_button_pause: '暂停播放',
1429
1402
  fmt_premeeting_setting_label_change_speaker: '如果你无法听到测试音,请更换扬声器',
1430
1403
  fmt_premeeting_setting_label_output_level: '输出级别',
@@ -1432,7 +1405,7 @@ var zhCn = exports.zhCn = {
1432
1405
  fmt_premeeting_setting_label_automatically_adjust_volume: '自动调整{xxxxx}音量',
1433
1406
  fmt_premeeting_setting_label_microphone: '麦克风',
1434
1407
  fmt_premeeting_setting_button_test_microphone: '检测麦克风',
1435
- fmt_premeeting_setting_label_speak_into_your_microphone: '请对着你的麦克风说话,如果你无法听到自己的声音,请更换麦克风',
1408
+ fmt_premeeting_setting_label_speak_into_your_microphone: '点击测试麦克风,确保其他参会人员可以听到您的声音',
1436
1409
  fmt_premeeting_setting_button_recording: '录制中',
1437
1410
  fmt_premeeting_setting_label_change_the_microphone: '如果你无法听到测试音,请更换麦克风',
1438
1411
  fmt_premeeting_setting_label_input_level: '输入级别',
@@ -1490,7 +1463,6 @@ var zhCn = exports.zhCn = {
1490
1463
  fmt_meeting_mainwidow_version_popup_label_new_version_ready: '新版本已就绪',
1491
1464
  fmt_meeting_mainwindow_version_popup_label_experience_after_restarting: '重启应用后可体验({reason1})',
1492
1465
  fmt_meeting_mainwindow_version_popup_button_restart_application: '重启应用',
1493
- //****************** 同声传译-PC ******************
1494
1466
  fmt_interpretation_setting_controller_option_simultaneous_interpretation: '同声传译',
1495
1467
  fmt_interpretation_setting_controller_toast_turn_on_simultaneous_interpretation: '开启同声传译',
1496
1468
  fmt_interpretation_setting_controller_toast_turn_off_simultaneous_interpretation: '关闭同声传译',
@@ -1549,7 +1521,6 @@ var zhCn = exports.zhCn = {
1549
1521
  fmt_interpretation_mainwindow_toast_label_turn_off_interpret: '你已关闭了同声传译功能',
1550
1522
  fmt_interpretation_interpreter_popup_special_host: '联席',
1551
1523
  fmt_interpretation_interpreter_popup_special_co_host: '主持',
1552
- //****************** 同声传译-mobile ******************
1553
1524
  fmt_interpretation_mobile_setting_controller_option_interpret: '同声传译',
1554
1525
  fmt_interpretation_mobile_setting_controller_label_interpret: '同声传译',
1555
1526
  fmt_interpretation_mobile_setting_controller_toast_label_setting_by_one: '{reason1}可能正在设置该功能',
@@ -1593,7 +1564,6 @@ var zhCn = exports.zhCn = {
1593
1564
  fmt_interpretation_mobile_controller_popup_button_interpret_setting: '同声传译设置',
1594
1565
  fmt_interpretation_mobile_attendnees_toast_label_channel_close: '您选择的同声传译频道被关闭,已为您切换到原声频道',
1595
1566
  fmt_interpretation_mobile_meeting_win_label_translator: '翻译官',
1596
- //****************** 免密登陆 ******************
1597
1567
  fmt_meeting_creatpage_label_smart_meeting: '灵动会议',
1598
1568
  fmt_meeting_creatpage_label_fast_experience: '快速体验',
1599
1569
  fmt_meeting_creatpage_button_create_meeting: '创建会议',
@@ -1645,7 +1615,6 @@ var zhCn = exports.zhCn = {
1645
1615
  fmt_link_invitation_password: '会议密码:{reason1}',
1646
1616
  fmt_meeting_creatpage_toast_password_only_contain: '密码只能包含数字、字母和符号',
1647
1617
  fmt_meeting_creatpage_toast_password_only_six: '入会密码长度为6位',
1648
- //****************** 翻译语言 ******************
1649
1618
  fmt_translate_language_chinese: '中文',
1650
1619
  fmt_translate_language_english: '英文',
1651
1620
  fmt_translate_language_japanese: '日语',
@@ -1680,9 +1649,6 @@ var zhCn = exports.zhCn = {
1680
1649
  fmt_translate_language_vietnamese_mini: '越',
1681
1650
  fmt_translate_language_malay_mini: 'MS',
1682
1651
  fmt_translate_language_turkish_mini: 'TR',
1683
- //****************** 分组 ******************
1684
-
1685
- // web
1686
1652
  fmt_group_mainwindow_sidebar_button_group_discuss: '分组讨论',
1687
1653
  fmt_group_mainwindow_sidebar_label_group_discuss_on: '开启分组',
1688
1654
  fmt_group_mainwindow_sidebar_label_group_discuss_off: '关闭分组',
@@ -1715,7 +1681,7 @@ var zhCn = exports.zhCn = {
1715
1681
  fmt_group_popup_creat_next_button_re_creat: '重新创建',
1716
1682
  fmt_group_popup_creat_next_button_start_group: '开始讨论',
1717
1683
  fmt_group_popup_creat_next_label_breakroom_limitation: '添加讨论组(上限 50 个)',
1718
- fmt_group_popup_creat_next_namebar_button_remove: '移除',
1684
+ fmt_group_popup_creat_next_namebar_button_remove: '移出',
1719
1685
  fmt_group_popup_creat_next_namebar_button_move_to: '移动至',
1720
1686
  fmt_group_popup_creat_next_namebar_popup_label_move_to: '移动至',
1721
1687
  fmt_group_popup_creat_next_recreat_label_recreat_caution: '重新创建会覆盖目前的分组',
@@ -1812,7 +1778,6 @@ var zhCn = exports.zhCn = {
1812
1778
  fmt_group_mainwindow_breakout_room_count_popup_button_back_main: '返回主会场',
1813
1779
  fmt_group_popup_creat_next_label_end_after_count: '所有分组讨论将在倒计时后自动结束',
1814
1780
  fmt_group_popup_creat_next_label_back_main_after_count_auto: '你将自动返回主会场',
1815
- //移动
1816
1781
  fmt_mobile_group_function_button_breakout_group: '分组',
1817
1782
  fmt_mobile_group_sidebar_button_leave_group: '离开分组',
1818
1783
  fmt_mobile_group_creat_label_creat_group: '创建分组',
@@ -1903,15 +1868,30 @@ var zhCn = exports.zhCn = {
1903
1868
  fmt_mobile_group_breakout_room_label_finishi_after_timer: '所有分组讨论将在倒计时后自动结束',
1904
1869
  fmt_mobile_group_breakout_room_label_back_main_auto: '你将返回自动主会场',
1905
1870
  fmt_mobile_group_breakout_room_button_leave_group: '离开讨论组',
1906
- //****************** h5 单补 ******************
1907
1871
  fmt_h_label_more_function: '更多功能',
1908
1872
  fmt_h_label_tempor_hide_screen_share: '在屏幕共享时,会暂时隐藏其它参会者',
1909
1873
  fmt_h_label_tempor_hide_white_board: '在白板共享时,会暂时隐藏其他参会者',
1910
1874
  fmt_h_tips_host_enabled_waiting_room: '管理员已开启等候室,暂时无法加入会议',
1911
1875
  fmt_h_tips_tap_to_play: '轻触进行播放',
1912
- //****************** 错误信息 ******************
1913
1876
  fmt_pc_room_not_exist_error: '房间不存在或密码错误',
1914
1877
  fmt_lock_error: '主持人锁定了会议,其他人不可入会',
1915
1878
  fmt_end_error: '会议已结束',
1916
- fmt_host_leave_error: '主持人不在会议中'
1879
+ fmt_host_leave_error: '主持人不在会议中',
1880
+ fmt_hostkey_window_title_reclaim_host: '收回主持人权限',
1881
+ fmt_hostkey_window_content_reclaim_host: '{reason1}为当前会议主持人,收回权限可能会中断主持人部份操作',
1882
+ fmt_hostkey_window_button_reclaim_host: '收回主持人权限',
1883
+ fmt_hostkey_window_button_remain_cohost: '保持联席主持人',
1884
+ fmt_hostkey_window_button_remain_attendees: '保持参会者',
1885
+ fmt_hostkey_meetingroom_toast_now_host: '你已成为主持人',
1886
+ fmt_hostkey_participant_button_reclaim_host: '收回主持人权限',
1887
+ fmt_hostkey_participant_button_claim_host: '成为主持人',
1888
+ fmt_hostkey_input_hostkey_title_enter_key: '输入密钥以获得主持人权限',
1889
+ fmt_hostkey_input_hostkey_text_hint_enter_key: '请输入主持人密钥',
1890
+ fmt_hostkey_input_hostkey_button_cancel: '取消',
1891
+ fmt_hostkey_input_hostkey_button_ok: '确定',
1892
+ fmt_hostkey_input_hostkey_tips_incorrect_key: '密钥错误',
1893
+ fmt_hostkey_meetingroom_toast_unable_to_claim_host: '会议已有主持人,无法通过密钥获取主持人权限',
1894
+ fmt_jbh_title_host_not_in_meeting: '会议未开始,等待主持人进入',
1895
+ fmt_jbh_title_host_in_meeting: '请稍等,主持人即将邀请您入会',
1896
+ fmt_jbh_title_meeting_topic: '会议主题'
1917
1897
  };