fcr-ui-scene 3.2.0 → 3.3.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 (356) hide show
  1. package/dist/electron/app.js +148 -0
  2. package/dist/electron/bootstrap-dev.js +51 -0
  3. package/dist/electron/bootstrap-sdk.js +56 -0
  4. package/dist/electron/default-options.js +25 -0
  5. package/dist/electron/env.js +13 -0
  6. package/dist/electron/index.js +20 -0
  7. package/dist/electron/injections.js +702 -0
  8. package/dist/electron/logger.js +66 -0
  9. package/dist/electron/main.js +67 -0
  10. package/dist/electron/plugins/meeting-state.js +39 -0
  11. package/dist/electron/plugins/screenshot.js +49 -0
  12. package/dist/electron/preload.js +36 -0
  13. package/dist/electron/tools.js +66 -0
  14. package/dist/electron/window.js +124 -0
  15. package/installer/icons/favicon.ico +0 -0
  16. package/installer/icons/favicon.png +0 -0
  17. package/installer/mac/entitlements.mac.plist +16 -0
  18. package/lib/common/device-store.d.ts +1 -1
  19. package/lib/common/device-store.js +11 -3
  20. package/lib/common/event-store.d.ts +17 -1
  21. package/lib/common/event-store.js +38 -5
  22. package/lib/common/room-store.d.ts +55 -0
  23. package/lib/common/room-store.js +395 -0
  24. package/lib/common/security-store.d.ts +14 -4
  25. package/lib/common/security-store.js +149 -30
  26. package/lib/creator.js +2 -0
  27. package/lib/electron/app.js +8 -0
  28. package/lib/electron/bootstrap-dev.d.ts +1 -0
  29. package/lib/electron/bootstrap-dev.js +51 -0
  30. package/lib/electron/bootstrap-sdk.d.ts +1 -0
  31. package/lib/electron/bootstrap-sdk.js +57 -0
  32. package/lib/electron/bootstrap.d.ts +1 -0
  33. package/lib/electron/bootstrap.js +56 -0
  34. package/lib/electron/default-options.js +1 -1
  35. package/lib/electron/dev.d.ts +1 -0
  36. package/lib/electron/dev.js +51 -0
  37. package/lib/electron/injections.d.ts +2 -1
  38. package/lib/electron/injections.js +6 -6
  39. package/lib/electron/main.js +4 -16
  40. package/lib/electron/plugins/meeting-state.d.ts +2 -0
  41. package/lib/electron/plugins/meeting-state.js +39 -0
  42. package/lib/electron/preload.js +2 -1
  43. package/lib/fragments/control-bar/control-bar-store.d.ts +34 -1
  44. package/lib/fragments/control-bar/control-bar-store.js +371 -79
  45. package/lib/fragments/control-bar/device/index.js +5 -3
  46. package/lib/fragments/control-bar/index.css +15 -10
  47. package/lib/fragments/control-bar/index.js +18 -0
  48. package/lib/fragments/control-bar/meeting-details/meeting-detail.css +109 -0
  49. package/lib/fragments/control-bar/meeting-details/meeting-details-portal.d.ts +3 -0
  50. package/lib/fragments/control-bar/meeting-details/meeting-details-portal.js +60 -0
  51. package/lib/fragments/control-bar/meeting-details/meeting-details.d.ts +2 -0
  52. package/lib/fragments/control-bar/meeting-details/meeting-details.js +179 -0
  53. package/lib/fragments/control-bar/more-actions/index.css +53 -0
  54. package/lib/fragments/control-bar/more-actions/index.js +72 -37
  55. package/lib/fragments/control-bar/security-content/index.css +10 -0
  56. package/lib/fragments/control-bar/security-content/index.js +40 -18
  57. package/lib/fragments/control-bar/view.js +8 -2
  58. package/lib/login-confirm-dialog.d.ts +12 -0
  59. package/lib/login-confirm-dialog.js +80 -0
  60. package/lib/modules/Interpreter/add-button/index.css +4 -0
  61. package/lib/modules/Interpreter/add-button/index.d.ts +11 -0
  62. package/lib/modules/Interpreter/add-button/index.js +41 -0
  63. package/lib/modules/Interpreter/config.d.ts +16 -0
  64. package/lib/modules/Interpreter/config.js +17 -0
  65. package/lib/modules/Interpreter/constant.d.ts +44 -0
  66. package/lib/modules/Interpreter/constant.js +60 -0
  67. package/lib/modules/Interpreter/context.d.ts +2 -0
  68. package/lib/modules/Interpreter/context.js +9 -0
  69. package/lib/modules/Interpreter/dialog-content/index.css +33 -0
  70. package/lib/modules/Interpreter/dialog-content/index.d.ts +8 -0
  71. package/lib/modules/Interpreter/dialog-content/index.js +34 -0
  72. package/lib/modules/Interpreter/footer/components/interpreter-btn/index.d.ts +5 -0
  73. package/lib/modules/Interpreter/footer/components/interpreter-btn/index.js +56 -0
  74. package/lib/modules/Interpreter/footer/components/set-btn/index.d.ts +5 -0
  75. package/lib/modules/Interpreter/footer/components/set-btn/index.js +46 -0
  76. package/lib/modules/Interpreter/footer/components/tooltip-wrapper/index.d.ts +6 -0
  77. package/lib/modules/Interpreter/footer/components/tooltip-wrapper/index.js +28 -0
  78. package/lib/modules/Interpreter/footer/index.css +10 -0
  79. package/lib/modules/Interpreter/footer/index.d.ts +3 -0
  80. package/lib/modules/Interpreter/footer/index.js +35 -0
  81. package/lib/modules/Interpreter/index.css +8 -0
  82. package/lib/modules/Interpreter/index.d.ts +21 -0
  83. package/lib/modules/Interpreter/index.js +110 -0
  84. package/lib/modules/Interpreter/interpreter-list/index.css +21 -0
  85. package/lib/modules/Interpreter/interpreter-list/index.d.ts +3 -0
  86. package/lib/modules/Interpreter/interpreter-list/index.js +65 -0
  87. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/index.css +31 -0
  88. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/index.d.ts +11 -0
  89. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/index.js +141 -0
  90. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ar.png +0 -0
  91. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_cn.png +0 -0
  92. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_de.png +0 -0
  93. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_en.png +0 -0
  94. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_es.png +0 -0
  95. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_fr.png +0 -0
  96. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_hi.png +0 -0
  97. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_id.png +0 -0
  98. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_it.png +0 -0
  99. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_jp.png +0 -0
  100. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ko.png +0 -0
  101. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ms.png +0 -0
  102. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_pt.png +0 -0
  103. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ru.png +0 -0
  104. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_th.png +0 -0
  105. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_tr.png +0 -0
  106. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_vi.png +0 -0
  107. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.d.ts +11 -0
  108. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.js +119 -0
  109. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-user/index.css +41 -0
  110. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-user/index.d.ts +12 -0
  111. package/lib/modules/Interpreter/interpreter-list/interpreter-item/components/pick-user/index.js +118 -0
  112. package/lib/modules/Interpreter/interpreter-list/interpreter-item/index.css +34 -0
  113. package/lib/modules/Interpreter/interpreter-list/interpreter-item/index.d.ts +8 -0
  114. package/lib/modules/Interpreter/interpreter-list/interpreter-item/index.js +65 -0
  115. package/lib/modules/Interpreter/loading-wrapper/index.css +53 -0
  116. package/lib/modules/Interpreter/loading-wrapper/index.d.ts +6 -0
  117. package/lib/modules/Interpreter/loading-wrapper/index.js +28 -0
  118. package/lib/modules/Interpreter/store.d.ts +82 -0
  119. package/lib/modules/Interpreter/store.js +1382 -0
  120. package/lib/modules/Interpreter/view.d.ts +3 -0
  121. package/lib/modules/Interpreter/view.js +32 -0
  122. package/lib/modules/action-bar/Interpreter/index.d.ts +6 -0
  123. package/lib/modules/action-bar/Interpreter/index.js +44 -0
  124. package/lib/modules/action-bar/action-bar-collapes-items.js +5 -5
  125. package/lib/modules/action-bar/apps/appitems.d.ts +2 -0
  126. package/lib/modules/action-bar/apps/appitems.js +40 -0
  127. package/lib/modules/action-bar/apps/index.css +6 -0
  128. package/lib/modules/action-bar/apps/index.d.ts +4 -0
  129. package/lib/modules/action-bar/apps/index.js +58 -0
  130. package/lib/modules/action-bar/chat/index.js +5 -5
  131. package/lib/modules/action-bar/device/index.css +7 -2
  132. package/lib/modules/action-bar/device/index.js +4 -4
  133. package/lib/modules/action-bar/index.css +59 -12
  134. package/lib/modules/action-bar/index.d.ts +3 -2
  135. package/lib/modules/action-bar/index.dev.js +1 -1
  136. package/lib/modules/action-bar/index.js +21 -0
  137. package/lib/modules/action-bar/leave/assign-host.d.ts +3 -0
  138. package/lib/modules/action-bar/leave/assign-host.js +2 -4
  139. package/lib/modules/action-bar/leave/index.js +29 -6
  140. package/lib/modules/action-bar/leave/leave-meeting.d.ts +11 -0
  141. package/lib/modules/action-bar/leave/leave-meeting.js +25 -16
  142. package/lib/modules/action-bar/more/poppover-content.js +4 -4
  143. package/lib/modules/action-bar/participants/index.css +12 -0
  144. package/lib/modules/action-bar/participants/index.js +21 -14
  145. package/lib/modules/action-bar/screen-share/index.js +5 -1
  146. package/lib/modules/action-bar/screen-share/submenu.js +16 -22
  147. package/lib/modules/action-bar/security/drop-menu.js +90 -13
  148. package/lib/modules/action-bar/store.d.ts +38 -6
  149. package/lib/modules/action-bar/store.js +487 -95
  150. package/lib/modules/action-bar/switch-input-language-room/fcr_translateswitch.png +0 -0
  151. package/lib/modules/action-bar/switch-input-language-room/index.css +86 -0
  152. package/lib/modules/action-bar/switch-input-language-room/index.d.ts +17 -0
  153. package/lib/modules/action-bar/switch-input-language-room/index.js +145 -0
  154. package/lib/modules/action-bar/switch-output-language-room/drop-menu.d.ts +1 -0
  155. package/lib/modules/action-bar/switch-output-language-room/drop-menu.js +197 -0
  156. package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.css +18 -0
  157. package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.d.ts +8 -0
  158. package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.js +59 -0
  159. package/lib/modules/action-bar/switch-output-language-room/index.d.ts +12 -0
  160. package/lib/modules/action-bar/switch-output-language-room/index.js +238 -0
  161. package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.css +54 -0
  162. package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.d.ts +8 -0
  163. package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.js +94 -0
  164. package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.css +8 -0
  165. package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.d.ts +4 -0
  166. package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.js +31 -0
  167. package/lib/modules/action-bar/switch-output-language-room/notification-bar/dome.png +0 -0
  168. package/lib/modules/action-bar/switch-output-language-room/notification-bar/fcr_translateswitch.png +0 -0
  169. package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.css +71 -0
  170. package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.d.ts +2 -0
  171. package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.js +82 -0
  172. package/lib/modules/action-bar/view.js +65 -42
  173. package/lib/modules/chat/chat-bar/index.js +39 -27
  174. package/lib/modules/chat/chat-select/index.css +14 -4
  175. package/lib/modules/chat/chat.d.ts +1 -2
  176. package/lib/modules/chat/chat.js +184 -105
  177. package/lib/modules/chat/index.css +49 -0
  178. package/lib/modules/chat/index.d.ts +2 -2
  179. package/lib/modules/chat/index.dev.js +1 -1
  180. package/lib/modules/chat/index.js +13 -8
  181. package/lib/modules/chat/message-list.js +59 -48
  182. package/lib/modules/chat/store.d.ts +48 -2
  183. package/lib/modules/chat/store.js +258 -45
  184. package/lib/modules/connection-gateway/index.d.ts +2 -1
  185. package/lib/modules/connection-gateway/store.d.ts +6 -3
  186. package/lib/modules/connection-gateway/store.js +5 -1
  187. package/lib/modules/device-pretest/audio-preview/speaker-control.js +1 -1
  188. package/lib/modules/device-pretest/index.css +0 -4
  189. package/lib/modules/device-pretest/settings/beauty.js +17 -6
  190. package/lib/modules/device-pretest/store.js +7 -11
  191. package/lib/modules/dialog/components/Interpreter/electron.d.ts +2 -0
  192. package/lib/modules/dialog/components/Interpreter/electron.js +72 -0
  193. package/lib/modules/dialog/components/Interpreter/index.css +30 -0
  194. package/lib/modules/dialog/components/Interpreter/index.d.ts +4 -0
  195. package/lib/modules/dialog/components/Interpreter/index.js +61 -0
  196. package/lib/modules/dialog/components/Interpreter/user-queue/index.css +36 -0
  197. package/lib/modules/dialog/components/Interpreter/user-queue/index.d.ts +3 -0
  198. package/lib/modules/dialog/components/Interpreter/user-queue/index.js +47 -0
  199. package/lib/modules/dialog/components/chat/electron.js +2 -1
  200. package/lib/modules/dialog/components/confirm/electron.js +5 -3
  201. package/lib/modules/dialog/components/connection-gateway/electron.js +3 -1
  202. package/lib/modules/dialog/components/connection-gateway/index.css +0 -2
  203. package/lib/modules/dialog/components/device-setting/electron.js +3 -1
  204. package/lib/modules/dialog/components/device-setting/index.css +0 -1
  205. package/lib/modules/dialog/components/operation-waiting-room/electron.d.ts +5 -0
  206. package/lib/modules/dialog/components/operation-waiting-room/electron.js +89 -0
  207. package/lib/modules/dialog/components/operation-waiting-room/index.css +44 -0
  208. package/lib/modules/dialog/components/operation-waiting-room/index.d.ts +5 -0
  209. package/lib/modules/dialog/components/operation-waiting-room/index.js +156 -0
  210. package/lib/modules/dialog/components/participant/electron.js +2 -1
  211. package/lib/modules/dialog/components/remove-admit-waiting-room/electron.d.ts +5 -0
  212. package/lib/modules/dialog/components/remove-admit-waiting-room/electron.js +89 -0
  213. package/lib/modules/dialog/components/remove-admit-waiting-room/index.css +50 -0
  214. package/lib/modules/dialog/components/remove-admit-waiting-room/index.d.ts +5 -0
  215. package/lib/modules/dialog/components/remove-admit-waiting-room/index.js +90 -0
  216. package/lib/modules/dialog/components/switch-language-channels/electron.d.ts +2 -0
  217. package/lib/modules/dialog/components/switch-language-channels/electron.js +72 -0
  218. package/lib/modules/dialog/components/switch-language-channels/index.css +30 -0
  219. package/lib/modules/dialog/components/switch-language-channels/index.d.ts +4 -0
  220. package/lib/modules/dialog/components/switch-language-channels/index.js +63 -0
  221. package/lib/modules/dialog/components/switch-language-channels/user-queue/index.css +36 -0
  222. package/lib/modules/dialog/components/switch-language-channels/user-queue/index.d.ts +3 -0
  223. package/lib/modules/dialog/components/switch-language-channels/user-queue/index.js +47 -0
  224. package/lib/modules/dialog/components/whiteboard/index.js +2 -1
  225. package/lib/modules/dialog/dialogs.js +17 -13
  226. package/lib/modules/dialog/index.css +2 -0
  227. package/lib/modules/dialog/store.d.ts +4 -0
  228. package/lib/modules/dialog/store.js +16 -2
  229. package/lib/modules/event-notification/context.d.ts +2 -0
  230. package/lib/modules/event-notification/context.js +9 -0
  231. package/lib/modules/event-notification/index.css +58 -0
  232. package/lib/modules/event-notification/index.d.ts +13 -0
  233. package/lib/modules/event-notification/index.js +48 -0
  234. package/lib/modules/event-notification/store.d.ts +17 -0
  235. package/lib/modules/event-notification/store.js +133 -0
  236. package/lib/modules/event-notification/view.d.ts +5 -0
  237. package/lib/modules/event-notification/view.js +114 -0
  238. package/lib/modules/invite/index.css +4 -4
  239. package/lib/modules/invite/pstn-invite.js +1 -0
  240. package/lib/modules/layout/components/Gallery.js +7 -1
  241. package/lib/modules/layout/components/Layout.js +82 -57
  242. package/lib/modules/layout/components/index.css +33 -6
  243. package/lib/modules/layout/index.css +30 -0
  244. package/lib/modules/layout/member-window/index.js +9 -3
  245. package/lib/modules/layout/store.d.ts +19 -2
  246. package/lib/modules/layout/store.js +177 -70
  247. package/lib/modules/layout/video-window-datasource.d.ts +1 -1
  248. package/lib/modules/layout/video-window-datasource.js +1 -1
  249. package/lib/modules/live-streaming/index.dev.js +1 -1
  250. package/lib/modules/notification/context.d.ts +2 -0
  251. package/lib/modules/notification/context.js +9 -0
  252. package/lib/modules/notification/index.css +58 -0
  253. package/lib/modules/notification/index.d.ts +15 -0
  254. package/lib/modules/notification/index.js +51 -0
  255. package/lib/modules/notification/interpreter-status/index.css +72 -0
  256. package/lib/modules/notification/interpreter-status/index.d.ts +3 -0
  257. package/lib/modules/notification/interpreter-status/index.js +59 -0
  258. package/lib/modules/notification/store.d.ts +16 -0
  259. package/lib/modules/notification/store.js +127 -0
  260. package/lib/modules/notification/view.d.ts +10 -0
  261. package/lib/modules/notification/view.js +116 -0
  262. package/lib/modules/participant/attendee/index.d.ts +12 -3
  263. package/lib/modules/participant/attendee/index.js +132 -30
  264. package/lib/modules/participant/index.css +20 -0
  265. package/lib/modules/participant/index.d.ts +5 -2
  266. package/lib/modules/participant/index.dev.js +1 -1
  267. package/lib/modules/participant/index.js +27 -0
  268. package/lib/modules/participant/room-control-drop-menu/index.css +37 -0
  269. package/lib/modules/participant/store.d.ts +30 -5
  270. package/lib/modules/participant/store.js +347 -74
  271. package/lib/modules/participant/view.js +133 -34
  272. package/lib/modules/setting/index.css +1 -5
  273. package/lib/modules/setting/index.dev.js +1 -1
  274. package/lib/modules/setting/store.d.ts +2 -2
  275. package/lib/modules/setting/store.js +3 -8
  276. package/lib/modules/setting/translate-settings/translate-settings.js +1 -1
  277. package/lib/modules/setting/video-settings/index.css +9 -6
  278. package/lib/modules/share-screen/index.d.ts +2 -0
  279. package/lib/modules/share-screen/index.dev.js +3 -2
  280. package/lib/modules/share-screen/selection/index.css +2 -0
  281. package/lib/modules/share-screen/store.d.ts +6 -3
  282. package/lib/modules/share-screen/store.js +170 -129
  283. package/lib/modules/state-bar/index.css +2 -2
  284. package/lib/modules/state-bar/index.d.ts +2 -2
  285. package/lib/modules/state-bar/index.dev.js +1 -1
  286. package/lib/modules/state-bar/meeting-detail.css +6 -4
  287. package/lib/modules/state-bar/meeting-details.js +32 -5
  288. package/lib/modules/state-bar/meeting-network-state.css +14 -3
  289. package/lib/modules/state-bar/meeting-network-state.js +10 -4
  290. package/lib/modules/state-bar/recording.js +3 -5
  291. package/lib/modules/state-bar/store.d.ts +5 -2
  292. package/lib/modules/state-bar/store.js +32 -5
  293. package/lib/modules/state-bar/view.js +7 -10
  294. package/lib/modules/video-window/index.css +1 -0
  295. package/lib/modules/video-window/store.d.ts +2 -2
  296. package/lib/modules/video-window/store.js +14 -11
  297. package/lib/modules/waiting-room-layout/context.d.ts +2 -0
  298. package/lib/modules/waiting-room-layout/context.js +9 -0
  299. package/lib/modules/waiting-room-layout/index.css +71 -0
  300. package/lib/modules/waiting-room-layout/index.d.ts +8 -0
  301. package/lib/modules/waiting-room-layout/index.js +47 -0
  302. package/lib/modules/waiting-room-layout/store.d.ts +30 -0
  303. package/lib/modules/waiting-room-layout/store.js +189 -0
  304. package/lib/modules/waiting-room-layout/type.d.ts +0 -0
  305. package/lib/modules/waiting-room-layout/type.js +1 -0
  306. package/lib/modules/waiting-room-layout/view.d.ts +3 -0
  307. package/lib/modules/waiting-room-layout/view.js +67 -0
  308. package/lib/modules/whiteboard/app.js +0 -6
  309. package/lib/modules/whiteboard/components/control-bar/index.css +3 -0
  310. package/lib/modules/whiteboard/components/multi-window/index.js +6 -1
  311. package/lib/modules/whiteboard/components/progress/electron.js +2 -1
  312. package/lib/modules/whiteboard/components/switch-theme/index.css +4 -0
  313. package/lib/modules/whiteboard/components/switch-theme/index.d.ts +2 -1
  314. package/lib/modules/whiteboard/components/switch-theme/index.js +20 -15
  315. package/lib/modules/whiteboard/components/switch-theme/item.d.ts +1 -0
  316. package/lib/modules/whiteboard/components/switch-theme/item.js +9 -2
  317. package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +14 -10
  318. package/lib/modules/whiteboard/components/toolbar/store.d.ts +1 -0
  319. package/lib/modules/whiteboard/components/toolbar/store.js +3 -0
  320. package/lib/modules/whiteboard/context.d.ts +4 -0
  321. package/lib/modules/whiteboard/context.js +4 -2
  322. package/lib/modules/whiteboard/index.js +22 -6
  323. package/lib/plugins/browser-runtime-plugin.js +4 -1
  324. package/lib/plugins/module-dev-plugin.js +8 -6
  325. package/lib/runtime.d.ts +2 -1
  326. package/lib/translations/enUS.d.ts +449 -6
  327. package/lib/translations/enUS.js +485 -32
  328. package/lib/translations/zhCN.d.ts +447 -6
  329. package/lib/translations/zhCN.js +468 -17
  330. package/lib/type.d.ts +6 -2
  331. package/lib/ui-manager.d.ts +7 -3
  332. package/lib/ui-manager.js +576 -139
  333. package/lib/ui-scene.d.ts +1 -0
  334. package/lib/ui-scene.js +26 -21
  335. package/lib/utilities/constant.d.ts +43 -4
  336. package/lib/utilities/constant.js +41 -1
  337. package/lib/utilities/parameters.js +2 -2
  338. package/lib/utilities/renderer.d.ts +1 -0
  339. package/lib/utilities/renderer.js +6 -2
  340. package/package.json +14 -14
  341. package/public/assets/fcr_defaultpage.png +0 -0
  342. package/public/assets/login_confirm.png +0 -0
  343. package/public/index.html +34 -11
  344. package/dist/132.js +0 -2
  345. package/dist/132.js.LICENSE.txt +0 -311
  346. package/dist/651.js +0 -2
  347. package/dist/651.js.LICENSE.txt +0 -1
  348. package/dist/73.js +0 -1
  349. package/dist/index.html +0 -13
  350. package/dist/main.da7c203ab32d15742cfe.css +0 -11760
  351. package/dist/main.js +0 -2
  352. package/dist/main.js.LICENSE.txt +0 -254
  353. package/dist/worker-entry.worker.js.LICENSE.txt +0 -13
  354. package/lib/modules/device-pretest/settings/index.css +0 -15
  355. package/lib/modules/participant/attendee/participants-more-action.d.ts +0 -18
  356. package/lib/modules/participant/attendee/participants-more-action.js +0 -278
