fcr-ui-scene 3.1.1 → 3.3.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 (372) hide show
  1. package/installer/icons/favicon.ico +0 -0
  2. package/installer/icons/favicon.png +0 -0
  3. package/installer/mac/entitlements.mac.plist +16 -0
  4. package/lib/base.d.ts +0 -1
  5. package/lib/base.js +16 -0
  6. package/lib/common/device-store.d.ts +4 -5
  7. package/lib/common/device-store.js +178 -86
  8. package/lib/common/device-stream-store.d.ts +3 -2
  9. package/lib/common/device-stream-store.js +94 -72
  10. package/lib/common/event-store.d.ts +20 -3
  11. package/lib/common/event-store.js +43 -5
  12. package/lib/common/security-store.d.ts +16 -16
  13. package/lib/common/security-store.js +278 -124
  14. package/lib/electron/app.js +13 -5
  15. package/lib/electron/bootstrap-dev.d.ts +1 -0
  16. package/lib/electron/bootstrap-dev.js +51 -0
  17. package/lib/electron/bootstrap-sdk.d.ts +1 -0
  18. package/lib/electron/bootstrap-sdk.js +56 -0
  19. package/lib/electron/bootstrap.d.ts +1 -0
  20. package/lib/electron/bootstrap.js +56 -0
  21. package/lib/electron/default-options.js +1 -1
  22. package/lib/electron/dev.d.ts +1 -0
  23. package/lib/electron/dev.js +51 -0
  24. package/lib/electron/injections.d.ts +3 -4
  25. package/lib/electron/injections.js +46 -33
  26. package/lib/electron/logger.d.ts +6 -0
  27. package/lib/electron/logger.js +66 -0
  28. package/lib/electron/main.js +15 -11
  29. package/lib/electron/plugins/meeting-state.d.ts +2 -0
  30. package/lib/electron/plugins/meeting-state.js +39 -0
  31. package/lib/electron/preload.js +2 -1
  32. package/lib/electron/tools.js +9 -0
  33. package/lib/electron/window.d.ts +1 -1
  34. package/lib/electron/window.js +14 -2
  35. package/lib/fragments/control-bar/context.d.ts +0 -1
  36. package/lib/fragments/control-bar/control-bar-store.d.ts +34 -1
  37. package/lib/fragments/control-bar/control-bar-store.js +394 -81
  38. package/lib/fragments/control-bar/device/index.js +12 -3
  39. package/lib/fragments/control-bar/index.css +15 -10
  40. package/lib/fragments/control-bar/index.js +19 -1
  41. package/lib/fragments/control-bar/meeting-details/meeting-detail.css +109 -0
  42. package/lib/fragments/control-bar/meeting-details/meeting-details-portal.d.ts +3 -0
  43. package/lib/fragments/control-bar/meeting-details/meeting-details-portal.js +60 -0
  44. package/lib/fragments/control-bar/meeting-details/meeting-details.d.ts +2 -0
  45. package/lib/fragments/control-bar/meeting-details/meeting-details.js +179 -0
  46. package/lib/fragments/control-bar/more-actions/index.css +53 -0
  47. package/lib/fragments/control-bar/more-actions/index.js +77 -37
  48. package/lib/fragments/control-bar/security-content/index.css +10 -0
  49. package/lib/fragments/control-bar/security-content/index.js +43 -18
  50. package/lib/fragments/control-bar/view.js +8 -2
  51. package/lib/fragments/live-streaming/context.d.ts +0 -1
  52. package/lib/fragments/live-streaming/store.js +27 -17
  53. package/lib/fragments/share-screen-selection/context.d.ts +0 -1
  54. package/lib/fragments/share-screen-selection/selection-store.d.ts +0 -1
  55. package/lib/fragments/share-screen-selection/selection-store.js +34 -33
  56. package/lib/fragments/share-screen-selection/view.js +7 -0
  57. package/lib/fragments/toolbar/components/color-picker/components/color.js +2 -0
  58. package/lib/fragments/toolbar/components/color-picker/components/panel.js +4 -0
  59. package/lib/fragments/toolbar/components/color-picker/components/picker.js +2 -0
  60. package/lib/fragments/toolbar/components/color-picker/index.js +5 -1
  61. package/lib/fragments/toolbar/components/color-picker.js +3 -1
  62. package/lib/fragments/toolbar/components/eraser-picker.js +4 -13
  63. package/lib/fragments/toolbar/components/extension-toolbar-item.js +5 -0
  64. package/lib/fragments/toolbar/components/extra-tool-picker.js +4 -0
  65. package/lib/fragments/toolbar/components/pen-picker.js +2 -0
  66. package/lib/fragments/toolbar/components/screen-capture-picker.js +2 -0
  67. package/lib/fragments/toolbar/components/shape-picker.js +2 -0
  68. package/lib/fragments/toolbar/hooks.d.ts +1 -1
  69. package/lib/fragments/toolbar/hooks.js +13 -8
  70. package/lib/fragments/toolbar/store.d.ts +4 -4
  71. package/lib/fragments/toolbar/store.js +20 -2
  72. package/lib/fragments/toolbar/view.js +2 -0
  73. package/lib/global.d.ts +1 -0
  74. package/lib/hooks/meeting-time.d.ts +2 -2
  75. package/lib/login-confirm-dialog.d.ts +12 -0
  76. package/lib/login-confirm-dialog.js +80 -0
  77. package/lib/modules/action-bar/action-bar-collapes-items.js +14 -5
  78. package/lib/modules/action-bar/chat/index.js +6 -6
  79. package/lib/modules/action-bar/context.d.ts +0 -1
  80. package/lib/modules/action-bar/device/index.css +7 -2
  81. package/lib/modules/action-bar/device/index.d.ts +2 -2
  82. package/lib/modules/action-bar/device/index.js +6 -4
  83. package/lib/modules/action-bar/index.css +63 -12
  84. package/lib/modules/action-bar/index.d.ts +3 -2
  85. package/lib/modules/action-bar/index.dev.js +8 -7
  86. package/lib/modules/action-bar/index.js +21 -0
  87. package/lib/modules/action-bar/item-placement.d.ts +1 -2
  88. package/lib/modules/action-bar/item.js +5 -0
  89. package/lib/modules/action-bar/leave/assign-host.d.ts +3 -1
  90. package/lib/modules/action-bar/leave/assign-host.js +7 -7
  91. package/lib/modules/action-bar/leave/index.js +35 -7
  92. package/lib/modules/action-bar/leave/leave-meeting.d.ts +11 -1
  93. package/lib/modules/action-bar/leave/leave-meeting.js +25 -16
  94. package/lib/modules/action-bar/more/poppover-content.d.ts +0 -1
  95. package/lib/modules/action-bar/more/poppover-content.js +14 -4
  96. package/lib/modules/action-bar/participants/index.css +12 -0
  97. package/lib/modules/action-bar/participants/index.js +21 -14
  98. package/lib/modules/action-bar/screen-share/index.js +5 -1
  99. package/lib/modules/action-bar/screen-share/submenu.js +17 -22
  100. package/lib/modules/action-bar/security/drop-menu.js +124 -14
  101. package/lib/modules/action-bar/security/index.js +1 -1
  102. package/lib/modules/action-bar/settings/index.js +1 -1
  103. package/lib/modules/action-bar/store.d.ts +45 -21
  104. package/lib/modules/action-bar/store.js +544 -134
  105. package/lib/modules/action-bar/view.js +65 -42
  106. package/lib/modules/audio-stream/index.js +12 -6
  107. package/lib/modules/chat/chat-bar/index.js +46 -27
  108. package/lib/modules/chat/chat-select/index.css +19 -4
  109. package/lib/modules/chat/chat-select/index.d.ts +0 -1
  110. package/lib/modules/chat/chat-select/index.js +29 -3
  111. package/lib/modules/chat/chat.d.ts +2 -3
  112. package/lib/modules/chat/chat.js +210 -107
  113. package/lib/modules/chat/contex.d.ts +0 -1
  114. package/lib/modules/chat/demo-wrapper.d.ts +0 -1
  115. package/lib/modules/chat/index.css +49 -0
  116. package/lib/modules/chat/index.d.ts +3 -3
  117. package/lib/modules/chat/index.dev.js +4 -4
  118. package/lib/modules/chat/index.js +32 -11
  119. package/lib/modules/chat/message-list.js +81 -49
  120. package/lib/modules/chat/store.d.ts +50 -4
  121. package/lib/modules/chat/store.js +303 -124
  122. package/lib/modules/chat/util.js +1 -1
  123. package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +2 -0
  124. package/lib/modules/connection-gateway/components/phone/index.js +2 -0
  125. package/lib/modules/connection-gateway/index.d.ts +3 -2
  126. package/lib/modules/connection-gateway/index.js +2 -0
  127. package/lib/modules/connection-gateway/store.d.ts +6 -4
  128. package/lib/modules/connection-gateway/store.js +46 -15
  129. package/lib/modules/device-pretest/audio-preview/microphone-detection.d.ts +1 -0
  130. package/lib/modules/device-pretest/audio-preview/microphone-detection.js +3 -2
  131. package/lib/modules/device-pretest/audio-preview/speaker-control.d.ts +0 -1
  132. package/lib/modules/device-pretest/audio-preview/speaker-control.js +1 -1
  133. package/lib/modules/device-pretest/context.d.ts +0 -1
  134. package/lib/modules/device-pretest/index.css +0 -4
  135. package/lib/modules/device-pretest/index.d.ts +0 -1
  136. package/lib/modules/device-pretest/index.js +2 -1
  137. package/lib/modules/device-pretest/settings/beauty.js +19 -6
  138. package/lib/modules/device-pretest/settings/video-effect.d.ts +0 -1
  139. package/lib/modules/device-pretest/settings/video-settings-basic.js +1 -0
  140. package/lib/modules/device-pretest/settings/virtual-background-setting.js +2 -0
  141. package/lib/modules/device-pretest/store.js +34 -19
  142. package/lib/modules/dialog/components/chat/electron.js +3 -2
  143. package/lib/modules/dialog/components/chat/index.js +1 -1
  144. package/lib/modules/dialog/components/confirm/electron.js +7 -5
  145. package/lib/modules/dialog/components/confirm/index.js +16 -2
  146. package/lib/modules/dialog/components/connection-gateway/electron.js +4 -2
  147. package/lib/modules/dialog/components/connection-gateway/index.css +0 -2
  148. package/lib/modules/dialog/components/device-setting/electron.d.ts +2 -0
  149. package/lib/modules/dialog/components/device-setting/electron.js +74 -0
  150. package/lib/modules/dialog/components/device-setting/index.css +26 -0
  151. package/lib/modules/dialog/components/device-setting/index.d.ts +4 -0
  152. package/lib/modules/dialog/components/device-setting/index.js +60 -0
  153. package/lib/modules/dialog/components/operation-waiting-room/electron.d.ts +5 -0
  154. package/lib/modules/dialog/components/operation-waiting-room/electron.js +89 -0
  155. package/lib/modules/dialog/components/operation-waiting-room/index.css +44 -0
  156. package/lib/modules/dialog/components/operation-waiting-room/index.d.ts +5 -0
  157. package/lib/modules/dialog/components/operation-waiting-room/index.js +156 -0
  158. package/lib/modules/dialog/components/participant/electron.js +8 -2
  159. package/lib/modules/dialog/components/remove-admit-waiting-room/electron.d.ts +5 -0
  160. package/lib/modules/dialog/components/remove-admit-waiting-room/electron.js +89 -0
  161. package/lib/modules/dialog/components/remove-admit-waiting-room/index.css +50 -0
  162. package/lib/modules/dialog/components/remove-admit-waiting-room/index.d.ts +5 -0
  163. package/lib/modules/dialog/components/remove-admit-waiting-room/index.js +90 -0
  164. package/lib/modules/dialog/components/share-screen-selection/index.js +1 -1
  165. package/lib/modules/dialog/components/whiteboard/index.js +2 -1
  166. package/lib/modules/dialog/context.d.ts +0 -1
  167. package/lib/modules/dialog/dialogs.d.ts +0 -2
  168. package/lib/modules/dialog/dialogs.js +62 -103
  169. package/lib/modules/dialog/index.css +7 -6
  170. package/lib/modules/dialog/index.d.ts +1 -1
  171. package/lib/modules/dialog/index.js +17 -0
  172. package/lib/modules/dialog/store.d.ts +6 -2
  173. package/lib/modules/dialog/store.js +52 -9
  174. package/lib/modules/dialog/view.js +2 -0
  175. package/lib/modules/event-notification/context.d.ts +2 -0
  176. package/lib/modules/event-notification/context.js +9 -0
  177. package/lib/modules/event-notification/index.css +58 -0
  178. package/lib/modules/event-notification/index.d.ts +13 -0
  179. package/lib/modules/event-notification/index.js +48 -0
  180. package/lib/modules/event-notification/store.d.ts +17 -0
  181. package/lib/modules/event-notification/store.js +133 -0
  182. package/lib/modules/event-notification/view.d.ts +5 -0
  183. package/lib/modules/event-notification/view.js +114 -0
  184. package/lib/modules/event-toast/context.d.ts +0 -1
  185. package/lib/modules/event-toast/store.js +16 -0
  186. package/lib/modules/invite/context.d.ts +0 -1
  187. package/lib/modules/invite/index.css +4 -4
  188. package/lib/modules/invite/index.d.ts +2 -2
  189. package/lib/modules/invite/pstn-invite.js +4 -1
  190. package/lib/modules/invite/store.d.ts +2 -2
  191. package/lib/modules/invite/store.js +27 -7
  192. package/lib/modules/invite/voip-invite.d.ts +0 -1
  193. package/lib/modules/invite/voip-invite.js +1 -1
  194. package/lib/modules/layout/components/Aside.d.ts +0 -1
  195. package/lib/modules/layout/components/Aside.js +4 -1
  196. package/lib/modules/layout/components/Carousel.js +6 -5
  197. package/lib/modules/layout/components/Gallery.js +16 -9
  198. package/lib/modules/layout/components/Layout.js +82 -57
  199. package/lib/modules/layout/components/index.css +42 -5
  200. package/lib/modules/layout/components/index.js +3 -0
  201. package/lib/modules/layout/context.d.ts +0 -1
  202. package/lib/modules/layout/index.css +30 -0
  203. package/lib/modules/layout/index.dev.js +11 -11
  204. package/lib/modules/layout/index.js +0 -6
  205. package/lib/modules/layout/member-window/index.css +5 -5
  206. package/lib/modules/layout/member-window/index.d.ts +7 -7
  207. package/lib/modules/layout/member-window/index.js +59 -13
  208. package/lib/modules/layout/store.d.ts +61 -50
  209. package/lib/modules/layout/store.js +517 -342
  210. package/lib/modules/layout/type.d.ts +2 -1
  211. package/lib/modules/layout/video-window-datasource.d.ts +14 -8
  212. package/lib/modules/layout/video-window-datasource.js +129 -78
  213. package/lib/modules/live-streaming/context.d.ts +0 -1
  214. package/lib/modules/live-streaming/index.d.ts +2 -2
  215. package/lib/modules/live-streaming/index.dev.js +5 -4
  216. package/lib/modules/live-streaming/store.d.ts +2 -2
  217. package/lib/modules/live-streaming/store.js +32 -11
  218. package/lib/modules/participant/attendee/index.d.ts +12 -3
  219. package/lib/modules/participant/attendee/index.js +142 -30
  220. package/lib/modules/participant/context.d.ts +0 -1
  221. package/lib/modules/participant/index.css +20 -0
  222. package/lib/modules/participant/index.d.ts +5 -2
  223. package/lib/modules/participant/index.dev.js +14 -12
  224. package/lib/modules/participant/index.js +27 -0
  225. package/lib/modules/participant/member-list-data-source.d.ts +3 -3
  226. package/lib/modules/participant/member-list-data-source.js +29 -3
  227. package/lib/modules/participant/room-control-drop-menu/index.css +37 -0
  228. package/lib/modules/participant/room-control-drop-menu/index.js +35 -1
  229. package/lib/modules/participant/store.d.ts +59 -34
  230. package/lib/modules/participant/store.js +541 -222
  231. package/lib/modules/participant/view.d.ts +6 -6
  232. package/lib/modules/participant/view.js +138 -34
  233. package/lib/modules/setting/audio-settings/audio-settings.js +16 -12
  234. package/lib/modules/setting/audio-settings/index.css +2 -2
  235. package/lib/modules/setting/context.d.ts +0 -1
  236. package/lib/modules/setting/general-settings/general-settings.js +2 -1
  237. package/lib/modules/setting/general-settings/index.css +2 -2
  238. package/lib/modules/setting/index.css +1 -5
  239. package/lib/modules/setting/index.d.ts +2 -2
  240. package/lib/modules/setting/index.dev.js +14 -12
  241. package/lib/modules/setting/index.js +16 -0
  242. package/lib/modules/setting/minutes-settings/index.css +65 -0
  243. package/lib/modules/setting/minutes-settings/minutes-settings.d.ts +4 -0
  244. package/lib/modules/setting/minutes-settings/minutes-settings.js +159 -0
  245. package/lib/modules/setting/state/index.css +0 -4
  246. package/lib/modules/setting/state/index.js +11 -1
  247. package/lib/modules/setting/storage-settings/storage-settings.js +1 -1
  248. package/lib/modules/setting/store.d.ts +7 -5
  249. package/lib/modules/setting/store.js +69 -46
  250. package/lib/modules/setting/translate-settings/index.css +45 -0
  251. package/lib/modules/setting/translate-settings/language-select.d.ts +12 -0
  252. package/lib/modules/setting/translate-settings/language-select.js +50 -0
  253. package/lib/modules/setting/translate-settings/translate-settings.d.ts +4 -0
  254. package/lib/modules/setting/translate-settings/translate-settings.js +139 -0
  255. package/lib/modules/setting/video-settings/index.css +15 -6
  256. package/lib/modules/setting/video-settings/video-settings-basic.js +3 -2
  257. package/lib/modules/setting/video-settings/video-settings.js +5 -1
  258. package/lib/modules/setting/view.js +34 -2
  259. package/lib/modules/share-screen/index.d.ts +4 -2
  260. package/lib/modules/share-screen/index.dev.js +17 -14
  261. package/lib/modules/share-screen/index.js +2 -0
  262. package/lib/modules/share-screen/selection/index.css +2 -0
  263. package/lib/modules/share-screen/selection/index.js +44 -6
  264. package/lib/modules/share-screen/share-state-bar/index.css +49 -11
  265. package/lib/modules/share-screen/share-state-bar/index.d.ts +0 -1
  266. package/lib/modules/share-screen/share-state-bar/index.js +51 -20
  267. package/lib/modules/share-screen/store.d.ts +23 -13
  268. package/lib/modules/share-screen/store.js +733 -606
  269. package/lib/modules/state-bar/context.d.ts +0 -1
  270. package/lib/modules/state-bar/index.css +2 -2
  271. package/lib/modules/state-bar/index.d.ts +2 -2
  272. package/lib/modules/state-bar/index.dev.js +12 -10
  273. package/lib/modules/state-bar/layout-config.js +2 -0
  274. package/lib/modules/state-bar/live-streaming-state.js +3 -0
  275. package/lib/modules/state-bar/meeting-detail.css +6 -4
  276. package/lib/modules/state-bar/meeting-details.js +29 -3
  277. package/lib/modules/state-bar/meeting-network-state.css +14 -3
  278. package/lib/modules/state-bar/meeting-network-state.js +10 -4
  279. package/lib/modules/state-bar/recording.js +9 -11
  280. package/lib/modules/state-bar/store.d.ts +7 -5
  281. package/lib/modules/state-bar/store.js +68 -8
  282. package/lib/modules/state-bar/view.js +4 -8
  283. package/lib/modules/video-window/context.d.ts +0 -1
  284. package/lib/modules/video-window/deviceState/index.d.ts +3 -3
  285. package/lib/modules/video-window/index.css +1 -0
  286. package/lib/modules/video-window/members/index.js +7 -4
  287. package/lib/modules/video-window/store.d.ts +5 -4
  288. package/lib/modules/video-window/store.js +49 -17
  289. package/lib/modules/video-window/topControl/index.js +7 -0
  290. package/lib/modules/video-window/view.js +2 -0
  291. package/lib/modules/waiting-room-layout/context.d.ts +2 -0
  292. package/lib/modules/waiting-room-layout/context.js +9 -0
  293. package/lib/modules/waiting-room-layout/index.css +71 -0
  294. package/lib/modules/waiting-room-layout/index.d.ts +8 -0
  295. package/lib/modules/waiting-room-layout/index.js +47 -0
  296. package/lib/modules/waiting-room-layout/store.d.ts +30 -0
  297. package/lib/modules/waiting-room-layout/store.js +189 -0
  298. package/lib/modules/waiting-room-layout/type.d.ts +0 -0
  299. package/lib/modules/waiting-room-layout/type.js +1 -0
  300. package/lib/modules/waiting-room-layout/view.d.ts +3 -0
  301. package/lib/modules/waiting-room-layout/view.js +67 -0
  302. package/lib/modules/whiteboard/app.js +2 -8
  303. package/lib/modules/whiteboard/components/control-bar/index.css +3 -0
  304. package/lib/modules/whiteboard/components/control-bar/store.d.ts +0 -1
  305. package/lib/modules/whiteboard/components/control-bar/store.js +29 -29
  306. package/lib/modules/whiteboard/components/loading/index.js +2 -2
  307. package/lib/modules/whiteboard/components/multi-window/index.js +8 -3
  308. package/lib/modules/whiteboard/components/pagination/store.d.ts +0 -1
  309. package/lib/modules/whiteboard/components/progress/electron.js +3 -2
  310. package/lib/modules/whiteboard/components/progress/style.css +4 -3
  311. package/lib/modules/whiteboard/components/switch-theme/index.css +4 -0
  312. package/lib/modules/whiteboard/components/switch-theme/index.d.ts +2 -1
  313. package/lib/modules/whiteboard/components/switch-theme/index.js +29 -17
  314. package/lib/modules/whiteboard/components/switch-theme/item.d.ts +1 -0
  315. package/lib/modules/whiteboard/components/switch-theme/item.js +11 -2
  316. package/lib/modules/whiteboard/components/switch-theme/libs.d.ts +2 -1
  317. package/lib/modules/whiteboard/components/switch-theme/libs.js +21 -20
  318. package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +2 -0
  319. package/lib/modules/whiteboard/components/toolbar/components/color-picker/index.js +3 -1
  320. package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.js +11 -9
  321. package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +4 -0
  322. package/lib/modules/whiteboard/components/toolbar/components/move-handle.js +5 -0
  323. package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +2 -0
  324. package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +18 -12
  325. package/lib/modules/whiteboard/components/toolbar/hooks/index.d.ts +3 -3
  326. package/lib/modules/whiteboard/components/toolbar/hooks/index.js +16 -11
  327. package/lib/modules/whiteboard/components/toolbar/index.js +9 -0
  328. package/lib/modules/whiteboard/components/toolbar/store.d.ts +8 -7
  329. package/lib/modules/whiteboard/components/toolbar/store.js +25 -4
  330. package/lib/modules/whiteboard/context.d.ts +7 -3
  331. package/lib/modules/whiteboard/context.js +6 -4
  332. package/lib/modules/whiteboard/index.d.ts +6 -8
  333. package/lib/modules/whiteboard/index.js +310 -255
  334. package/lib/modules/whiteboard/type.d.ts +4 -12
  335. package/lib/modules/whiteboard/type.js +6 -16
  336. package/lib/modules/whiteboard/utils.d.ts +1 -0
  337. package/lib/modules/whiteboard/utils.js +12 -1
  338. package/lib/plugins/browser-runtime-plugin.js +2 -1
  339. package/lib/plugins/module-dev-plugin.js +12 -10
  340. package/lib/plugins/multi-lang-plugin.d.ts +1 -5
  341. package/lib/plugins/multi-lang-plugin.js +2 -0
  342. package/lib/runtime.d.ts +3 -5
  343. package/lib/translations/enUS.d.ts +590 -0
  344. package/lib/translations/enUS.js +608 -6
  345. package/lib/translations/zhCN.d.ts +588 -0
  346. package/lib/translations/zhCN.js +604 -4
  347. package/lib/type.d.ts +6 -2
  348. package/lib/ui-manager.d.ts +7 -3
  349. package/lib/ui-manager.js +597 -143
  350. package/lib/ui-scene.d.ts +1 -0
  351. package/lib/ui-scene.js +32 -22
  352. package/lib/utilities/board-context.d.ts +0 -1
  353. package/lib/utilities/constant.d.ts +47 -5
  354. package/lib/utilities/constant.js +44 -1
  355. package/lib/utilities/copyText.js +1 -1
  356. package/lib/utilities/extract.js +26 -3
  357. package/lib/utilities/hooks.js +2 -0
  358. package/lib/utilities/parameters.js +2 -2
  359. package/lib/utilities/renderer-event.js +28 -0
  360. package/lib/utilities/renderer.d.ts +1 -0
  361. package/lib/utilities/renderer.js +15 -6
  362. package/lib/utilities/tools.js +5 -2
  363. package/lib/utilities/ui-resources.d.ts +2 -2
  364. package/lib/utilities/ui-resources.js +20 -3
  365. package/lib/utilities/video-track-render-context.d.ts +0 -1
  366. package/package.json +17 -16
  367. package/public/assets/fcr_defaultpage.png +0 -0
  368. package/public/assets/login_confirm.png +0 -0
  369. package/public/index.html +29 -11
  370. package/lib/modules/device-pretest/settings/index.css +0 -15
  371. package/lib/modules/participant/attendee/participants-more-action.d.ts +0 -18
  372. package/lib/modules/participant/attendee/participants-more-action.js +0 -275
@@ -7,14 +7,15 @@ 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',
13
14
  fmt_participants_label_popUp: 'Eject',
14
15
  fmt_participants_window_title: 'Attendees{reason1}',
15
16
  fmt_participants_button_muteAll: 'All staff are muted',
16
- fmt_participants_button_unmuteAll: 'Remove the mute for all personnel',
17
- fmt_participants_button_meetingManagement: 'Management of meetings',
17
+ fmt_participants_button_unmuteAll: 'Unmute all',
18
+ fmt_participants_button_meetingManagement: 'Settings',
18
19
  fmt_participants_button_invite: 'Invitation',
19
20
  fmt_participants_member_button_mute: 'Mute',
20
21
  fmt_participants_member_button_unmute: 'Unmute',
@@ -41,7 +42,7 @@ var enUs = exports.enUs = {
41
42
  fmt_attendies_options_putinwaitingroom: 'Put it in the waiting room',
42
43
  fmt_attendies_button_remove: 'Remove',
43
44
  fmt_participants_options_allunmute: 'Allow all members to self unmute',
44
- fmt_participants_options_allmute: 'Enable all staff mute',
45
+ fmt_participants_options_allmute: 'Mute all',
45
46
  fmt_modules_tips_mergevideo: 'Merge with video',
46
47
  fmt_participant_label_Me: 'Me',
47
48
  fmt_attendies_button_serach: 'Search',
@@ -240,6 +241,8 @@ var enUs = exports.enUs = {
240
241
  fmt_device_statues_opend: 'Opened',
241
242
  fmt_device_statues_closed: 'Closed',
242
243
  fmt_device_options_whitening: 'Whitening',
244
+ fmt_device_options_effects_enable: 'Click to enable the special effects background',
245
+ fmt_device_options_effects_disable: 'Click to disable the special effects background',
243
246
  fmt_device_options_smoother: 'Smoother',
244
247
  fmt_device_options_brighter: 'Brighter',
245
248
  fmt_device_tips_videoeffectson: 'If the camera is turned on, the video effects will change in real-time',
@@ -263,6 +266,8 @@ var enUs = exports.enUs = {
263
266
  fmt_device_inspection_turn_on_camera: 'Open Camera',
264
267
  fmt_device_label_inspection_switch_camera: 'Flip over',
265
268
  fmt_device_label_inspection_speaker_on: 'Speaker on',
269
+ fmt_device_label_speaker_follow_system: 'Follow System - {reason1}',
270
+ fmt_device_label_speaker_default: 'default ',
266
271
  fmt_device_inspection_turn_on_speaker: 'Open speaker',
267
272
  fmt_device_inspection_start_meeting: 'Join Meeting',
268
273
  fmt_device_label_inspection_audio_route_speaker: 'Speaker',
@@ -349,7 +354,7 @@ var enUs = exports.enUs = {
349
354
  fmt_chat_label_chat: 'Chat',
350
355
  fmt_chat_window_title: 'Chat',
351
356
  fmt_chat_setting_privilege: 'Attendees can chat with:',
352
- fmt_chat_setting_privilege_list_no: 'Nothing',
357
+ fmt_chat_setting_privilege_list_no: 'Nobody',
353
358
  fmt_chat_setting_privilege_list_everyone: 'All',
354
359
  fmt_chat_window_position_popup: 'Independent pop-up',
355
360
  fmt_chat_window_position_merge: 'Merge into the main window',
@@ -376,7 +381,7 @@ var enUs = exports.enUs = {
376
381
  fmt_chat_options_Notapplicable: 'Not applicable',
377
382
  fmt_chat_label_Chatmanagement: 'Chat management',
378
383
  fmt_chat_button_MultipleChoice: 'Multiple Choice',
379
- fmt_chat_tips_otherpartyleave: 'The other party may have left the meeting and cannot receive messages. Please select a new chat partner',
384
+ fmt_chat_tips_otherpartyleave: 'The attendie cannot receive messages. Please select another one to chat with.',
380
385
  fmt_chat_options_onlyprivatechat: 'Private chat with the host and co host',
381
386
  fmt_chat_tips_chatpermissionchange: 'The chat room permissions have changed to only host and co host can private chat ',
382
387
  fmt_pairicipant_tips_cohostbeenrevoke: 'Your co host identity has been revoked',
@@ -580,6 +585,7 @@ var enUs = exports.enUs = {
580
585
  fmt_screenshare_whiteboard_button_dragdrop: 'Drag and drop',
581
586
  fmt_screenshare_whiteboard_button_savescript: 'Save Whiteboard Script',
582
587
  fmt_screenshare_whiteboard_button_spread: 'Spread',
588
+ fmt_screenshare_whiteboard_tips_choose_pen_first: 'Start by selecting a shape or brush',
583
589
  fmt_screenshare_whiteboard_tips_downloading: 'The blackboard is currently being downloaded',
584
590
  fmt_screenshare_whiteboard_tips_savedsuccessfully: 'Board book saved successfully',
585
591
  fmt_screenshare_whiteboard_tips_failed: 'Board saving failed',
@@ -599,6 +605,7 @@ var enUs = exports.enUs = {
599
605
  fmt_share_options_purple: 'Purple',
600
606
  fmt_share_options_green: 'Green',
601
607
  fmt_share_options_whiteboard: 'Whiteboard',
608
+ fmt_share_options_red: 'Red',
602
609
  fmt_whiteboard_save_success: 'Image storage succeed',
603
610
  fmt_whiteboard_save_failure: 'Image download failed',
604
611
  fmt_whiteboard_tips_two_finger_move: 'Move whiteboard by two fingers',
@@ -821,6 +828,7 @@ var enUs = exports.enUs = {
821
828
  fmt_internalsetting_tips_optimizevideo: 'After selecting, software based noise cancellation will optimize video quality',
822
829
  fmt_internalsetting_tips_reducevideo: 'After selecting, hardware codecs will reduce the CPU consumption of video codecs',
823
830
  fmt_internalsetting_labels_currency: 'Currency',
831
+ fmt_internalsetting_labels_audiovisual: 'audiovisual',
824
832
  fmt_internalsetting_labels_application: 'This application',
825
833
  fmt_internalsetting_labels_other: 'Other',
826
834
  fmt_internalsetting_labels_bandwidth: 'Bandwidth',
@@ -1012,5 +1020,599 @@ var enUs = exports.enUs = {
1012
1020
  fmt_pstn_status_raining: 'Ringing the bell',
1013
1021
  fmt_SIP323_copywrite_phonenumber: 'Mobile phone number (required)',
1014
1022
  fmt_SIP323_options_detailedinfor: 'Copy meeting detail',
1015
- fmt_SIP323_tips_alreadycopied: 'Already copied on the clipboard'
1023
+ fmt_SIP323_tips_alreadycopied: 'Already copied on the clipboard',
1024
+ fmt_localrecord_labels_record: 'Record',
1025
+ fmt_localrecord_labels_savingto: 'Local Recording Saved in',
1026
+ fmt_localrecord_button_savingto: 'Change',
1027
+ fmt_localrecord_button_open: 'Open',
1028
+ fmt_localrecord_labels_remaining_storage: '{reason1}GB remaining',
1029
+ fmt_localrecord_options_videorecord_whileshare: 'Record the video view during screen sharing ',
1030
+ fmt_localrecord_options_temporaryfiles_saved: 'Save temporary recording files ',
1031
+ fmt_localrecord_options_localrecoding_onlyadmin: 'Only host and co-host can start recording ',
1032
+ fmt_localrecord_tips_origialfiles_save: 'Save the original files to help meeting provider troubleshooting in case of any issues.',
1033
+ fmt_localrecord_tips_change_storage: 'Modify the recording storage address',
1034
+ fmt_localrecord_tips_ensufficient_storage: 'The local disk space is insufficient',
1035
+ fmt_localrecord_tips_: 'The disk space is less than 2G, it will affect the storage of recording files, so it is recommended to change the storage location of the files',
1036
+ fmt_localrecord_button_cancel: 'Cancel',
1037
+ fmt_localrecord_button_confirm: 'Confirm',
1038
+ fmt_localrecord_options_local_recording: 'Local recording',
1039
+ fmt_localrecord_labels_permissions_localrecording: 'Local recording permissions',
1040
+ fmt_localrecord_options_onlyadmin_record: 'Only meeting administrator can record',
1041
+ fmt_localrecord_options_allmember_canrecord: 'All members can record',
1042
+ fmt_localrecord_options_setting_recording: 'Recording settings',
1043
+ fmt_localrecord_options_localrecording_onlyuse: 'Local Recording (Use Only)',
1044
+ fmt_localrecord_popup_enable_local_recording: 'Enable local recording?',
1045
+ fmt_localrecord_popup_record_audiovideo: 'After the recording starts,all attendees will be informed and the meeting audio,video and shared screen view will be recorded. ',
1046
+ fmt_localrecord_popup_start_local_recording: 'Start cloud recording?',
1047
+ fmt_localrecord_popup_remind_afterstart: 'After the recording starts,all participants will be reminded to start recording',
1048
+ fmt_localrecord_popup_invite_start_recoding: 'Invite the meeting administrator to enable cloud recording',
1049
+ fmt_localrecord_popup_onlyadmin_recording: 'Only hosts and co-hosts can enable cloud recording, invite them to start cloud recording? ',
1050
+ fmt_localrecord_popup_open_recording: 'Open',
1051
+ fmt_localrecord_popup_cancel_recording: 'Cancel',
1052
+ fmt_localrecord_popup_invite: 'Invite',
1053
+ fmt_localrecord_popup_cancel_invite: 'Cancel',
1054
+ fmt_localrecord_tips_already_start: 'Cloud recording is enabled',
1055
+ fmt_localrecord_tips_geturl: 'Cloud recording is enabled, and you can get the link after the meeting ends',
1056
+ fmt_localrecord_tips_getfiles: 'Cloud recording is enabled, and you can get the link to the co-meeting moderator after the meeting ends.',
1057
+ fmt_localrecord_tips_someone_record: 'Someone has started recording ',
1058
+ fmt_localrecord_tips_view_recorded: 'Someone has started local recording, your audio, video and shared screen view will be recorded ',
1059
+ fmt_localrecord_options_beauty_record: 'Record&Beautify',
1060
+ fmt_localrecord_popup_stop_recording: 'Stop recording now?',
1061
+ fmt_localrecord_button_stop_recording: 'stop recording',
1062
+ fmt_localrecord_button_cancel_recording: 'Cancel',
1063
+ fmt_localrecord_popup_in_recording: 'This meeting is being recorded',
1064
+ fmt_localrecord_popup_someone_recording: 'Some participants have turned on the local recording, and they can share the local recording files with other participants',
1065
+ fmt_localrecord_button_leavemeeting: 'Leave the meeting',
1066
+ fmt_localrecord_button_got_it: 'Got it',
1067
+ fmt_localrecord_tips_pause_localrecording: 'Pause local recording',
1068
+ fmt_localrecord_tips_stop_localrecording: 'Stop local recording',
1069
+ fmt_waitingroom_setting_option_enable_waitingroom: 'Enable Waiting Room',
1070
+ fmt_waitingroom_setting_option_disable_waitingroom: 'Disable Waiting Room',
1071
+ fmt_waitingroom_setting_popup_close_waitingroom: 'Closing the Waiting Room?',
1072
+ fmt_waitingroom_setting_tips_choose: '{reason1} members are still in the waiting room, Do you want to move them out of the meeting or into the conference room?',
1073
+ fmt_waitingroom_setting_button_admit_all: 'Admit all users in Waiting Room',
1074
+ fmt_waitingroom_setting_button_remove_all: 'Remove all users in Waiting Room',
1075
+ fmt_waitingroom_setting_button_cancel: 'Cancel',
1076
+ fmt_waitingroom_sidebar_button_move_to_waitingroom: 'Move out to the waiting room',
1077
+ fmt_waitingroom_sidebar_label_waiting: '{reason1} Waiting',
1078
+ fmt_waitingroom_sidebar_label_search: 'Search',
1079
+ fmt_waitingroom_sidebar_button_invite: 'Invite',
1080
+ fmt_waitingroom_sidebar_button_admit: 'Admit',
1081
+ fmt_waitingroom_sidebar_button_more: 'More',
1082
+ fmt_waitingroom_sidebar_button_private: 'Private Chat',
1083
+ fmt_waitingroom_sidebar_button_remove: 'Remove',
1084
+ fmt_waitingroom_sidebar_button_removeall: 'Remove all',
1085
+ fmt_waitingroom_sidebar_button_admitall: 'Admit all',
1086
+ fmt_waitingroom_sidebar_popup_removeall: 'Remove waiting members',
1087
+ fmt_waitingroom_sidebar_popup_label_remove: 'Are you sure you want to remove {reason1} from the waiting room?',
1088
+ fmt_waitingroom_sidebar_popup_option_notagain: 'Do not allow the user to join the meeting again',
1089
+ fmt_waitingroom_sidebar_popup_button_cancel: 'Cancel',
1090
+ fmt_waitingroom_sidebar_popup_button_remove: 'Remove',
1091
+ fmt_waitingroom_sidebar_popup_popup_admit: 'Admit Waiting Attendee',
1092
+ fmt_waitingroom_sidebar_popup_label_admitall: 'Do you want to admit all attendees in the waiting room to the meeting?',
1093
+ fmt_waitingroom_sidebar_popup_button_admitall: 'Admit All',
1094
+ fmt_waitingroom_attendie_popup_label_removed: 'You are removed from the meetin ,failed to join',
1095
+ fmt_waitingroom_attendie_popup_button_gotit: 'Got it',
1096
+ fmt_waitingroom_sidebar_chat_label_waiting: 'Waiting Room{reason1}',
1097
+ fmt_waitingroom_sidebar_chat_label_meeting: 'Meeting',
1098
+ fmt_waitingroom_sidebar_chat_label_notsend: 'Atteendees are not allowed to send messages while staying in the meeting room',
1099
+ fmt_waitingroom_sidebar_chat_label_all_attendees: 'All attendees in the waiting room',
1100
+ fmt_waitingroom_mainwindow_popup_label_waitingroom: 'Waiting room',
1101
+ fmt_waitingroom_mainwindow_popup_label_waiting: '{reason1} are waiting in waiting room',
1102
+ fmt_waitingroom_mainwindow_popup_button_view_detailed: 'View details',
1103
+ fmt_waitingroom_mainwindow_popup_button_not_remind: 'No more remind',
1104
+ fmt_waitingroom_attendie_popup_label_Leave: 'Leave meeting',
1105
+ fmt_waitingroom_attendie_popup_label_click_leave: 'You are removed from the meeting, click the button to leave.',
1106
+ fmt_waitingroom_attendie_overview_label_waitingroom: 'Waiting Room',
1107
+ fmt_waitingroom_attendie_overview_label_wait_moment: 'The host has activated the waiting room,please wait a moment.',
1108
+ fmt_waitingroom_attendie_overview_label_move_in_by_host: 'You have been moved to the waiting room.',
1109
+ fmt_waitingroom_attendie_overview_label_attendees: 'Attendees in the waiting room',
1110
+ fmt_waitingroom_attendie_overview_label_no_messages: 'No message',
1111
+ fmt_waitingroom_put_in_success: '{reason1} has been moved to the waiting room.',
1112
+ fmt_waitingroom_setting_tips_deactivate: '{reason1} The Waiting Room has been deactivated',
1113
+ fmt_waitingroom_setting_tips_disable: "You've disabled the Waiting Room",
1114
+ fmt_waitingroom_setting_tips_enable: "You've enabled the Waiting Room",
1115
+ fmt_waitingroom_setting_tips_send_message_to_host: 'You can click here to send a message to the host.',
1116
+ fmt_waitingroom_setting_popup_toast_move_in_failed: 'Move-in failed, please check the network or verify that the waiting room is still in use',
1117
+ fmt_waitingroom_mobile_setting_label_enable: 'Enable Waiting Room',
1118
+ fmt_waitingroom_mobile_setting_label_disable: 'Disable Waiting Room',
1119
+ fmt_waitingroom_mobile_setting_popup_label_close: 'Closing the Waiting Room?',
1120
+ fmt_waitingroom_mobile_setting_popup_label_choose: '{reason1} members are still in the waiting room, Do you want to move them out of the meeting or into the conference room?',
1121
+ fmt_waitingroom_mobile_setting_popup_button_admit_all: 'Admit all Waiting Room users',
1122
+ fmt_waitingroom_mobile_setting_popup_button_cancel: 'Withheld',
1123
+ fmt_waitingroom_mobile_setting_tips_deactivate: '{reason1} The Waiting Room has been deactivated',
1124
+ fmt_waitingroom_mobile_setting_tips_disable: "You've disabled the Waiting Room",
1125
+ fmt_waitingroom_mobile_setting_button_move_into_waitingroom: 'Move into the waiting room',
1126
+ fmt_waitingroom_mobile_memberlist_label_waitingroom: 'Waiting Room',
1127
+ fmt_waitingroom_mobile_memberlist_popup_label_search: 'Search',
1128
+ fmt_waitingroom_mobile_memberlist_popup_moveout: 'Move out',
1129
+ fmt_waitingroom_mobile_memberlist_button_admit: 'Admit',
1130
+ fmt_waitingroom_mobile_memberlist_button_privatechat: 'Private chat',
1131
+ fmt_waitingroom_mobile_memberlist_popup_label_remove: 'Remove the waiting room member',
1132
+ fmt_waitingroom_mobile_memberlist_popup_label_sure_remove: 'Removing {reason1} from the Waiting Room?',
1133
+ fmt_waitingroom_mobile_memberlist_options_not_allowed: 'The user is not allowed to join the meeting again',
1134
+ fmt_waitingroom_mobile_memberlist_button_cancel: 'Cancel',
1135
+ fmt_waitingroom_mobile_memberlist_button_remove: 'Remove',
1136
+ fmt_waitingroom_mobile_memberlist_popup_label_remove_all: 'Remove all waiting room members?',
1137
+ fmt_waitingroom_mobile_memberlist_popup_label_sure_to_remove_all: 'Are you sure to remove all waiting room members?',
1138
+ fmt_waitingroom_mobile_memberlist_button_remove_all: 'Remove  all',
1139
+ fmt_waitingroom_mobile_memberlist_popup_label_admit_all: 'All members are admitted to the meeting',
1140
+ fmt_waitingroom_mobile_memberlist_popup_label_sure_to_admit_all: 'Whether to allow all waiting room members to join the meeting',
1141
+ fmt_waitingroom_mobile_memberlist_tips_all_removed: 'All members have been removed',
1142
+ fmt_waitingroom_mobile_memberlist_tips_removed: 'Removed',
1143
+ fmt_waitingroom_mobile_memberlist_tips_all_amitted: 'All members have been admitted',
1144
+ fmt_waitingroom_mobile_memberlist_label_nocontent: 'No message',
1145
+ fmt_waitingroom_mobile_chat_label_send_to: 'Send to',
1146
+ fmt_waitingroom_mobile_chat_label_input: 'Please input',
1147
+ fmt_waitingroom_mobile_chat_label_private_chat: 'Private Chat',
1148
+ fmt_waitingroom_mobile_chat_label_all_waitingroom_member: 'Everyone in the waiting room',
1149
+ fmt_waitingroom_mobile_chat_label_all_meeting_member: 'Everyone in the meeting',
1150
+ fmt_waitingroom_mobile_notice_label_waitingroom: 'Waiting room',
1151
+ fmt_waitingroom_mobile_notice_label_enabled: 'The host has enabled the waiting room,please wait until the host invite you to the meeting soon',
1152
+ fmt_waitingroom_mobile_notice_popup_label_about_join: 'You are about to enter the conference room',
1153
+ fmt_waitingroom_mobile_notice_popup_label_quick_join: 'The meeting moderator has invited you to the meeting, click the button to quickly enter the meeting',
1154
+ fmt_waitingroom_mobile_notice_popup_button_join_now: 'Join now{reason1}',
1155
+ fmt_waitingroom_mobile_notice_popup_label_waitinglist: 'There are {reason1} people waiting in the waiting room',
1156
+ fmt_waitingroom_mobile_notice_popup_button_dont_remind: 'No more remind',
1157
+ fmt_waitingroom_mobile_notice_popup_button_view_detailed: 'View details',
1158
+ fmt_ai_transcriptions_setting_label_source: 'Source language',
1159
+ fmt_ai_transcriptions_setting_label_live_language: 'Live language ',
1160
+ fmt_ai_transcriptions_setting_label_translate_to: 'Translate to ',
1161
+ fmt_ai_transcriptions_setting_label_effects: 'It takes effect for transcriptions and transcriptions, the translated content will only be visible to you',
1162
+ fmt_ai_transcriptions_setting_option_bilingualism: 'Bilingualism is displayed at the same time',
1163
+ fmt_ai_transcriptions_setting_label_translator: 'Translator',
1164
+ fmt_ai_transcriptions_setting_label_visable_range: 'Real-time simultaneous interpretation, visible only to yourself',
1165
+ fmt_ai_transcriptions_setting_option_noton: 'Do not turn on',
1166
+ fmt_ai_transcriptions_setting_option_english_translation: 'English to Chines',
1167
+ fmt_ai_transcriptions_setting_option_translate: 'Chinese to English',
1168
+ fmt_ai_subtitles_setting_label_subtitle_setting: 'Subtitle settings',
1169
+ fmt_ai_subtitles_setting_label_caption_transcripts_setting: 'Captions & Transcripts Settings',
1170
+ fmt_ai_subtitles_setting_label_caption_transcripts: 'Captions & Transcripts',
1171
+ fmt_ai_subtitles_setting_label_fontsize: 'Font size',
1172
+ fmt_ai_subtitles_setting_label_sample_chi: '字幕文字大小示例',
1173
+ fmt_ai_subtitles_setting_label_sample_eng: 'Example of subtitle text size',
1174
+ fmt_ai_subtitles_setting_label_translation_setting: 'Translation settings',
1175
+ fmt_ai_subtitles_setting_label_effect_range: 'It takes effect for transcriptions and transcriptions, the translated content will only be visible to you.Only Chinese and English translations are supported',
1176
+ fmt_ai_subtitles_setting_options_no_translation: 'No translation',
1177
+ fmt_ai_subtitles_setting_options_chinese: 'Chinese(Simplified)',
1178
+ fmt_ai_subtitles_setting_options_english: 'English',
1179
+ fmt_ai_subtitles_setting_options_subltitle_bilingual: 'Subtitles are bilingual at the same time',
1180
+ fmt_ai_subtitles_setting_options_translation_bilingual: 'The transcription shows bilingual at the same time',
1181
+ fmt_ai_subtitles_setting_options_translation_restore_default: 'Restore the default font size',
1182
+ fmt_ai_subtitles_setting_options_view_translation: 'View real-time transcriptions',
1183
+ fmt_ai_subtitles_setting_label_subtitle: 'Subtitle',
1184
+ fmt_ai_subtitles_setting_label_source_language: 'Source language',
1185
+ fmt_ai_subtitles_setting_label_translate_: 'Translated to',
1186
+ fmt_ai_subtitles_setting_label_bilingual_display: 'Show bilingual',
1187
+ fmt_ai_subtitles_setting_label_hot_words: 'Personal hot words',
1188
+ fmt_ai_subtitles_setting_label_hot_words_add: 'Add your own hot words to improve the accuracy of speech-to-text.You can enter up to 50 hot words',
1189
+ fmt_ai_subtitles_setting_button_button: 'Button',
1190
+ fmt_ai_transcriptions_toolbar_button_realtime_transcription: 'Real-time transcription',
1191
+ fmt_ai_transcriptions_toolbar_options_translator: 'Enable Translator',
1192
+ fmt_ai_transcriptions_toolbar_options_enable_translation: 'Enable real-time transcription',
1193
+ fmt_ai_transcriptions_toolbar_options_settings: 'Transcription and translation settings',
1194
+ fmt_ai_transcriptions_toolbar_popup_valid: 'Subtitles are only valid for yourself、',
1195
+ fmt_ai_transcriptions_sidebar_label_realtime_translation: 'Real-time transcription',
1196
+ fmt_ai_transcriptions_sidebar_label_search: 'Search',
1197
+ fmt_ai_transcriptions_sidebar_tips_turnon: 'Turn on Translation Recognition',
1198
+ fmt_ai_transcriptions_sidebar_tips_stopped: 'Real-time transcription has been stopped',
1199
+ fmt_ai_subtitles_setting_label_turnon_subtitles: 'Turn subtitles on...',
1200
+ fmt_ai_subtitles_setting_label_click_to_setup: 'Click to set up subtitles and translations',
1201
+ fmt_ai_subtitles_setting_label_listening: 'Listening...',
1202
+ fmt_ai_subtitles_setting_label_listening_no_content: 'No content yet',
1203
+ fmt_ai_transcriptions_sidebar_button_stop_translation: 'Stop transcribing',
1204
+ fmt_ai_transcriptions_sidebar_button_start_translation: 'Start transcribing',
1205
+ //****************** AI会议纪要 ******************
1206
+ fmt_ai_summary_create_option_create_summary: 'Create meeting summary for the meeting',
1207
+ fmt_ai_summary_create_labels_meeting_list: 'List of meetings',
1208
+ fmt_ai_summary_create_labels_valid_records: 'Only the last 2 days of meeting summaries are displayed',
1209
+ fmt_ai_summary_create_labels_meetingID: 'Meeting ID',
1210
+ fmt_ai_summary_create_labels_meeting_time: 'Meeting time',
1211
+ fmt_ai_summary_create_labels_not_opened: 'Meeting summary are not open',
1212
+ fmt_ai_summary_detail_label_data_analysis: 'Data analysis',
1213
+ fmt_ai_summary_detail_label_meeting_summary: 'Meeting summary',
1214
+ fmt_ai_summary_detail_label_transcription: 'Transcription',
1215
+ fmt_ai_summary_detail_label_search: 'Search',
1216
+ fmt_ai_summary_detail_button_transcription_management: 'Transcription management',
1217
+ fmt_ai_summary_detail_label_no_content: 'No content',
1218
+ fmt_ai_summary_setting_label_AI: 'AI ',
1219
+ fmt_ai_summary_setting_label_LLM_choose: 'LLM ',
1220
+ fmt_ai_summary_setting_label_llm_range: 'The AI model will be applied to functions such as meeting minutes and translation',
1221
+ fmt_ai_summary_setting_option_tingwu: 'TINGWU',
1222
+ fmt_ai_summary_setting_option_zhipu: 'ZHIPU-AI',
1223
+ fmt_ai_summary_setting_option_moonshot: 'Moonshot',
1224
+ fmt_ai_summary_setting_option_openai: 'OpenAI',
1225
+ fmt_ai_summary_setting_label_agent: 'Agent',
1226
+ fmt_ai_summary_setting_option_meeting_assistant: 'Meeting Assistant',
1227
+ fmt_ai_summary_setting_option_teacher: 'Teacher',
1228
+ fmt_ai_summary_setting_option_sales_manager: 'Sales Manager',
1229
+ //****************** 会前设置页 ******************
1230
+ fmt_premeeting_setting_mobile_label_settings: 'Settings',
1231
+ fmt_premeeting_setting_mobile_label_host_settings: 'Meeting host settings when joining a meeting',
1232
+ fmt_premeeting_setting_mobile_swtich_mute_when_join: 'Mute when joining a meeting ',
1233
+ fmt_premeeting_setting_mobile_label_personal_settings: 'Personal Settings',
1234
+ fmt_premeeting_setting_mobile_label_video: 'Video',
1235
+ fmt_premeeting_setting_mobile_swtich_hide_video_off: 'Hide video-off attendees when joining a meeting ',
1236
+ fmt_premeeting_setting_mobile_swtich_hide_my_video: 'Hide my video when joining a meeting ',
1237
+ fmt_premeeting_setting_mobile_option_background: 'Background ',
1238
+ fmt_premeeting_setting_mobile_option_enabled: 'Enabled ',
1239
+ fmt_premeeting_setting_mobile_option_disabled: 'Disabled',
1240
+ fmt_premeeting_setting_mobile_option_beauty: 'Beauty',
1241
+ fmt_premeeting_setting_mobile_label_caption_transcription: 'Caption & transcription',
1242
+ fmt_premeeting_setting_mobile_option_source_language: 'Source language ',
1243
+ fmt_premeeting_setting_mobile_option_default: 'Default',
1244
+ fmt_premeeting_setting_mobile_option_translate_to: 'Translate to ',
1245
+ fmt_premeeting_setting_mobile_swtich_display_bilingual: 'Display bilingual ',
1246
+ fmt_premeeting_setting_mobile_label_commen_settings: 'Commen settings',
1247
+ fmt_premeeting_setting_mobile_swtich_participant_display_name: 'Participant display name',
1248
+ fmt_premeeting_setting_mobile_swtich_voice_stimulation: 'Voice stimulation',
1249
+ fmt_premeeting_setting_mobile_label_speaking_display_first: 'When voice stimulation is enabled, the participants who are speaking are displayed first.',
1250
+ fmt_premeeting_setting_mobile_option_bilingual: 'Bilingual ',
1251
+ fmt_premeeting_setting_mobile_option_chinese: 'Chinese',
1252
+ fmt_premeeting_setting_mobile_option_english: 'English',
1253
+ fmt_premeeting_setting_mobile_option_language_auto: 'Auto',
1254
+ fmt_premeeting_setting_mobile_option_appearance: 'Appearance',
1255
+ fmt_premeeting_setting_mobile_option_auto: 'Auto',
1256
+ fmt_premeeting_setting_mobile_option_bright: 'Brght ',
1257
+ fmt_premeeting_setting_mobile_option_dark: 'Dark',
1258
+ fmt_premeeting_setting_mobile_option_region: 'Region',
1259
+ fmt_premeeting_setting_mobile_option_developer_mode: 'Developer mode',
1260
+ fmt_premeeting_setting_mobile_label_about_us: 'About us',
1261
+ fmt_premeeting_setting_mobile_option_version: 'Version',
1262
+ fmt_premeeting_setting_mobile_button_version_pdate: 'Version Update',
1263
+ fmt_premeeting_setting_mobile_label_release_time: 'Release time',
1264
+ fmt_premeeting_setting_mobile_url_agreement: 'Service Agreement',
1265
+ fmt_premeeting_setting_mobile_url_privacy: 'Privacy Policy',
1266
+ fmt_premeeting_setting_mobile_url_disclaimer: 'Disclaimer',
1267
+ fmt_premeeting_setting_mobile_button_cancel_account: 'Cancel ShengWang account',
1268
+ fmt_premeeting_setting_mobile_button_log_out: 'Log out',
1269
+ fmt_premeeting_setting_mobile_label_take_effect: 'Laguage settings will take effect after you restart FlexibleMeeting ',
1270
+ fmt_premeeting_setting_mobile_popup_button_got_it: 'Got it ',
1271
+ fmt_premeeting_setting_mobile_popup_button_restart: 'Restart',
1272
+ fmt_premeeting_setting_mobile_popup_label_latest_version: 'Your current version is up to date ',
1273
+ fmt_premeeting_setting_mobile_popup_label_dowloading: 'Downloading newst verion...',
1274
+ fmt_premeeting_setting_mobile_popup_button_install_comfirm: 'Downloaded,are you sure to install?',
1275
+ fmt_premeeting_setting_mobile_popup_button_cancel_install: 'Cancel',
1276
+ fmt_premeeting_setting_mobile_popup_button_install: 'Install',
1277
+ fmt_premeeting_setting_mobile_popup_label_cancel_account: 'Cancel ShengWang account?',
1278
+ fmt_premeeting_setting_mobile_popup_button_confirm_cancel: 'Confirm Cancel',
1279
+ fmt_premeeting_setting_mobile_popup_button_cancel: 'Cancel',
1280
+ fmt_premeeting_setting_mobile_popup_button_log_out: 'Log out ',
1281
+ fmt_premeeting_setting_mobile_button_log_out_confirm: 'Confirm',
1282
+ //****************** 首页 ******************
1283
+ fmt_premeeting_joinroom_mobile_button_upandin: 'Sign up and log in',
1284
+ fmt_premeeting_joinroom_mobile_label_flexible_meeting: 'Flexible Meetings',
1285
+ fmt_premeeting_joinroom_mobile_label_enterprise_account: 'Enterprise account',
1286
+ fmt_premeeting_joinroom_mobile_tips_meetingid: 'Meeting name or meeting ID',
1287
+ fmt_premeeting_joinroom_mobile_tips_password: 'Meeting password',
1288
+ fmt_premeeting_joinroom_mobile_button_join_meeting: 'Join the meeting',
1289
+ fmt_premeeting_joinroom_mobile_tips_six_characters: 'Please enter no more than 6 characters',
1290
+ fmt_premeeting_joinroom_mobile_tips_wrong_password: 'Wrong password',
1291
+ fmt_premeeting_joinroom_mobile_tips_no_password: 'The room can be without a password; If a room does not exist, the password you enter will become the password for that room.',
1292
+ fmt_premeeting_joinroom_mobile_label_account: 'Account',
1293
+ fmt_premeeting_joinroom_mobile_button_settings_privacy: 'Settings & Privacy',
1294
+ fmt_premeeting_joinroom_mobile_button_log_out: 'Log out',
1295
+ fmt_premeeting_joinroom_mobile_button_confirm_exit: 'Confirm to exit',
1296
+ fmt_premeeting_joinroom_mobile_button_cancel: 'Cancel',
1297
+ fmt_premeeting_joinroom_mobile_label_rename: 'Rename',
1298
+ //****************** 水印(移动) ******************
1299
+ fmt_security_setting_mobile_label_watermark: 'Watermark',
1300
+ fmt_security_setting_mobile_label_watermark_style: 'Watermark style',
1301
+ fmt_security_setting_mobile_option_watermark_style_single: 'Single line',
1302
+ fmt_security_setting_mobile_option_watermark_style_multi: 'Multi line',
1303
+ fmt_security_setting_mobile_label_mute_join: 'Mute when participants join a meeting',
1304
+ fmt_security_setting_mobile_label_allow_participants: 'Allow Participants To',
1305
+ fmt_security_setting_mobile_label_chat_with: 'Chat With',
1306
+ fmt_security_setting_mobile_label_share_screen: 'Share Screen',
1307
+ fmt_security_setting_mobile_label_rename: 'Rename',
1308
+ fmt_security_setting_mobile_label_unmute: 'Unmute',
1309
+ fmt_security_setting_mobile_label_start_video: 'Start Video',
1310
+ fmt_security_setting_mobile_popup_toast_lock_meeting: "You've locked the meeting. No one else can join.",
1311
+ fmt_security_setting_mobile_popup_toast_unlock_meeting: 'You have unlocked sessions for new attendees to join',
1312
+ fmt_security_setting_mobile_chat_popup_label_participants: 'Allow Participants to Chat With',
1313
+ fmt_security_setting_mobile_chat_popup_option_no_one: 'No one',
1314
+ fmt_security_setting_mobile_chat_popup_option_facilitator: 'Facilitators and co-facilitators',
1315
+ fmt_security_setting_mobile_chat_popup_option_all: 'All',
1316
+ fmt_security_setting_mobile_chat_popup_option_all_chat: 'All public and private chats',
1317
+ fmt_security_mobile_mainwindow_label_watermark: '{reason1}{reason1}',
1318
+ //****************** 安全(移动) ******************
1319
+ fmt_security_setting_mobile_label_security: 'Security',
1320
+ fmt_security_setting_mobile_label_security_label: 'SECURITY',
1321
+ fmt_security_setting_mobile_label_lock_meeting: 'Lock Meeting',
1322
+ fmt_security_setting_mobile_label_waiting_room: 'Waiting Room',
1323
+ //****************** 安全 ******************
1324
+ fmt_security_setting_label_security_setting: 'Meeting Security Setting',
1325
+ fmt_security_setting_label_lock_meeting: 'Lock Meeting',
1326
+ fmt_security_setting_label_waiting_room: 'Attendees must first enter the waiting room',
1327
+ fmt_security_setting_label_watermark: 'Watermark',
1328
+ fmt_security_setting_option_watermark_style_single: 'Single line',
1329
+ fmt_security_setting_option_watermark_style_multi: 'Multi Line',
1330
+ fmt_security_setting_label_allow_participants: 'Allow Participant',
1331
+ fmt_security_setting_label_chat_with: 'Chat with',
1332
+ fmt_security_setting_label_share_screen: 'Share Screen',
1333
+ fmt_security_setting_label_rename: 'Rename by Participant',
1334
+ fmt_security_setting_label_unmute: 'Unmute by Participant',
1335
+ fmt_security_setting_label_start_video: 'Start Video',
1336
+ fmt_security_setting_label_remove_participant: 'Remove participant',
1337
+ fmt_security_setting_label_pause_participant: 'Pause Participant',
1338
+ fmt_security_setting_popup_toast_join_waiting_room: 'Attendees must first enter the waiting room',
1339
+ fmt_security_setting_popup_toast_facilitator_watermark: 'Facilitator turn on the watermark',
1340
+ fmt_security_setting_popup_toast_co_facilitator_watermark: 'Co-Facilitator turn on the watermark',
1341
+ fmt_security_setting_popup_toast_turn_off_watermark: 'Turn off the watermark',
1342
+ fmt_security_setting_popup_tip_watermark_voice_active_prioritized: 'All members will see the watermark embedded in the meeting screen when viewing the meeting content',
1343
+ fmt_security_mainwindow_label_watermark: '{reason1}{reason1}',
1344
+ //****************** 设置 ******************
1345
+ fmt_premeeting_setting_label_settings: 'Setting',
1346
+ fmt_premeeting_setting_label_normal: 'Normal',
1347
+ fmt_premeeting_setting_label_voice_motivation: 'Voice Motivation',
1348
+ fmt_premeeting_setting_label_turn_on_microphone: 'Turn on Microphone',
1349
+ fmt_premeeting_setting_label_turn_on_camera: 'Turn on Camera',
1350
+ fmt_premeeting_setting_label_attendees_name: 'Participant display name',
1351
+ fmt_premeeting_setting_label_appearances: 'Appearance',
1352
+ fmt_premeeting_setting_label_bright_mode: 'Bright mode',
1353
+ fmt_premeeting_setting_label_dark_mode: 'Dark mode',
1354
+ fmt_premeeting_setting_label_auto_mode: 'Auto',
1355
+ fmt_premeeting_setting_label_multi_language: 'Multi Language',
1356
+ fmt_premeeting_setting_label_Chinese: 'Chinese',
1357
+ fmt_premeeting_setting_label_English: 'English',
1358
+ fmt_premeeting_setting_popup_label_restart_activate: 'Effective after reboot',
1359
+ fmt_premeeting_setting_popup_label_language_setting_restarting_meeting: 'The language setting will take effect after restarting the Spirit Meeting',
1360
+ fmt_premeeting_setting_popup_label_restart_application_switch_language: 'Restart the application if expecting to switch languages now.',
1361
+ fmt_premeeting_setting_popup_button_i_know: 'I know',
1362
+ fmt_premeeting_setting_pupop_button_restart_now: 'Restart Now',
1363
+ fmt_premeeting_setting_label_follow_the_system: 'Follow the System',
1364
+ fmt_premeeting_setting_label_region: 'Region',
1365
+ fmt_premeeting_setting_label_cn: 'CN',
1366
+ fmt_premeeting_setting_label_eu: 'EU',
1367
+ fmt_premeeting_setting_label_us: 'US',
1368
+ fmt_premeeting_setting_label_ap: 'AP',
1369
+ fmt_premeeting_setting_label_meeting_control: 'Meeting Control',
1370
+ fmt_premeeting_setting_label_mute_join_meeting: 'Mute when join the meeting',
1371
+ fmt_premeeting_setting_label_lock_meeting: 'Lock the Meeting',
1372
+ fmt_premeeting_setting_label_open_waiting_room: 'Open the waiting room',
1373
+ fmt_premeeting_setting_label_voice: 'Voice',
1374
+ fmt_premeeting_setting_label_automatically_connects_to_computer_audio: 'Automatically connects to computer audio when joining a meeting',
1375
+ fmt_premeeting_setting_label_mute_the_microphone_joinning_meeting: 'Mute the Microphone when joinning a meeting',
1376
+ fmt_premeeting_setting_label_speaker: 'Speaker',
1377
+ fmt_premeeting_setting_button_test_speaker: 'Test Speaker',
1378
+ fmt_premeeting_setting_label_click_test_speaker: 'Click “Test Speaker” to ensure you can hear others’ audio.',
1379
+ fmt_premeeting_setting_button_pause: 'Pause',
1380
+ fmt_premeeting_setting_label_change_speaker: 'If you cannot hear the test sound, please change the speaker.',
1381
+ fmt_premeeting_setting_label_output_level: 'Output Level',
1382
+ fmt_premeeting_setting_label_output_volume: 'Output Volume',
1383
+ fmt_premeeting_setting_label_automatically_adjust_volume: 'Automatically adjust {reason1} volume',
1384
+ fmt_premeeting_setting_label_microphone: 'Microphone',
1385
+ fmt_premeeting_setting_button_test_microphone: 'Test Microphone',
1386
+ fmt_premeeting_setting_label_speak_into_your_microphone: 'Speak into your microphone. If you cannot hear your own voice, please change the microphone.',
1387
+ fmt_premeeting_setting_button_recording: 'Recording',
1388
+ fmt_premeeting_setting_label_change_the_microphone: 'If you cannot hear the test sound, please change the microphone.',
1389
+ fmt_premeeting_setting_label_input_level: 'Input Level',
1390
+ fmt_premeeting_setting_label_input_volume: 'Input Volume',
1391
+ fmt_premeeting_setting_label_automatically_adjust_microphone_volume: 'Automatically adjust microphone volume',
1392
+ fmt_premeeting_setting_label_audio_noise_reduction_enhancement: 'Audio Noise Reduction and Enhancement',
1393
+ fmt_premeeting_setting_label_choose_audio_settings: 'Choose to reduce background noise or enable professional audio settings',
1394
+ fmt_premeeting_setting_label_enable_waiting_room: 'Enable waiting room',
1395
+ fmt_premeeting_setting_label_Off: 'Off',
1396
+ fmt_premeeting_setting_label_reduce_background_noise: 'Reduce Background Noise',
1397
+ fmt_premeeting_setting_label_auto: 'Auto',
1398
+ fmt_premeeting_setting_label_low: 'Low',
1399
+ fmt_premeeting_setting_label_medium: 'Medium',
1400
+ fmt_premeeting_setting_label_high: 'High',
1401
+ fmt_premeeting_setting_label_professional_audio: 'Professional Audio',
1402
+ fmt_premeeting_setting_label_enable_stereo: 'Enable Stereo',
1403
+ fmt_premeeting_setting_label_high_fidelity_music_mode: 'High-Fidelity Music Mode',
1404
+ fmt_premeeting_setting_label_echo_cancellation: 'Echo Cancellation',
1405
+ fmt_premeeting_setting_label_video_and_effect: 'Video and Effect',
1406
+ fmt_premeeting_setting_button_self_veiw: 'Self view',
1407
+ fmt_premeeting_setting_button_camera_veiw: 'Camera view',
1408
+ fmt_premeeting_setting_button_basic: 'Basic',
1409
+ fmt_premeeting_setting_button_background: 'Background',
1410
+ fmt_premeeting_setting_button_beauty_filter: 'Beauty Filter',
1411
+ fmt_premeeting_setting_label_camera: 'Camera',
1412
+ fmt_premeeting_setting_label_hd_video: 'HD Video',
1413
+ fmt_premeeting_setting_label_adjust_adapt_low_light: 'Adjust to adapt to low light',
1414
+ fmt_premeeting_setting_label_turn_off_video_joining_meeting: 'Turn off my video when joining a meeting',
1415
+ fmt_premeeting_setting_label_always_show_video_preview_dialog: 'Always show video preview dialog when joining video meetings',
1416
+ fmt_premeeting_setting_label_hide_participants_without_video: 'Hide participants without video',
1417
+ fmt_premeeting_setting_label_mirror_my_video: 'Mirror my video',
1418
+ fmt_premeeting_setting_label_16_participants: 'Support for 16 participants',
1419
+ fmt_premeeting_setting_label_25_participants: 'Support for 25 participants',
1420
+ fmt_premeeting_setting_label_advanced_Setting: 'Advanced Setting',
1421
+ fmt_premeeting_setting_label_optimize_video_quality_through_noise_reduction: 'Optimize video quality through noise reduction',
1422
+ fmt_premeeting_setting_label_hardware_acceleration_for_video_receiving: 'Use hardware acceleration for video receiving',
1423
+ fmt_premeeting_setting_label_about_us: 'About us',
1424
+ fmt_premeeting_setting_label_smart_meeting: 'Smart Meeting',
1425
+ fmt_premeeting_setting_label_version_now: 'Version {reason1}',
1426
+ fmt_premeeting_setting_button_check_for_update: 'Check for update',
1427
+ fmt_premeeting_setting_button_user_agreement: 'User Agreement',
1428
+ fmt_premeeting_setting_button_privacy_policy: 'Privacy Policy',
1429
+ fmt_premeeting_setting_button_disclaimer: 'Disclaimer',
1430
+ fmt_premeeting_setting_version_popup_label_latest_version: 'Latest Version',
1431
+ fmt_premeeting_setting_version_popup_label_latest_version_announcement: '{reason1} is the latest version',
1432
+ fmt_premeeting_setting_version_popup_button_ok: 'OK',
1433
+ fmt_premeeting_setting_version_popup_label_new_version_announcement: 'New version {reason1} is available',
1434
+ fmt_premeeting_setting_version_popup_label_current_version: 'Current version is {reason1}',
1435
+ fmt_premeeting_setting_version_popup_button_download_update: 'Download Update',
1436
+ fmt_premeeting_setting_version_popup_button_download_later: 'Try Later',
1437
+ fmt_premeeting_setting_label_downloading_update: 'Downloading Update',
1438
+ fmt_premeeting_setting_version_popup_button_cancel: 'Cancel',
1439
+ fmt_premeeting_setting_version_popup_new_version_ready: 'New Version is Ready',
1440
+ fmt_premeeting_setting_version_popup_label_restarting_to_experience: 'Experience it after restarting the application ({reason1})',
1441
+ fmt_premeeting_setting_version_popup_button_restart_application: 'Restart Application',
1442
+ fmt_premeeting_setting_version_popup_button_try_later: 'Try Later',
1443
+ fmt_meeting_mainwidow_version_popup_label_new_version_ready: 'New Version is Ready',
1444
+ fmt_meeting_mainwindow_version_popup_label_experience_after_restarting: 'Experience it after restarting the application ({reason1})',
1445
+ fmt_meeting_mainwindow_version_popup_button_restart_application: 'Restart Application',
1446
+ //****************** 同声传译-PC ******************
1447
+ fmt_interpretation_setting_controller_option_simultaneous_interpretation: 'Simultaneous Interpretation',
1448
+ fmt_interpretation_setting_controller_toast_turn_on_simultaneous_interpretation: 'Turn on Simultaneous Interpretation',
1449
+ fmt_interpretation_setting_controller_toast_turn_off_simultaneous_interpretation: 'Turn off Simultaneous Interpretation',
1450
+ fmt_interpretation_setting_popup_controller_label_simultaneous_interpretation: 'Simultaneous Interpretation',
1451
+ fmt_interpretation_setting_popup_controller_option_add_interpreter: 'Add Interpreter',
1452
+ fmt_interpretation_setting_popup_controller_label_interpreter: 'Interpreter {reason1}',
1453
+ fmt_interpretation_setting_popup_controller_labe_search_name: 'Search by name',
1454
+ fmt_interpretation_setting_popup_controller_labe_source_language: 'Language',
1455
+ fmt_interpretation_setting_popup_controller_labe_Translate_language: 'Language',
1456
+ fmt_interpretation_setting_popup_controller_option_new_add_interpreter: 'Add Interpreter',
1457
+ fmt_interpretation_setting_popup_controller_option_turn_on_simultaneous: 'Turn on Simultaneous Interpretation',
1458
+ fmt_interpretation_setting_popup_controller_option_add_interpreter_limited: 'Add Interpreter(Limited 10)',
1459
+ fmt_interpretation_setting_popup_controller_option_change: 'Change',
1460
+ fmt_interpretation_setting_popup_controller_option_stop_interpretation: 'Stop interpretation',
1461
+ fmt_interpretation_setting_popup_controller_option_change_comfirm: 'Comfirmation of changes',
1462
+ fmt_interpretation_popup_toast_interpretation_online: 'Simultaneous Interpretation has been activated',
1463
+ fmt_interpretation_popup_toast_interpreter_set_by_controller: 'The co-chairs {reason1} designated {reason1} and {reason1} as interpreters.',
1464
+ fmt_interpretation_sidebar_button_interpret: 'Interpret',
1465
+ fmt_interpretation_sidebar_toast_choose_language: 'Simultaneous interpretation is in progress, you can select different language channels to listen to it',
1466
+ fmt_interpretation_pupup_interpreter_offline: 'Translator offline',
1467
+ fmt_interpretation_popup_button_set: 'Go to assign',
1468
+ fmt_interpretation_popup_label_set: 'Interpreter xxx has left the meeting, please reassign the interpreter.',
1469
+ fmt_interpretation_popup_toast_label_return_meeting: 'xxx has re-entered the conference room',
1470
+ fmt_interpretation_interpreter_popup_label_welcome_interpreter_be_set: 'You have been assigned as an interpreter',
1471
+ fmt_interpretation_interpreter_popup_label_welcome_open_micro: 'Please make sure the microphone is turned on and switch between the two language outputs with the main interface button',
1472
+ fmt_interpretation_interpreter_popup_label_welcome_source_language: '{reason1}(Source Language)',
1473
+ fmt_interpretation_interpreter_popup_label_welcome_translate_language: '{reason1}(Translate Language)',
1474
+ fmt_interpretation_interpreter_popup_button_welcome_i_know: 'I got it.',
1475
+ fmt_interpretation_interpreter_toast_label_open_micro: 'Please turn on the microphone.',
1476
+ fmt_interpretation_interpreter_toast_label_change_channel: 'Click here to switch the voice channel and make sure the microphone is turned on.',
1477
+ fmt_interpretation_interpreter_popup_button_cn: 'Chinese',
1478
+ fmt_interpretation_interpreter_popup_button_en: 'English',
1479
+ fmt_interpretation_interpreter_toast_label_return_channel: 'You are the interpreter, currently on channel xxx.',
1480
+ fmt_interpretation_interpreter_popup_label_language_change_attention: 'Please note that the translation language has changed',
1481
+ fmt_interpretation_interpreter_popup_label_language_change_by_controller: 'The conference administrator has assigned your new translation language:',
1482
+ fmt_interpretation_interpreter_popup_label_language: '{reason1}',
1483
+ fmt_interpretation_interpreter_popup_button_i_know: 'I got it.',
1484
+ fmt_interpretation_interpreter_popup_label_interpret_cancel: 'Translation privileges have been withdrawn',
1485
+ fmt_interpretation_interpreter_popup_label_interpret_cancel_label: 'The conference administrator has revoked your status as a translator.',
1486
+ fmt_interpretation_interpreter_popup_button_know: 'Got it.',
1487
+ fmt_interpretation_mainwindow_toast_label_interpret_offline_controller: 'Co-moderator xxx has turned off simultaneous interpretation',
1488
+ fmt_interpretation_interpreter_popup_label_language_change_by_cocontroller: 'Co-host xxx has turned off simultaneous interpretation.',
1489
+ fmt_interpretation_attendness_sidbar_popup_option_original_aswell: 'Listen to the original voice at the same time',
1490
+ fmt_interpretation_controller_sidbar_popup_button_interpret_set: 'Simultaneous Interpretation Settings',
1491
+ fmt_interpretation_attendness_sidbar_popup_option_language_off: 'Close',
1492
+ fmt_interpretation_attendness_sidbar_popup_option_language_cn: 'Chinese',
1493
+ fmt_interpretation_attendness_sidbar_popup_option_language_eng: 'English',
1494
+ fmt_interpretation_attendness_popup_label_interpretation_online: 'Simultaneous Interpretation is enabled in the meeting room',
1495
+ fmt_interpretation_attendness_popup_label_interpretation_click: 'Please click “Simultaneous Interpretation” at the bottom of the operation bar.',
1496
+ fmt_interpretation_attendness_sidbar_popup_toast_label_channel_close: 'The simultaneous interpretation channel you have selected has been turned off, and has been switched to the original channel for you.',
1497
+ fmt_interpretation_mainwindow_toast_label_update_language: 'The co-host has updated the interpreter or language for simultaneous interpretation.',
1498
+ fmt_interpretation_mainwindow_toast_label_turn_off_interpret: 'You have turned off simultaneous interpretation',
1499
+ //****************** 同声传译-mobile ******************
1500
+ fmt_interpretation_mobile_setting_controller_option_interpret: 'simultaneous interpretation',
1501
+ fmt_interpretation_mobile_setting_controller_label_interpret: 'simultaneous interpretation',
1502
+ fmt_interpretation_mobile_setting_controller_toast_label_setting_by_member: 'xxx and other xxx people are setting up this function',
1503
+ fmt_interpretation_mobile_setting_controller_button_add_interpret: 'Add translator',
1504
+ fmt_interpretation_mobile_setting_controller_label_interpreter: 'Translator xxx',
1505
+ fmt_interpretation_mobile_setting_controller_label_name_search: 'Search by name',
1506
+ fmt_interpretation_mobile_setting_controller_label_cn: 'Chinese',
1507
+ fmt_interpretation_mobile_setting_controller_label_en: 'English',
1508
+ fmt_interpretation_mobile_setting_controller_button_turn_on_interpretation: 'Turn on simultaneous interpretation',
1509
+ fmt_interpretation_mobile_setting_controller_button_turn_off_interpretation: 'Turn off simultaneous interpretation',
1510
+ fmt_interpretation_mobile_setting_controller_button_save: 'save',
1511
+ fmt_interpretation_mobile_setting_controller_toast_label_complete_setting: 'Please complete the settings of all translators and their languages',
1512
+ fmt_interpretation_mobile_setting_controller_toast_label_setting_update: 'Settings updated',
1513
+ fmt_interpretation_mobile_setting_controller_option_french: 'French',
1514
+ fmt_interpretation_mobile_setting_controller_option_italian: 'Italian',
1515
+ fmt_interpretation_mobile_setting_controller_option_korean: 'Korean',
1516
+ fmt_interpretation_mobile_setting_controller_option_spanish: 'spanish',
1517
+ fmt_interpretation_mobile_setting_controller_option_japanese: 'Japanese',
1518
+ fmt_interpretation_mobile_chatwin_controller_label_assign_a_interpreter: 'Assign a Interpreter',
1519
+ fmt_interpretation_mobile_toast_controller_label_interpret_in_process: 'Simultaneous interpretation is in progress, you can choose different language channels to listen to',
1520
+ fmt_interpretation_mobile_toast_controller_toast_label_update_interpreter_by_cocontroller: 'Co-host xxx updated the translator or language of simultaneous interpretation',
1521
+ fmt_interpretation_mobile_interpreter_popup_label_as_interpreter: 'You are accused of being a translator',
1522
+ fmt_interpretation_mobile_interpreter_popup_label_open_microphone: 'Please confirm to turn on the microphone and switch the output between the two languages ​​through the main interface button',
1523
+ fmt_interpretation_mobile_interpreter_popup_label_en: 'English',
1524
+ fmt_interpretation_mobile_interpreter_popup_label_cn: 'Chinese',
1525
+ fmt_interpretation_mobile_interpreter_popup_button_i_know: 'I know',
1526
+ fmt_interpretation_mobile_interpreter_label_click_change_language: 'Click here to switch the voice channel to be conveyed and determine whether the microphone is turned on',
1527
+ fmt_interpretation_mobile_interpreter_toast_label_interpreter_channel: 'You are the translator, currently on channel xxx',
1528
+ fmt_interpretation_mobile_interpreter_popup_label_permission_revoke: 'Translation permission revoked',
1529
+ fmt_interpretation_mobile_interpreter_popup_label_status_cancel: 'The conference administrator has canceled your status as translator',
1530
+ fmt_interpretation_mobile_interpreter_popup_status_button_i_know: 'I know',
1531
+ fmt_interpretation_mobile_interpreter_popup_change_label_language_change: 'Please note that the translation language has changed',
1532
+ fmt_interpretation_mobile_interpreter_popup_change_button_i_know: 'I know',
1533
+ fmt_interpretation_mobile_attendnees_popup_lable_language_choose: 'Select language to translate',
1534
+ fmt_interpretation_mobile_attendnees_popup_option_off: 'closure',
1535
+ fmt_interpretation_mobile_attendnees_popup_option_cn: 'Chinese',
1536
+ fmt_interpretation_mobile_attendnees_popup_option_en: 'English',
1537
+ fmt_interpretation_mobile_attendnees_popup_label_original_aswell: 'Listen to the original sound at the same time',
1538
+ fmt_interpretation_mobile_controller_popup_button_interpret_setting: 'Simultaneous interpretation settings',
1539
+ 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.',
1540
+ //****************** 免密登陆 ******************
1541
+ fmt_meeting_creatpage_label_smart_meeting: 'Smart Meetings',
1542
+ fmt_meeting_creatpage_label_fast_experience: 'Fast Experience',
1543
+ fmt_meeting_creatpage_button_create_meeting: 'Create a Meeting',
1544
+ fmt_meeting_creatpage_label_room_name: 'Room Name',
1545
+ fmt_meeting_creatpage_label_enter_room_name: 'Please enter a room name',
1546
+ fmt_meeting_creatpage_label_user_name: 'User Name',
1547
+ fmt_meeting_creatpage_label_enter_user_name: 'Please enter your username',
1548
+ fmt_meeting_creatpage_label_duration: 'Duration',
1549
+ fmt_meeting_creatpage_label_enter_duration: 'Please enter the length of the meeting',
1550
+ fmt_meeting_creatpage_label_password: 'Password',
1551
+ fmt_meeting_creatpage_label_password_empty_admit_without_password: 'If the password is empty, participants will be admitted without password.',
1552
+ fmt_meeting_creatpage_label_enter_password: 'Please enter your password',
1553
+ fmt_meeting_creatpage_button_quick_meeting_creat: 'Quick Meeting Creation',
1554
+ fmt_meeting_creatpage_label_create_meeting_summary: 'Create meeting summary while joining the meeting',
1555
+ fmt_meeting_creatpage_label_agree_service: 'Agree to the “Smart Meeting User Service Agreement” and “Smart Meeting Privacy Policy”.',
1556
+ fmt_meeting_creatpage_button_join_meeting: 'Join Meeting',
1557
+ fmt_meeting_creatpage_label_join_room_num: 'Room Number',
1558
+ fmt_meeting_creatpage_label_join_enter_room_num: 'Please enter the room number',
1559
+ fmt_meeting_creatpage_label_join_user_name: 'User Name',
1560
+ fmt_meeting_creatpage_label_join_enter_user_name: 'Please enter your username',
1561
+ fmt_meeting_creatpage_label_join_password: 'Password',
1562
+ fmt_meeting_creatpage_label_join_enter_password: 'Please enter your password',
1563
+ fmt_meeting_creatpage_label_join_role: 'Role',
1564
+ fmt_meeting_creatpage_label_join_attendee: 'Attendee',
1565
+ fmt_meeting_creatpage_button_quick_join_meeting: 'Quickly join the meeting',
1566
+ fmt_meeting_creatpage_label_join_agree_service: 'Agree to “Smart Meeting User Service Agreement” and “Smart Meeting Privacy Policy”.',
1567
+ fmt_meeting_creatpage_popup_label_wrong_room_password: 'Room number does not exist or wrong password',
1568
+ fmt_meeting_mainwindow_topbar_left_button_meeting_detail: 'Meeting details {reason1}',
1569
+ fmt_meeting_mainwindow_topbar_left_popup_toast_copy_information: 'Press to copy the meeting information',
1570
+ fmt_meeting_mainwindow_topbar_left_popup_toast_copy_done: 'The meeting information has been copied to the clipboard',
1571
+ fmt_meeting_mainwindow_topbar_left_popup_label_share: 'Share meeting number or invitation link',
1572
+ fmt_meeting_mainwindow_topbar_left_popup_label_room_name: '{reason1}',
1573
+ fmt_meeting_mainwindow_topbar_left_popup_label_meeting_num: 'Meeting number {reason1}',
1574
+ fmt_meeting_mainwindow_topbar_left_popup_label_meeting_password: 'Meeting password {reason1}',
1575
+ fmt_meeting_mainwindow_topbar_left_popup_label_link: 'Invitation link {reason1}',
1576
+ fmt_meeting_mainwindow_topbar_left_popup_label_all_info: 'Copy all information',
1577
+ fmt_meeting_call_voice_call_button_copy_info: 'Copy Meeting Information',
1578
+ fmt_link_invitation: '{reason1} invites you to join the meeting The meeting topic: {reason2} The meeting time: {reason3} The meeting link: {reason4}. {reason5}',
1579
+ fmt_meeting_creatpage_toast_password_only_contain: 'Password can only contain numbers, letters and symbols',
1580
+ fmt_meeting_creatpage_toast_password_only_six: 'Membership password length is 6 digits',
1581
+ //****************** 翻译语言 ******************
1582
+ fmt_translate_language_chinese: 'Chinese',
1583
+ fmt_translate_language_english: 'English',
1584
+ fmt_translate_language_japanese: 'Japanese',
1585
+ fmt_translate_language_korean: 'Korean',
1586
+ fmt_translate_language_german: 'German',
1587
+ fmt_translate_language_french: 'French',
1588
+ fmt_translate_language_russian: 'Russian',
1589
+ fmt_translate_language_spanish: 'Spanish',
1590
+ fmt_translate_language_portuguese: 'Portuguese',
1591
+ fmt_translate_language_ilalian: 'Italian',
1592
+ fmt_translate_language_arabic: 'Arabic',
1593
+ fmt_translate_language_indonesian: 'Indonesian',
1594
+ fmt_translate_language_hindi: 'Hindi',
1595
+ fmt_translate_language_thai: 'Thai',
1596
+ fmt_translate_language_vietnamese: 'Vietnamese',
1597
+ fmt_translate_language_malay: 'Malay',
1598
+ fmt_translate_language_turkish: 'Turkish',
1599
+ fmt_translate_language_chinese_mini: 'Chinese',
1600
+ fmt_translate_language_english_mini: 'English',
1601
+ fmt_translate_language_japanese_mini: 'Japanese',
1602
+ fmt_translate_language_korean_mini: 'Korean',
1603
+ fmt_translate_language_german_mini: 'German',
1604
+ fmt_translate_language_french_mini: 'French',
1605
+ fmt_translate_language_russian_mini: 'Russian',
1606
+ fmt_translate_language_spanish_mini: 'Spanish',
1607
+ fmt_translate_language_portuguese_mini: 'Portuguese',
1608
+ fmt_translate_language_ilalian_mini: 'Italian',
1609
+ fmt_translate_language_arabic_mini: 'Arabic',
1610
+ fmt_translate_language_indonesian_mini: 'Indonesian',
1611
+ fmt_translate_language_hindi_mini: 'Hindi',
1612
+ fmt_translate_language_thai_mini: 'Thai',
1613
+ fmt_translate_language_vietnamese_mini: 'Vietnamese',
1614
+ fmt_translate_language_malay_mini: 'Malay',
1615
+ fmt_translate_language_turkish_mini: 'Turkish',
1616
+ fmt_waitingroom_attendie_overview_label__toast_move_to_waitingroom: 'You have been moved to the waiting room.',
1617
+ fmt_waitingroom_mobile_notice_popup_button_join_now_no_count: 'Join Now'
1016
1618
  };