@@ -241,6 +241,8 @@ var enUs = exports.enUs = {
241
241
  fmt_device_statues_opend: 'Opened',
242
242
  fmt_device_statues_closed: 'Closed',
243
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',
244
246
  fmt_device_options_smoother: 'Smoother',
245
247
  fmt_device_options_brighter: 'Brighter',
246
248
  fmt_device_tips_videoeffectson: 'If the camera is turned on, the video effects will change in real-time',
@@ -330,6 +332,7 @@ var enUs = exports.enUs = {
330
332
  fmt_uimanager_option_Sharedmono: 'Shared mono',
331
333
  fmt_uimanager_option_Monochannel: 'Mono channel',
332
334
  fmt_uimanager_option_Stereo: 'Stereo (high fidelity)',
335
+ fmt_uimanager_option_Improvefluency: 'Improve video fluency',
333
336
  fmt_uimanager_option_Fluencypriority: 'Fluency first',
334
337
  fmt_uimanager_option_Movebottom: 'Move to the bottom',
335
338
  fmt_uimanager_option_Movetop: 'Move to the top',
@@ -582,6 +585,7 @@ var enUs = exports.enUs = {
582
585
  fmt_screenshare_whiteboard_button_dragdrop: 'Drag and drop',
583
586
  fmt_screenshare_whiteboard_button_savescript: 'Save Whiteboard Script',
584
587
  fmt_screenshare_whiteboard_button_spread: 'Spread',
588
+ fmt_screenshare_whiteboard_tips_choose_pen_first: 'Start by selecting a shape or brush',
585
589
  fmt_screenshare_whiteboard_tips_downloading: 'The blackboard is currently being downloaded',
586
590
  fmt_screenshare_whiteboard_tips_savedsuccessfully: 'Board book saved successfully',
587
591
  fmt_screenshare_whiteboard_tips_failed: 'Board saving failed',
@@ -601,6 +605,7 @@ var enUs = exports.enUs = {
601
605
  fmt_share_options_purple: 'Purple',
602
606
  fmt_share_options_green: 'Green',
603
607
  fmt_share_options_whiteboard: 'Whiteboard',
608
+ fmt_share_options_red: 'Red',
604
609
  fmt_whiteboard_save_success: 'Image storage succeed',
605
610
  fmt_whiteboard_save_failure: 'Image download failed',
606
611
  fmt_whiteboard_tips_two_finger_move: 'Move whiteboard by two fingers',
@@ -1016,15 +1021,60 @@ var enUs = exports.enUs = {
1016
1021
  fmt_SIP323_copywrite_phonenumber: 'Mobile phone number (required)',
1017
1022
  fmt_SIP323_options_detailedinfor: 'Copy meeting detail',
1018
1023
  fmt_SIP323_tips_alreadycopied: 'Already copied on the clipboard',
1019
- fmt_waitingroom_setting_option_enable_waitingroom: 'Enable Waiting Room ',
1020
- fmt_waitingroom_setting_option_close_waitingroom: 'Disable Waiting Room',
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',
1021
1071
  fmt_waitingroom_setting_popup_close_waitingroom: 'Closing the Waiting Room?',
1022
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?',
1023
- fmt_waitingroom_setting_button_admit_all: 'Admit all Waiting Room users',
1024
- fmt_waitingroom_setting_button_remove_all: 'Remove all Waiting Room users',
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',
1025
1075
  fmt_waitingroom_setting_button_cancel: 'Cancel',
1026
- fmt_waitingroom_sidebar_move_to_waitingroom: 'Move out to the waiting room',
1027
- fmt_waitingroom_sidebar_label_waiting: 'Waiting Room{reason1}',
1076
+ fmt_waitingroom_sidebar_button_move_to_waitingroom: 'Move out to the waiting room',
1077
+ fmt_waitingroom_sidebar_label_waiting: '{reason1} Waiting',
1028
1078
  fmt_waitingroom_sidebar_label_search: 'Search',
1029
1079
  fmt_waitingroom_sidebar_button_invite: 'Invite',
1030
1080
  fmt_waitingroom_sidebar_button_admit: 'Admit',
@@ -1033,40 +1083,47 @@ var enUs = exports.enUs = {
1033
1083
  fmt_waitingroom_sidebar_button_remove: 'Remove',
1034
1084
  fmt_waitingroom_sidebar_button_removeall: 'Remove all',
1035
1085
  fmt_waitingroom_sidebar_button_admitall: 'Admit all',
1036
- fmt_waitingroom_sidebar_popup_removeall: 'Remove waiting Attendee',
1086
+ fmt_waitingroom_sidebar_popup_removeall: 'Remove waiting members',
1037
1087
  fmt_waitingroom_sidebar_popup_label_remove: 'Are you sure you want to remove {reason1} from the waiting room?',
1038
- fmt_waitingroom_sidebar_popup_option_notagain: 'Do not allow the user to join the meeting again ',
1088
+ fmt_waitingroom_sidebar_popup_option_notagain: 'Do not allow the user to join the meeting again',
1039
1089
  fmt_waitingroom_sidebar_popup_button_cancel: 'Cancel',
1040
1090
  fmt_waitingroom_sidebar_popup_button_remove: 'Remove',
1041
1091
  fmt_waitingroom_sidebar_popup_popup_admit: 'Admit Waiting Attendee',
1042
1092
  fmt_waitingroom_sidebar_popup_label_admitall: 'Do you want to admit all attendees in the waiting room to the meeting?',
1043
- fmt_waitingroom_sidebar_popup_button_admitall: 'Admit All ',
1093
+ fmt_waitingroom_sidebar_popup_button_admitall: 'Admit All',
1044
1094
  fmt_waitingroom_attendie_popup_label_removed: 'You are removed from the meetin ,failed to join',
1045
- fmt_waitingroom_attendie_popup_button_gotit: 'Got it ',
1095
+ fmt_waitingroom_attendie_popup_button_gotit: 'Got it',
1046
1096
  fmt_waitingroom_sidebar_chat_label_waiting: 'Waiting Room{reason1}',
1047
- fmt_waitingroom_sidebar_chat_label_notsend: 'Atteendees can not send messages while stay in the meeting room',
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',
1048
1099
  fmt_waitingroom_sidebar_chat_label_all_attendees: 'All attendees in the waiting room',
1049
1100
  fmt_waitingroom_mainwindow_popup_label_waitingroom: 'Waiting room',
1050
- fmt_waitingroom_mainwindow_popup_label_waiting: '{reason1} mans waiting',
1051
- fmt_waitingroom_mainwindow_popup_button_view_detailed: 'View detailed ',
1052
- fmt_waitingroom_mainwindow_popup_button_not_remind: 'Do not remind ',
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',
1053
1104
  fmt_waitingroom_attendie_popup_label_Leave: 'Leave meeting',
1054
1105
  fmt_waitingroom_attendie_popup_label_click_leave: 'You are removed from the meeting, click the button to leave.',
1055
1106
  fmt_waitingroom_attendie_overview_label_waitingroom: 'Waiting Room',
1056
1107
  fmt_waitingroom_attendie_overview_label_wait_moment: 'The host has activated the waiting room,please wait a moment.',
1057
- fmt_waitingroom_attendie_overview_label_attendees: 'Atendees in the waiting room',
1058
- fmt_waitingroom_attendie_overview_label_no_messages: 'No messages by now ',
1059
- fmt_waitingroom_mobile_setting_label_enable: 'Enable Waiting Room ',
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',
1060
1118
  fmt_waitingroom_mobile_setting_label_disable: 'Disable Waiting Room',
1061
1119
  fmt_waitingroom_mobile_setting_popup_label_close: 'Closing the Waiting Room?',
1062
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?',
1063
1121
  fmt_waitingroom_mobile_setting_popup_button_admit_all: 'Admit all Waiting Room users',
1064
- fmt_waitingroom_mobile_setting_popup_button_remove_all: 'Remove all Waiting Room users',
1065
- fmt_waitingroom_mobile_setting_popup_button_cancel: 'Cancel',
1122
+ fmt_waitingroom_mobile_setting_popup_button_cancel: 'Withheld',
1066
1123
  fmt_waitingroom_mobile_setting_tips_deactivate: '{reason1} The Waiting Room has been deactivated',
1067
1124
  fmt_waitingroom_mobile_setting_tips_disable: "You've disabled the Waiting Room",
1068
1125
  fmt_waitingroom_mobile_setting_button_move_into_waitingroom: 'Move into the waiting room',
1069
- fmt_waitingroom_mobile_memberlist_label_: 'Waiting Room',
1126
+ fmt_waitingroom_mobile_memberlist_label_waitingroom: 'Waiting Room',
1070
1127
  fmt_waitingroom_mobile_memberlist_popup_label_search: 'Search',
1071
1128
  fmt_waitingroom_mobile_memberlist_popup_moveout: 'Move out',
1072
1129
  fmt_waitingroom_mobile_memberlist_button_admit: 'Admit',
@@ -1077,26 +1134,27 @@ var enUs = exports.enUs = {
1077
1134
  fmt_waitingroom_mobile_memberlist_button_cancel: 'Cancel',
1078
1135
  fmt_waitingroom_mobile_memberlist_button_remove: 'Remove',
1079
1136
  fmt_waitingroom_mobile_memberlist_popup_label_remove_all: 'Remove all waiting room members?',
1080
- fmt_waitingroom_mobile_memberlist_popup_label_sure_to_remove_all: 'Remove all waiting room members?',
1081
- fmt_waitingroom_mobile_memberlist_button_remove_all: 'Remove all',
1082
- fmt_waitingroom_mobile_memberlist_popup_label_admit_all: 'All members are admitted to the meeting ',
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',
1083
1140
  fmt_waitingroom_mobile_memberlist_popup_label_sure_to_admit_all: 'Whether to allow all waiting room members to join the meeting',
1084
- fmt_waitingroom_mobile_memberlist_tips_all_removed: 'All removed',
1141
+ fmt_waitingroom_mobile_memberlist_tips_all_removed: 'All members have been removed',
1085
1142
  fmt_waitingroom_mobile_memberlist_tips_removed: 'Removed',
1086
- fmt_waitingroom_mobile_memberlist_tips_all_amitted: 'All admitted',
1143
+ fmt_waitingroom_mobile_memberlist_tips_all_amitted: 'All members have been admitted',
1144
+ fmt_waitingroom_mobile_memberlist_label_nocontent: 'No message',
1087
1145
  fmt_waitingroom_mobile_chat_label_send_to: 'Send to',
1088
1146
  fmt_waitingroom_mobile_chat_label_input: 'Please input',
1089
1147
  fmt_waitingroom_mobile_chat_label_private_chat: 'Private Chat',
1090
- fmt_waitingroom_mobile_chat_label_all_waitingroom_member: 'Everyone in the waiting room ',
1148
+ fmt_waitingroom_mobile_chat_label_all_waitingroom_member: 'Everyone in the waiting room',
1091
1149
  fmt_waitingroom_mobile_chat_label_all_meeting_member: 'Everyone in the meeting',
1092
1150
  fmt_waitingroom_mobile_notice_label_waitingroom: 'Waiting room',
1093
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',
1094
1152
  fmt_waitingroom_mobile_notice_popup_label_about_join: 'You are about to enter the conference room',
1095
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',
1096
- fmt_waitingroom_mobile_notice_popup_button_join_now: 'Join now',
1154
+ fmt_waitingroom_mobile_notice_popup_button_join_now: 'Join now{reason1}',
1097
1155
  fmt_waitingroom_mobile_notice_popup_label_waitinglist: 'There are {reason1} people waiting in the waiting room',
1098
- fmt_waitingroom_mobile_notice_popup_button_dont_remind: 'No more reminds',
1099
- fmt_waitingroom_mobile_notice_popup_button_view_detailed: 'View detailed',
1156
+ fmt_waitingroom_mobile_notice_popup_button_dont_remind: 'No more remind',
1157
+ fmt_waitingroom_mobile_notice_popup_button_view_detailed: 'View details',
1100
1158
  fmt_ai_transcriptions_setting_label_source: 'Source language',
1101
1159
  fmt_ai_transcriptions_setting_label_live_language: 'Live language ',
1102
1160
  fmt_ai_transcriptions_setting_label_translate_to: 'Translate to ',
@@ -1106,8 +1164,10 @@ var enUs = exports.enUs = {
1106
1164
  fmt_ai_transcriptions_setting_label_visable_range: 'Real-time simultaneous interpretation, visible only to yourself',
1107
1165
  fmt_ai_transcriptions_setting_option_noton: 'Do not turn on',
1108
1166
  fmt_ai_transcriptions_setting_option_english_translation: 'English to Chines',
1109
- fmt_ai_transcriptions_setting_option_translate_: 'Chinese to English',
1167
+ fmt_ai_transcriptions_setting_option_translate: 'Chinese to English',
1110
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',
1111
1171
  fmt_ai_subtitles_setting_label_fontsize: 'Font size',
1112
1172
  fmt_ai_subtitles_setting_label_sample_chi: '字幕文字大小示例',
1113
1173
  fmt_ai_subtitles_setting_label_sample_eng: 'Example of subtitle text size',
@@ -1122,7 +1182,7 @@ var enUs = exports.enUs = {
1122
1182
  fmt_ai_subtitles_setting_options_view_translation: 'View real-time transcriptions',
1123
1183
  fmt_ai_subtitles_setting_label_subtitle: 'Subtitle',
1124
1184
  fmt_ai_subtitles_setting_label_source_language: 'Source language',
1125
- fmt_ai_subtitles_setting_label_translate_to: 'Translated to',
1185
+ fmt_ai_subtitles_setting_label_translate_: 'Translated to',
1126
1186
  fmt_ai_subtitles_setting_label_bilingual_display: 'Show bilingual',
1127
1187
  fmt_ai_subtitles_setting_label_hot_words: 'Personal hot words',
1128
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',
@@ -1136,6 +1196,10 @@ var enUs = exports.enUs = {
1136
1196
  fmt_ai_transcriptions_sidebar_label_search: 'Search',
1137
1197
  fmt_ai_transcriptions_sidebar_tips_turnon: 'Turn on Translation Recognition',
1138
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',
1139
1203
  fmt_ai_transcriptions_sidebar_button_stop_translation: 'Stop transcribing',
1140
1204
  fmt_ai_transcriptions_sidebar_button_start_translation: 'Start transcribing',
1141
1205
  //****************** AI会议纪要 ******************
@@ -1161,5 +1225,394 @@ var enUs = exports.enUs = {
1161
1225
  fmt_ai_summary_setting_label_agent: 'Agent',
1162
1226
  fmt_ai_summary_setting_option_meeting_assistant: 'Meeting Assistant',
1163
1227
  fmt_ai_summary_setting_option_teacher: 'Teacher',
1164
- fmt_ai_summary_setting_option_sales_manager: 'Sales Manager'
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'
1165
1618
  };