fcr-ui-scene 3.8.1 → 3.8.2

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 (824) hide show
  1. package/lib/modules/dialog/dialogs/connection-gateway/tabs.d.ts +0 -1
  2. package/lib/modules/dialog/dialogs/connection-gateway/tabs.js +2 -13
  3. package/lib/modules/invite/index.d.ts +4 -1
  4. package/lib/modules/invite/index.js +5 -2
  5. package/lib/modules/invite/store.d.ts +4 -0
  6. package/lib/modules/invite/store.js +48 -9
  7. package/lib/modules/invite/view.d.ts +4 -1
  8. package/lib/modules/invite/view.js +25 -10
  9. package/lib/modules/pc-audio-connect/main-scene/index.d.ts +0 -1
  10. package/lib/modules/pc-audio-connect/main-scene/index.js +2 -4
  11. package/lib/modules/pc-audio-connect/main-scene/store.d.ts +0 -3
  12. package/lib/modules/pc-audio-connect/main-scene/store.js +7 -43
  13. package/lib/modules/widget/store.electron.js +1 -1
  14. package/lib/scenes/main-scene.js +3 -2
  15. package/lib-es/assets/mic-loading.gif +0 -0
  16. package/lib-es/base.js +335 -0
  17. package/lib-es/creator/index.js +543 -0
  18. package/lib-es/creator/provider-initializer.browser.js +322 -0
  19. package/lib-es/creator/provider-initializer.electron.js +359 -0
  20. package/lib-es/creator/type.js +1 -0
  21. package/lib-es/electron/app.js +247 -0
  22. package/lib-es/electron/asar-validation.js +106 -0
  23. package/lib-es/electron/bootstrap-dev.js +45 -0
  24. package/lib-es/electron/bootstrap-sdk.js +198 -0
  25. package/lib-es/electron/default-options.js +18 -0
  26. package/lib-es/electron/env.js +8 -0
  27. package/lib-es/electron/exit-codes.js +20 -0
  28. package/lib-es/electron/hang-detection/index.js +2 -0
  29. package/lib-es/electron/hang-detection/manager.js +225 -0
  30. package/lib-es/electron/hang-detection/types.js +1 -0
  31. package/lib-es/electron/index.js +2 -0
  32. package/lib-es/electron/injections.js +830 -0
  33. package/lib-es/electron/ipc/ipc.js +134 -0
  34. package/lib-es/electron/ipc/type.js +22 -0
  35. package/lib-es/electron/ipc-protocol.js +58 -0
  36. package/lib-es/electron/logger.js +57 -0
  37. package/lib-es/electron/main.js +116 -0
  38. package/lib-es/electron/plugins/devtool-shortcut.js +26 -0
  39. package/lib-es/electron/plugins/meeting-state.js +32 -0
  40. package/lib-es/electron/plugins/screenshot.js +46 -0
  41. package/lib-es/electron/preload.js +42 -0
  42. package/lib-es/electron/process-manager/constants.js +1 -0
  43. package/lib-es/electron/process-manager/event-manager.js +242 -0
  44. package/lib-es/electron/process-manager/index.js +842 -0
  45. package/lib-es/electron/process-manager/state-manager.js +354 -0
  46. package/lib-es/electron/process-manager/types.js +78 -0
  47. package/lib-es/electron/sdk-helper.js +305 -0
  48. package/lib-es/electron/struct.js +21 -0
  49. package/lib-es/electron/until.js +64 -0
  50. package/lib-es/electron/window-proxy/browser-window-proxy.js +720 -0
  51. package/lib-es/electron/window-proxy/main-process-handler.js +441 -0
  52. package/lib-es/electron/window.js +91 -0
  53. package/lib-es/fragments/annotation/index.js +130 -0
  54. package/lib-es/fragments/annotation/libs.js +86 -0
  55. package/lib-es/fragments/annotation/store.js +866 -0
  56. package/lib-es/fragments/annotation/style.css +9 -0
  57. package/lib-es/fragments/annotation/toolbar/components/color-tool/color-panel/index.js +40 -0
  58. package/lib-es/fragments/annotation/toolbar/components/color-tool/index.js +48 -0
  59. package/lib-es/fragments/annotation/toolbar/components/graphic-tool/graphic-panel/index.js +55 -0
  60. package/lib-es/fragments/annotation/toolbar/components/graphic-tool/graphic-panel/libs.js +57 -0
  61. package/lib-es/fragments/annotation/toolbar/components/graphic-tool/index.js +62 -0
  62. package/lib-es/fragments/annotation/toolbar/components/item/item.js +106 -0
  63. package/lib-es/fragments/annotation/toolbar/components/item/style.css +45 -0
  64. package/lib-es/fragments/annotation/toolbar/components/panel/index.js +15 -0
  65. package/lib-es/fragments/annotation/toolbar/components/panel/style.css +24 -0
  66. package/lib-es/fragments/annotation/toolbar/components/pen-tool/index.js +54 -0
  67. package/lib-es/fragments/annotation/toolbar/components/pen-tool/pen-panel/index.js +28 -0
  68. package/lib-es/fragments/annotation/toolbar/components/tips/index.js +18 -0
  69. package/lib-es/fragments/annotation/toolbar/components/tips/style.css +19 -0
  70. package/lib-es/fragments/annotation/toolbar/store.js +292 -0
  71. package/lib-es/fragments/annotation/toolbar/style.css +55 -0
  72. package/lib-es/fragments/annotation/toolbar/view.js +140 -0
  73. package/lib-es/fragments/annotation/utils.js +20 -0
  74. package/lib-es/fragments/annotation/view.js +59 -0
  75. package/lib-es/fragments/base.js +40 -0
  76. package/lib-es/fragments/whiteboard/cursor.css +77 -0
  77. package/lib-es/fragments/whiteboard/index.js +80 -0
  78. package/lib-es/fragments/whiteboard/store.js +487 -0
  79. package/lib-es/fragments/whiteboard/style.css +4 -0
  80. package/lib-es/fragments/whiteboard/view.js +24 -0
  81. package/lib-es/global.css +62 -0
  82. package/lib-es/global.d.ts +27 -0
  83. package/lib-es/hooks/i18n.js +10 -0
  84. package/lib-es/index.js +38 -0
  85. package/lib-es/modules/action-bar/components/apps/index.js +43 -0
  86. package/lib-es/modules/action-bar/components/board/index.js +25 -0
  87. package/lib-es/modules/action-bar/components/breakout-room/index.js +23 -0
  88. package/lib-es/modules/action-bar/components/chat/index.css +88 -0
  89. package/lib-es/modules/action-bar/components/chat/index.js +126 -0
  90. package/lib-es/modules/action-bar/components/collapse/index.js +203 -0
  91. package/lib-es/modules/action-bar/components/confirm-leave-meeting/index.js +70 -0
  92. package/lib-es/modules/action-bar/components/interpreter/index.js +34 -0
  93. package/lib-es/modules/action-bar/components/item/index.js +158 -0
  94. package/lib-es/modules/action-bar/components/leave/index.js +118 -0
  95. package/lib-es/modules/action-bar/components/live-streaming/index.js +32 -0
  96. package/lib-es/modules/action-bar/components/more/index.css +114 -0
  97. package/lib-es/modules/action-bar/components/more/index.js +79 -0
  98. package/lib-es/modules/action-bar/components/more/poppover-content.js +410 -0
  99. package/lib-es/modules/action-bar/components/notification-bar/assets/dome.png +0 -0
  100. package/lib-es/modules/action-bar/components/notification-bar/assets/fcr_translateswitch.png +0 -0
  101. package/lib-es/modules/action-bar/components/notification-bar/components/interpreter/index.css +58 -0
  102. package/lib-es/modules/action-bar/components/notification-bar/components/interpreter/index.js +93 -0
  103. package/lib-es/modules/action-bar/components/notification-bar/components/virtual-image/index.css +56 -0
  104. package/lib-es/modules/action-bar/components/notification-bar/components/virtual-image/index.js +25 -0
  105. package/lib-es/modules/action-bar/components/notification-bar/index.css +74 -0
  106. package/lib-es/modules/action-bar/components/notification-bar/index.js +96 -0
  107. package/lib-es/modules/action-bar/components/participants/index.css +21 -0
  108. package/lib-es/modules/action-bar/components/participants/index.js +52 -0
  109. package/lib-es/modules/action-bar/components/placement/index.js +10 -0
  110. package/lib-es/modules/action-bar/components/record/index.css +39 -0
  111. package/lib-es/modules/action-bar/components/record/index.js +89 -0
  112. package/lib-es/modules/action-bar/components/record/popover.js +50 -0
  113. package/lib-es/modules/action-bar/components/record/stop-record-dialog.js +41 -0
  114. package/lib-es/modules/action-bar/components/respond/index.js +25 -0
  115. package/lib-es/modules/action-bar/components/screen-share/index.browser.js +61 -0
  116. package/lib-es/modules/action-bar/components/screen-share/index.electron.js +78 -0
  117. package/lib-es/modules/action-bar/components/screen-share/index.js +4 -0
  118. package/lib-es/modules/action-bar/components/screen-share/submenu.js +219 -0
  119. package/lib-es/modules/action-bar/components/security/index.js +42 -0
  120. package/lib-es/modules/action-bar/components/settings/index.js +29 -0
  121. package/lib-es/modules/action-bar/components/smaller/index.js +45 -0
  122. package/lib-es/modules/action-bar/components/trigger-output-language/fcr_translateswitch.png +0 -0
  123. package/lib-es/modules/action-bar/components/trigger-output-language/index.css +86 -0
  124. package/lib-es/modules/action-bar/components/trigger-output-language/index.js +228 -0
  125. package/lib-es/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.css +22 -0
  126. package/lib-es/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.js +62 -0
  127. package/lib-es/modules/action-bar/components/trigger-subscribe-language/index.js +216 -0
  128. package/lib-es/modules/action-bar/constants.js +1 -0
  129. package/lib-es/modules/action-bar/enums.js +28 -0
  130. package/lib-es/modules/action-bar/index.css +358 -0
  131. package/lib-es/modules/action-bar/main-scene/index.js +123 -0
  132. package/lib-es/modules/action-bar/main-scene/store.base.js +1486 -0
  133. package/lib-es/modules/action-bar/main-scene/store.browser.js +105 -0
  134. package/lib-es/modules/action-bar/main-scene/store.electron.js +94 -0
  135. package/lib-es/modules/action-bar/main-scene/view.js +105 -0
  136. package/lib-es/modules/action-bar/type.js +6 -0
  137. package/lib-es/modules/action-bar/waiting-scene/index.js +94 -0
  138. package/lib-es/modules/action-bar/waiting-scene/store.base.js +88 -0
  139. package/lib-es/modules/action-bar/waiting-scene/store.browser.js +17 -0
  140. package/lib-es/modules/action-bar/waiting-scene/store.electron.js +37 -0
  141. package/lib-es/modules/action-bar/waiting-scene/view.js +116 -0
  142. package/lib-es/modules/audio-stream/index.js +393 -0
  143. package/lib-es/modules/caption/draggable-container/index.css +10 -0
  144. package/lib-es/modules/caption/draggable-container/index.js +159 -0
  145. package/lib-es/modules/caption/index.js +117 -0
  146. package/lib-es/modules/caption/store.js +352 -0
  147. package/lib-es/modules/caption/type.js +7 -0
  148. package/lib-es/modules/caption/view.css +158 -0
  149. package/lib-es/modules/caption/view.js +266 -0
  150. package/lib-es/modules/chat/chat-room-store.js +923 -0
  151. package/lib-es/modules/chat/components/chat-action/index.js +21 -0
  152. package/lib-es/modules/chat/components/chat-bar/index.css +89 -0
  153. package/lib-es/modules/chat/components/chat-bar/index.js +141 -0
  154. package/lib-es/modules/chat/components/chat-select/index.css +185 -0
  155. package/lib-es/modules/chat/components/chat-select/index.js +100 -0
  156. package/lib-es/modules/chat/components/chat-select/select-input/index.js +27 -0
  157. package/lib-es/modules/chat/components/chat-select/select-item/index.js +150 -0
  158. package/lib-es/modules/chat/components/chat-tabs/index.js +53 -0
  159. package/lib-es/modules/chat/components/message-list/chat-empty/index.js +18 -0
  160. package/lib-es/modules/chat/components/message-list/history-unread-message-button/index.js +48 -0
  161. package/lib-es/modules/chat/components/message-list/index.js +327 -0
  162. package/lib-es/modules/chat/components/message-list/message-item/index.js +343 -0
  163. package/lib-es/modules/chat/components/message-list/scroll-bottom-button/index.js +60 -0
  164. package/lib-es/modules/chat/index.css +124 -0
  165. package/lib-es/modules/chat/index.dev.js +71 -0
  166. package/lib-es/modules/chat/index.js +168 -0
  167. package/lib-es/modules/chat/mock.js +276 -0
  168. package/lib-es/modules/chat/store.js +359 -0
  169. package/lib-es/modules/chat/types.js +12 -0
  170. package/lib-es/modules/chat/util.js +63 -0
  171. package/lib-es/modules/chat/view.js +312 -0
  172. package/lib-es/modules/components/annotation-menu/index.js +104 -0
  173. package/lib-es/modules/components/apps/app-item/index.css +49 -0
  174. package/lib-es/modules/components/apps/app-item/index.js +130 -0
  175. package/lib-es/modules/components/apps/app-list.js +49 -0
  176. package/lib-es/modules/components/apps/index.css +9 -0
  177. package/lib-es/modules/components/apps/types.js +1 -0
  178. package/lib-es/modules/components/caption-menu/index.css +58 -0
  179. package/lib-es/modules/components/caption-menu/index.js +108 -0
  180. package/lib-es/modules/components/caption-menu/participants-privilege-control-options.js +65 -0
  181. package/lib-es/modules/components/caption-menu/steps/index.css +73 -0
  182. package/lib-es/modules/components/caption-menu/steps/index.js +49 -0
  183. package/lib-es/modules/components/caption-menu/translation-setting-options.js +180 -0
  184. package/lib-es/modules/components/control-bar/components/loading/index.css +76 -0
  185. package/lib-es/modules/components/control-bar/components/loading/index.js +56 -0
  186. package/lib-es/modules/components/control-bar/components/loading/loading.png +0 -0
  187. package/lib-es/modules/components/control-bar/components/progress/index.js +36 -0
  188. package/lib-es/modules/components/control-bar/components/progress/style.css +51 -0
  189. package/lib-es/modules/components/control-bar/components/switch-theme/index.css +101 -0
  190. package/lib-es/modules/components/control-bar/components/switch-theme/index.js +86 -0
  191. package/lib-es/modules/components/control-bar/components/switch-theme/item.js +46 -0
  192. package/lib-es/modules/components/control-bar/components/switch-theme/libs.js +24 -0
  193. package/lib-es/modules/components/control-bar/index.css +99 -0
  194. package/lib-es/modules/components/control-bar/index.js +357 -0
  195. package/lib-es/modules/components/device-control/components/audio-menu/index.js +167 -0
  196. package/lib-es/modules/components/device-control/components/carmera/index.js +108 -0
  197. package/lib-es/modules/components/device-control/components/microphone/index.js +182 -0
  198. package/lib-es/modules/components/device-control/components/none-menu/index.js +61 -0
  199. package/lib-es/modules/components/device-control/components/phone-menu/index.js +54 -0
  200. package/lib-es/modules/components/device-control/components/video-menu/index.js +105 -0
  201. package/lib-es/modules/components/device-control/hooks/index.js +34 -0
  202. package/lib-es/modules/components/device-control/index.css +177 -0
  203. package/lib-es/modules/components/device-control/index.js +14 -0
  204. package/lib-es/modules/components/device-control/main-scene/store.js +88 -0
  205. package/lib-es/modules/components/device-control/store.base.js +242 -0
  206. package/lib-es/modules/components/device-control/type.js +1 -0
  207. package/lib-es/modules/components/device-control/waiting-scene/store.js +84 -0
  208. package/lib-es/modules/components/leave-meeting/components/assign-host.js +101 -0
  209. package/lib-es/modules/components/leave-meeting/components/index.css +151 -0
  210. package/lib-es/modules/components/leave-meeting/index.js +148 -0
  211. package/lib-es/modules/components/leave-meeting/main-scene/store.js +107 -0
  212. package/lib-es/modules/components/leave-meeting/portal.js +22 -0
  213. package/lib-es/modules/components/leave-meeting/store.base.js +299 -0
  214. package/lib-es/modules/components/leave-meeting/style.css +9 -0
  215. package/lib-es/modules/components/leave-meeting/type.js +1 -0
  216. package/lib-es/modules/components/leave-meeting/waiting-scene/store.js +98 -0
  217. package/lib-es/modules/components/member-window/components/member-actions/components/audio-control.js +35 -0
  218. package/lib-es/modules/components/member-window/components/member-actions/components/icon-buttons/index.js +162 -0
  219. package/lib-es/modules/components/member-window/components/member-actions/components/icon-status.js +80 -0
  220. package/lib-es/modules/components/member-window/components/member-actions/components/layout/index.js +23 -0
  221. package/lib-es/modules/components/member-window/components/member-actions/components/more-actions.js +128 -0
  222. package/lib-es/modules/components/member-window/components/member-actions/components/share-status.js +34 -0
  223. package/lib-es/modules/components/member-window/components/member-actions/components/user-info.js +105 -0
  224. package/lib-es/modules/components/member-window/components/member-actions/components/user-tag.js +51 -0
  225. package/lib-es/modules/components/member-window/components/member-actions/index.js +98 -0
  226. package/lib-es/modules/components/member-window/components/member-actions/libs/index.js +14 -0
  227. package/lib-es/modules/components/member-window/components/member-actions/provider.js +70 -0
  228. package/lib-es/modules/components/member-window/components/member-actions/store.js +430 -0
  229. package/lib-es/modules/components/member-window/components/mic-volume.js +16 -0
  230. package/lib-es/modules/components/member-window/components/video-player/components/local-video-player-with-zoom.js +104 -0
  231. package/lib-es/modules/components/member-window/components/video-player/components/local-video-player.js +1 -0
  232. package/lib-es/modules/components/member-window/components/video-player/components/remote-video-player-with-zoom.js +60 -0
  233. package/lib-es/modules/components/member-window/components/video-player/components/remote-video-player.js +1 -0
  234. package/lib-es/modules/components/member-window/components/video-player/components/zoomable-container.js +223 -0
  235. package/lib-es/modules/components/member-window/components/video-player/index.js +37 -0
  236. package/lib-es/modules/components/member-window/index.css +502 -0
  237. package/lib-es/modules/components/member-window/index.js +179 -0
  238. package/lib-es/modules/components/member-window/types.js +1 -0
  239. package/lib-es/modules/components/security-menu/index.css +42 -0
  240. package/lib-es/modules/components/security-menu/index.js +472 -0
  241. package/lib-es/modules/components/security-menu/store.js +388 -0
  242. package/lib-es/modules/components/security-menu/type.js +1 -0
  243. package/lib-es/modules/components/tab-frame/index.css +40 -0
  244. package/lib-es/modules/components/tab-frame/index.js +51 -0
  245. package/lib-es/modules/components/toolbar/components/capture-tool/index.js +58 -0
  246. package/lib-es/modules/components/toolbar/components/clean-tool/index.js +63 -0
  247. package/lib-es/modules/components/toolbar/components/color-tool/color-panel/index.js +70 -0
  248. package/lib-es/modules/components/toolbar/components/color-tool/index.js +58 -0
  249. package/lib-es/modules/components/toolbar/components/graphic-tool/graphic-panel/index.js +57 -0
  250. package/lib-es/modules/components/toolbar/components/graphic-tool/graphic-panel/libs.js +57 -0
  251. package/lib-es/modules/components/toolbar/components/graphic-tool/index.js +72 -0
  252. package/lib-es/modules/components/toolbar/components/group-tool/index.js +35 -0
  253. package/lib-es/modules/components/toolbar/components/icons/fold-icon.js +33 -0
  254. package/lib-es/modules/components/toolbar/components/icons/move-icon.js +59 -0
  255. package/lib-es/modules/components/toolbar/components/item/index.js +157 -0
  256. package/lib-es/modules/components/toolbar/components/item/style.css +94 -0
  257. package/lib-es/modules/components/toolbar/components/multiple-color-tool/index.js +67 -0
  258. package/lib-es/modules/components/toolbar/components/panel/index.js +21 -0
  259. package/lib-es/modules/components/toolbar/components/panel/style.css +86 -0
  260. package/lib-es/modules/components/toolbar/components/pen-tool/index.js +54 -0
  261. package/lib-es/modules/components/toolbar/components/pen-tool/pen-panel/index.js +32 -0
  262. package/lib-es/modules/components/toolbar/components/save-draft/index.js +51 -0
  263. package/lib-es/modules/components/toolbar/components/vertical-frame/index.js +176 -0
  264. package/lib-es/modules/components/toolbar/hooks/use-resize-visible.js +64 -0
  265. package/lib-es/modules/components/toolbar/index.js +235 -0
  266. package/lib-es/modules/components/toolbar/style.css +85 -0
  267. package/lib-es/modules/components/toolbar/types.js +1 -0
  268. package/lib-es/modules/connection-gateway/components/computer/index.css +12 -0
  269. package/lib-es/modules/connection-gateway/components/computer/index.js +59 -0
  270. package/lib-es/modules/connection-gateway/components/phone/components/callinfo/index.css +36 -0
  271. package/lib-es/modules/connection-gateway/components/phone/components/callinfo/index.js +71 -0
  272. package/lib-es/modules/connection-gateway/components/phone/components/calling/index.css +72 -0
  273. package/lib-es/modules/connection-gateway/components/phone/components/calling/index.js +51 -0
  274. package/lib-es/modules/connection-gateway/components/phone/components/remeber/index.css +10 -0
  275. package/lib-es/modules/connection-gateway/components/phone/components/remeber/index.js +17 -0
  276. package/lib-es/modules/connection-gateway/components/phone/components/useing/index.css +46 -0
  277. package/lib-es/modules/connection-gateway/components/phone/components/useing/index.js +29 -0
  278. package/lib-es/modules/connection-gateway/components/phone/index.css +49 -0
  279. package/lib-es/modules/connection-gateway/components/phone/index.js +177 -0
  280. package/lib-es/modules/connection-gateway/enums.js +5 -0
  281. package/lib-es/modules/connection-gateway/index.css +6 -0
  282. package/lib-es/modules/connection-gateway/index.js +60 -0
  283. package/lib-es/modules/connection-gateway/store.js +709 -0
  284. package/lib-es/modules/connection-gateway/types.js +1 -0
  285. package/lib-es/modules/connection-gateway/view.js +31 -0
  286. package/lib-es/modules/control-bar/components/apps-popover/index.js +34 -0
  287. package/lib-es/modules/control-bar/components/boundary-detector.js +49 -0
  288. package/lib-es/modules/control-bar/components/carmera/index.js +107 -0
  289. package/lib-es/modules/control-bar/components/cloud-recording-buttons.js +109 -0
  290. package/lib-es/modules/control-bar/components/meeting-details/index.css +133 -0
  291. package/lib-es/modules/control-bar/components/meeting-details/index.js +230 -0
  292. package/lib-es/modules/control-bar/components/microphone/index.js +185 -0
  293. package/lib-es/modules/control-bar/components/more-actions/index.css +103 -0
  294. package/lib-es/modules/control-bar/components/more-actions/index.js +158 -0
  295. package/lib-es/modules/control-bar/components/share-audio/index.css +90 -0
  296. package/lib-es/modules/control-bar/components/share-audio/index.js +142 -0
  297. package/lib-es/modules/control-bar/components/share-state-nav/index.css +79 -0
  298. package/lib-es/modules/control-bar/components/share-state-nav/index.js +122 -0
  299. package/lib-es/modules/control-bar/components/stop-live-streaming/index.js +29 -0
  300. package/lib-es/modules/control-bar/components/stop-live-streaming/stop-button.js +28 -0
  301. package/lib-es/modules/control-bar/components/transfer-position-icon/index.js +34 -0
  302. package/lib-es/modules/control-bar/context.js +5 -0
  303. package/lib-es/modules/control-bar/enums.js +27 -0
  304. package/lib-es/modules/control-bar/hooks.js +168 -0
  305. package/lib-es/modules/control-bar/index.css +340 -0
  306. package/lib-es/modules/control-bar/index.dev.js +37 -0
  307. package/lib-es/modules/control-bar/index.js +144 -0
  308. package/lib-es/modules/control-bar/store.js +781 -0
  309. package/lib-es/modules/control-bar/type.js +1 -0
  310. package/lib-es/modules/control-bar/view.js +663 -0
  311. package/lib-es/modules/device-pretest/assets/virtual-backdound-resources.js +14 -0
  312. package/lib-es/modules/device-pretest/audio-preview/microphone-detection.js +64 -0
  313. package/lib-es/modules/device-pretest/audio-preview/speaker-control.js +58 -0
  314. package/lib-es/modules/device-pretest/audio-preview/speaker-detection.js +63 -0
  315. package/lib-es/modules/device-pretest/index.css +123 -0
  316. package/lib-es/modules/device-pretest/index.js +234 -0
  317. package/lib-es/modules/device-pretest/settings/beauty.js +107 -0
  318. package/lib-es/modules/device-pretest/settings/camera-select.js +45 -0
  319. package/lib-es/modules/device-pretest/settings/video-effect.js +43 -0
  320. package/lib-es/modules/device-pretest/settings/video-settings-basic.js +137 -0
  321. package/lib-es/modules/device-pretest/settings/virtual-background-setting.js +94 -0
  322. package/lib-es/modules/device-pretest/store.js +437 -0
  323. package/lib-es/modules/dialog/components/confirm/index.css +24 -0
  324. package/lib-es/modules/dialog/components/confirm/index.js +154 -0
  325. package/lib-es/modules/dialog/components/dialog-container/component/body.js +103 -0
  326. package/lib-es/modules/dialog/components/dialog-container/index.css +112 -0
  327. package/lib-es/modules/dialog/components/dialog-container/index.js +135 -0
  328. package/lib-es/modules/dialog/components/host-area-container/index.js +146 -0
  329. package/lib-es/modules/dialog/components/normal-window/index.js +53 -0
  330. package/lib-es/modules/dialog/dialogs/annotation-tool/index.js +47 -0
  331. package/lib-es/modules/dialog/dialogs/caption/index.js +35 -0
  332. package/lib-es/modules/dialog/dialogs/chat/components/actions.js +36 -0
  333. package/lib-es/modules/dialog/dialogs/chat/index.js +74 -0
  334. package/lib-es/modules/dialog/dialogs/confirm/index.css +24 -0
  335. package/lib-es/modules/dialog/dialogs/confirm/index.js +51 -0
  336. package/lib-es/modules/dialog/dialogs/confirm-leave-meeting/index.js +38 -0
  337. package/lib-es/modules/dialog/dialogs/connection-gateway/index.js +40 -0
  338. package/lib-es/modules/dialog/dialogs/connection-gateway/tabs.js +40 -0
  339. package/lib-es/modules/dialog/dialogs/control-bar/index.js +29 -0
  340. package/lib-es/modules/dialog/dialogs/control-bar-leave-meeting/index.js +33 -0
  341. package/lib-es/modules/dialog/dialogs/device-setting/index.css +26 -0
  342. package/lib-es/modules/dialog/dialogs/device-setting/index.js +36 -0
  343. package/lib-es/modules/dialog/dialogs/end-meeting/index.js +48 -0
  344. package/lib-es/modules/dialog/dialogs/interpreter/index.css +30 -0
  345. package/lib-es/modules/dialog/dialogs/interpreter/index.js +38 -0
  346. package/lib-es/modules/dialog/dialogs/invite/index.js +51 -0
  347. package/lib-es/modules/dialog/dialogs/live-streaming/index.js +30 -0
  348. package/lib-es/modules/dialog/dialogs/mute-all/index.css +20 -0
  349. package/lib-es/modules/dialog/dialogs/mute-all/index.js +42 -0
  350. package/lib-es/modules/dialog/dialogs/participant/components/actions.js +23 -0
  351. package/lib-es/modules/dialog/dialogs/participant/components/title.js +9 -0
  352. package/lib-es/modules/dialog/dialogs/participant/index.js +52 -0
  353. package/lib-es/modules/dialog/dialogs/rename/index.js +43 -0
  354. package/lib-es/modules/dialog/dialogs/sample-dialog/index.js +48 -0
  355. package/lib-es/modules/dialog/dialogs/share-screen-selection/index.js +32 -0
  356. package/lib-es/modules/dialog/dialogs/sub-window/index.js +31 -0
  357. package/lib-es/modules/dialog/dialogs/subtitles-history/index.js +44 -0
  358. package/lib-es/modules/dialog/dialogs/system-preference/assets/bg1.png +0 -0
  359. package/lib-es/modules/dialog/dialogs/system-preference/assets/bg2.png +0 -0
  360. package/lib-es/modules/dialog/dialogs/system-preference/assets/fcr_png_host.png +0 -0
  361. package/lib-es/modules/dialog/dialogs/system-preference/electron.js +31 -0
  362. package/lib-es/modules/dialog/dialogs/system-preference/index.css +52 -0
  363. package/lib-es/modules/dialog/dialogs/system-preference/index.js +130 -0
  364. package/lib-es/modules/dialog/dialogs/toast/index.js +28 -0
  365. package/lib-es/modules/dialog/dialogs/video-window/index.js +55 -0
  366. package/lib-es/modules/dialog/dialogs/whiteboard/index.js +60 -0
  367. package/lib-es/modules/dialog/dialogs/widget/index.js +40 -0
  368. package/lib-es/modules/dialog/hooks/use-web-drag.js +64 -0
  369. package/lib-es/modules/dialog/index.css +56 -0
  370. package/lib-es/modules/dialog/index.js +70 -0
  371. package/lib-es/modules/dialog/level-config.js +11 -0
  372. package/lib-es/modules/dialog/store.base.js +272 -0
  373. package/lib-es/modules/dialog/store.browser.js +135 -0
  374. package/lib-es/modules/dialog/store.electron.js +284 -0
  375. package/lib-es/modules/dialog/type.js +1 -0
  376. package/lib-es/modules/dialog/view.js +28 -0
  377. package/lib-es/modules/event-sound/enum.js +13 -0
  378. package/lib-es/modules/event-sound/index.js +49 -0
  379. package/lib-es/modules/event-sound/sound-effect-player.js +49 -0
  380. package/lib-es/modules/event-sound/store.js +275 -0
  381. package/lib-es/modules/event-sound/type.js +1 -0
  382. package/lib-es/modules/event-toast/index.css +25 -0
  383. package/lib-es/modules/event-toast/index.js +82 -0
  384. package/lib-es/modules/event-toast/store.base.js +193 -0
  385. package/lib-es/modules/event-toast/store.browser.js +23 -0
  386. package/lib-es/modules/event-toast/store.electron.js +138 -0
  387. package/lib-es/modules/event-toast/type.js +1 -0
  388. package/lib-es/modules/event-toast/view.js +37 -0
  389. package/lib-es/modules/interpreter/action/add-btn/index.css +4 -0
  390. package/lib-es/modules/interpreter/action/add-btn/index.js +35 -0
  391. package/lib-es/modules/interpreter/action/delete-btn/index.css +14 -0
  392. package/lib-es/modules/interpreter/action/delete-btn/index.js +31 -0
  393. package/lib-es/modules/interpreter/action/edit-btn/index.js +39 -0
  394. package/lib-es/modules/interpreter/action/switch-btn/index.css +3 -0
  395. package/lib-es/modules/interpreter/action/switch-btn/index.js +44 -0
  396. package/lib-es/modules/interpreter/dialog-content/index.css +33 -0
  397. package/lib-es/modules/interpreter/dialog-content/index.js +30 -0
  398. package/lib-es/modules/interpreter/footer/index.css +11 -0
  399. package/lib-es/modules/interpreter/footer/index.js +18 -0
  400. package/lib-es/modules/interpreter/index.css +4 -0
  401. package/lib-es/modules/interpreter/index.js +109 -0
  402. package/lib-es/modules/interpreter/interpreter-list/index.css +8 -0
  403. package/lib-es/modules/interpreter/interpreter-list/index.js +30 -0
  404. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/index.css +46 -0
  405. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/index.js +173 -0
  406. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ar.png +0 -0
  407. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_cn.png +0 -0
  408. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_de.png +0 -0
  409. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_en.png +0 -0
  410. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_es.png +0 -0
  411. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_fr.png +0 -0
  412. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_hi.png +0 -0
  413. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_id.png +0 -0
  414. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_it.png +0 -0
  415. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_jp.png +0 -0
  416. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ko.png +0 -0
  417. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ms.png +0 -0
  418. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_pt.png +0 -0
  419. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ru.png +0 -0
  420. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_th.png +0 -0
  421. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_tr.png +0 -0
  422. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_vi.png +0 -0
  423. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.js +169 -0
  424. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/index.css +46 -0
  425. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/index.js +120 -0
  426. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/option-Item.js +51 -0
  427. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/index.css +32 -0
  428. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/index.js +40 -0
  429. package/lib-es/modules/interpreter/loading-wrapper/index.css +53 -0
  430. package/lib-es/modules/interpreter/loading-wrapper/index.js +20 -0
  431. package/lib-es/modules/interpreter/store.js +614 -0
  432. package/lib-es/modules/interpreter/tooltip-wrapper/index.js +23 -0
  433. package/lib-es/modules/interpreter/type.js +5 -0
  434. package/lib-es/modules/interpreter/utils.js +54 -0
  435. package/lib-es/modules/interpreter/view.js +62 -0
  436. package/lib-es/modules/invite/components/error-tips.js +11 -0
  437. package/lib-es/modules/invite/components/pstn-invite.js +245 -0
  438. package/lib-es/modules/invite/components/voip-invite.css +26 -0
  439. package/lib-es/modules/invite/components/voip-invite.js +265 -0
  440. package/lib-es/modules/invite/enums.js +27 -0
  441. package/lib-es/modules/invite/index.css +331 -0
  442. package/lib-es/modules/invite/index.js +64 -0
  443. package/lib-es/modules/invite/store.js +578 -0
  444. package/lib-es/modules/invite/types.js +1 -0
  445. package/lib-es/modules/invite/view.js +46 -0
  446. package/lib-es/modules/layout/components/Aside.js +208 -0
  447. package/lib-es/modules/layout/components/Carousel.js +192 -0
  448. package/lib-es/modules/layout/components/CommonVideoRenderer.js +265 -0
  449. package/lib-es/modules/layout/components/Gallery.js +256 -0
  450. package/lib-es/modules/layout/components/index.css +653 -0
  451. package/lib-es/modules/layout/components/index.js +5 -0
  452. package/lib-es/modules/layout/components/utils.js +3 -0
  453. package/lib-es/modules/layout/components/who-is-speaking.js +49 -0
  454. package/lib-es/modules/layout/index.css +59 -0
  455. package/lib-es/modules/layout/index.dev.js +313 -0
  456. package/lib-es/modules/layout/index.js +74 -0
  457. package/lib-es/modules/layout/store.base.js +1468 -0
  458. package/lib-es/modules/layout/store.browser.js +49 -0
  459. package/lib-es/modules/layout/store.electron.js +175 -0
  460. package/lib-es/modules/layout/type.js +59 -0
  461. package/lib-es/modules/layout/view.js +149 -0
  462. package/lib-es/modules/live-streaming/index.css +0 -0
  463. package/lib-es/modules/live-streaming/index.dev.js +56 -0
  464. package/lib-es/modules/live-streaming/index.js +60 -0
  465. package/lib-es/modules/live-streaming/store.js +246 -0
  466. package/lib-es/modules/live-streaming/type.js +1 -0
  467. package/lib-es/modules/live-streaming/view.js +26 -0
  468. package/lib-es/modules/notification/index.css +77 -0
  469. package/lib-es/modules/notification/index.js +59 -0
  470. package/lib-es/modules/notification/interpreter-status/index.css +76 -0
  471. package/lib-es/modules/notification/interpreter-status/index.js +55 -0
  472. package/lib-es/modules/notification/store.js +122 -0
  473. package/lib-es/modules/notification/type.js +1 -0
  474. package/lib-es/modules/notification/view.js +127 -0
  475. package/lib-es/modules/offscreen-pulling/index.js +122 -0
  476. package/lib-es/modules/participant/components/can-moveable/index.js +59 -0
  477. package/lib-es/modules/participant/components/confirm-input/index.css +4 -0
  478. package/lib-es/modules/participant/components/confirm-input/index.js +112 -0
  479. package/lib-es/modules/participant/components/mute-all/index.js +67 -0
  480. package/lib-es/modules/participant/components/operate-waitingroom-member/index.js +40 -0
  481. package/lib-es/modules/participant/components/participants/components/footer/components/buttons.js +45 -0
  482. package/lib-es/modules/participant/components/participants/components/footer/components/drop-menu/index.css +83 -0
  483. package/lib-es/modules/participant/components/participants/components/footer/components/drop-menu/index.js +156 -0
  484. package/lib-es/modules/participant/components/participants/components/footer/components/drop-menu/util.js +21 -0
  485. package/lib-es/modules/participant/components/participants/components/footer/index.js +42 -0
  486. package/lib-es/modules/participant/components/participants/components/merge/index.js +40 -0
  487. package/lib-es/modules/participant/components/participants/components/render-tab/index.js +42 -0
  488. package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.js +40 -0
  489. package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.js +21 -0
  490. package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.js +32 -0
  491. package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/index.css +87 -0
  492. package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/index.js +138 -0
  493. package/lib-es/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.js +25 -0
  494. package/lib-es/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.js +70 -0
  495. package/lib-es/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.js +20 -0
  496. package/lib-es/modules/participant/components/participants/components/render-user/components/user-action/index.js +70 -0
  497. package/lib-es/modules/participant/components/participants/components/render-user/index.js +16 -0
  498. package/lib-es/modules/participant/components/participants/index.js +71 -0
  499. package/lib-es/modules/participant/index.css +102 -0
  500. package/lib-es/modules/participant/index.dev.js +87 -0
  501. package/lib-es/modules/participant/index.js +137 -0
  502. package/lib-es/modules/participant/member-list-data-source.js +297 -0
  503. package/lib-es/modules/participant/store.base.js +2354 -0
  504. package/lib-es/modules/participant/store.browser.js +117 -0
  505. package/lib-es/modules/participant/store.electron.js +124 -0
  506. package/lib-es/modules/participant/struct.js +55 -0
  507. package/lib-es/modules/participant/type.js +7 -0
  508. package/lib-es/modules/participant/view.js +18 -0
  509. package/lib-es/modules/pc-audio-connect/index.css +12 -0
  510. package/lib-es/modules/pc-audio-connect/main-scene/index.js +67 -0
  511. package/lib-es/modules/pc-audio-connect/main-scene/store.js +313 -0
  512. package/lib-es/modules/pc-audio-connect/types.js +1 -0
  513. package/lib-es/modules/pc-audio-connect/view.js +60 -0
  514. package/lib-es/modules/pc-audio-connect/waiting-scene/index.js +61 -0
  515. package/lib-es/modules/pc-audio-connect/waiting-scene/store.js +293 -0
  516. package/lib-es/modules/phone-audio-connect/components/callinfo/index.css +36 -0
  517. package/lib-es/modules/phone-audio-connect/components/callinfo/index.js +71 -0
  518. package/lib-es/modules/phone-audio-connect/components/calling/index.css +72 -0
  519. package/lib-es/modules/phone-audio-connect/components/calling/index.js +51 -0
  520. package/lib-es/modules/phone-audio-connect/components/remeber/index.css +10 -0
  521. package/lib-es/modules/phone-audio-connect/components/remeber/index.js +17 -0
  522. package/lib-es/modules/phone-audio-connect/components/useing/index.css +46 -0
  523. package/lib-es/modules/phone-audio-connect/components/useing/index.js +29 -0
  524. package/lib-es/modules/phone-audio-connect/enums.js +5 -0
  525. package/lib-es/modules/phone-audio-connect/index.css +56 -0
  526. package/lib-es/modules/phone-audio-connect/index.js +52 -0
  527. package/lib-es/modules/phone-audio-connect/store.js +317 -0
  528. package/lib-es/modules/phone-audio-connect/types.js +1 -0
  529. package/lib-es/modules/phone-audio-connect/view.js +177 -0
  530. package/lib-es/modules/secondary-window/index.js +147 -0
  531. package/lib-es/modules/secondary-window/store.js +502 -0
  532. package/lib-es/modules/secondary-window/type.js +28 -0
  533. package/lib-es/modules/secondary-window/view.js +281 -0
  534. package/lib-es/modules/setting/audio-settings/audio-settings.js +292 -0
  535. package/lib-es/modules/setting/audio-settings/index.css +195 -0
  536. package/lib-es/modules/setting/audio-whiteList/audio-device-adaptation.js +62 -0
  537. package/lib-es/modules/setting/audio-whiteList/audio-whiteList-manager.js +368 -0
  538. package/lib-es/modules/setting/caption_and_transcribing/index.css +88 -0
  539. package/lib-es/modules/setting/caption_and_transcribing/index.js +89 -0
  540. package/lib-es/modules/setting/general-settings/general-settings.js +148 -0
  541. package/lib-es/modules/setting/general-settings/index.css +41 -0
  542. package/lib-es/modules/setting/index.css +112 -0
  543. package/lib-es/modules/setting/index.dev.js +120 -0
  544. package/lib-es/modules/setting/index.js +145 -0
  545. package/lib-es/modules/setting/minutes-settings/index.css +65 -0
  546. package/lib-es/modules/setting/minutes-settings/minutes-settings.js +146 -0
  547. package/lib-es/modules/setting/state/index.css +207 -0
  548. package/lib-es/modules/setting/state/index.js +322 -0
  549. package/lib-es/modules/setting/storage-settings/index.css +91 -0
  550. package/lib-es/modules/setting/storage-settings/storage-settings.js +65 -0
  551. package/lib-es/modules/setting/store.base.js +1440 -0
  552. package/lib-es/modules/setting/store.browser.js +43 -0
  553. package/lib-es/modules/setting/store.electron.js +168 -0
  554. package/lib-es/modules/setting/translate-settings/index.css +47 -0
  555. package/lib-es/modules/setting/translate-settings/language-select.js +40 -0
  556. package/lib-es/modules/setting/translate-settings/translate-settings.js +131 -0
  557. package/lib-es/modules/setting/type.js +14 -0
  558. package/lib-es/modules/setting/video-settings/index.css +357 -0
  559. package/lib-es/modules/setting/video-settings/video-settings-basic.js +131 -0
  560. package/lib-es/modules/setting/video-settings/video-settings.js +167 -0
  561. package/lib-es/modules/setting/view.js +147 -0
  562. package/lib-es/modules/share-screen/components/control-bar/index.css +75 -0
  563. package/lib-es/modules/share-screen/components/control-bar/index.js +92 -0
  564. package/lib-es/modules/share-screen/components/control-bar/items/annotation-edit-btn/index.js +38 -0
  565. package/lib-es/modules/share-screen/components/control-bar/items/full-container-btn/index.js +25 -0
  566. package/lib-es/modules/share-screen/components/control-bar/items/original-size-btn/index.js +25 -0
  567. package/lib-es/modules/share-screen/components/control-bar/items/zoom-in-btn/index.js +25 -0
  568. package/lib-es/modules/share-screen/components/control-bar/items/zoom-out-btn/index.js +25 -0
  569. package/lib-es/modules/share-screen/components/selection/index.css +73 -0
  570. package/lib-es/modules/share-screen/components/selection/index.js +220 -0
  571. package/lib-es/modules/share-screen/components/share-scenario/index.js +40 -0
  572. package/lib-es/modules/share-screen/components/share-state-bar/index.css +76 -0
  573. package/lib-es/modules/share-screen/components/share-state-bar/index.js +90 -0
  574. package/lib-es/modules/share-screen/index.css +0 -0
  575. package/lib-es/modules/share-screen/index.dev.js +90 -0
  576. package/lib-es/modules/share-screen/index.js +99 -0
  577. package/lib-es/modules/share-screen/store.base.js +464 -0
  578. package/lib-es/modules/share-screen/store.browser.js +36 -0
  579. package/lib-es/modules/share-screen/store.electron.js +429 -0
  580. package/lib-es/modules/share-screen/type.js +8 -0
  581. package/lib-es/modules/share-screen/view.js +24 -0
  582. package/lib-es/modules/state-bar/assets/fcr_grid_big.svg +3 -0
  583. package/lib-es/modules/state-bar/assets/fcr_listontop_big.svg +3 -0
  584. package/lib-es/modules/state-bar/assets/live-streaming.gif +0 -0
  585. package/lib-es/modules/state-bar/index.css +706 -0
  586. package/lib-es/modules/state-bar/index.dev.js +78 -0
  587. package/lib-es/modules/state-bar/index.js +41 -0
  588. package/lib-es/modules/state-bar/layout-config.js +168 -0
  589. package/lib-es/modules/state-bar/live-streaming-state.js +169 -0
  590. package/lib-es/modules/state-bar/main-scene/index.js +39 -0
  591. package/lib-es/modules/state-bar/main-scene/store.base.js +137 -0
  592. package/lib-es/modules/state-bar/main-scene/store.browser.js +80 -0
  593. package/lib-es/modules/state-bar/main-scene/store.electron.js +107 -0
  594. package/lib-es/modules/state-bar/meeting-detail.css +137 -0
  595. package/lib-es/modules/state-bar/meeting-details.js +219 -0
  596. package/lib-es/modules/state-bar/meeting-network-state.css +150 -0
  597. package/lib-es/modules/state-bar/meeting-network-state.js +107 -0
  598. package/lib-es/modules/state-bar/meeting-time.js +25 -0
  599. package/lib-es/modules/state-bar/network-quality.js +26 -0
  600. package/lib-es/modules/state-bar/recording.js +103 -0
  601. package/lib-es/modules/state-bar/store.base.electron.js +108 -0
  602. package/lib-es/modules/state-bar/store.base.js +616 -0
  603. package/lib-es/modules/state-bar/subtitles-history-state.js +101 -0
  604. package/lib-es/modules/state-bar/type.js +1 -0
  605. package/lib-es/modules/state-bar/view.js +241 -0
  606. package/lib-es/modules/state-bar/waiting-scene/index.js +39 -0
  607. package/lib-es/modules/state-bar/waiting-scene/store.base.js +48 -0
  608. package/lib-es/modules/state-bar/waiting-scene/store.browser.js +80 -0
  609. package/lib-es/modules/state-bar/waiting-scene/store.electron.js +99 -0
  610. package/lib-es/modules/subtitles-history/components/actions.js +29 -0
  611. package/lib-es/modules/subtitles-history/components/list-item.js +95 -0
  612. package/lib-es/modules/subtitles-history/components/list.js +175 -0
  613. package/lib-es/modules/subtitles-history/components/respond-dialog-content.js +36 -0
  614. package/lib-es/modules/subtitles-history/components/settings/index.css +5 -0
  615. package/lib-es/modules/subtitles-history/components/settings/index.js +46 -0
  616. package/lib-es/modules/subtitles-history/components/timer.js +36 -0
  617. package/lib-es/modules/subtitles-history/components/title.js +8 -0
  618. package/lib-es/modules/subtitles-history/empty.js +14 -0
  619. package/lib-es/modules/subtitles-history/index.css +129 -0
  620. package/lib-es/modules/subtitles-history/index.js +89 -0
  621. package/lib-es/modules/subtitles-history/store.base.js +790 -0
  622. package/lib-es/modules/subtitles-history/store.electron.js +148 -0
  623. package/lib-es/modules/subtitles-history/type.js +1 -0
  624. package/lib-es/modules/subtitles-history/view.js +96 -0
  625. package/lib-es/modules/video-window/components/deviceState/index.js +68 -0
  626. package/lib-es/modules/video-window/components/members/index.css +51 -0
  627. package/lib-es/modules/video-window/components/members/index.js +116 -0
  628. package/lib-es/modules/video-window/components/speaking/index.css +86 -0
  629. package/lib-es/modules/video-window/components/speaking/index.js +40 -0
  630. package/lib-es/modules/video-window/components/topControl/index.css +35 -0
  631. package/lib-es/modules/video-window/components/topControl/index.js +68 -0
  632. package/lib-es/modules/video-window/index.css +21 -0
  633. package/lib-es/modules/video-window/index.js +82 -0
  634. package/lib-es/modules/video-window/popover-watcher.js +69 -0
  635. package/lib-es/modules/video-window/store.js +512 -0
  636. package/lib-es/modules/video-window/type.js +19 -0
  637. package/lib-es/modules/video-window/view.js +107 -0
  638. package/lib-es/modules/waiting-room-layout/index.css +96 -0
  639. package/lib-es/modules/waiting-room-layout/index.js +67 -0
  640. package/lib-es/modules/waiting-room-layout/store.js +231 -0
  641. package/lib-es/modules/waiting-room-layout/view.js +87 -0
  642. package/lib-es/modules/whiteboard/components/control-bar/index.css +52 -0
  643. package/lib-es/modules/whiteboard/components/control-bar/index.js +151 -0
  644. package/lib-es/modules/whiteboard/components/control-bar/store.js +298 -0
  645. package/lib-es/modules/whiteboard/components/loading/index.css +76 -0
  646. package/lib-es/modules/whiteboard/components/loading/index.js +57 -0
  647. package/lib-es/modules/whiteboard/components/loading/loading.png +0 -0
  648. package/lib-es/modules/whiteboard/components/multi-window/index.css +63 -0
  649. package/lib-es/modules/whiteboard/components/multi-window/index.js +31 -0
  650. package/lib-es/modules/whiteboard/components/pagination/index.css +228 -0
  651. package/lib-es/modules/whiteboard/components/pagination/index.js +155 -0
  652. package/lib-es/modules/whiteboard/components/pagination/store.js +10 -0
  653. package/lib-es/modules/whiteboard/components/progress/index.js +36 -0
  654. package/lib-es/modules/whiteboard/components/progress/style.css +51 -0
  655. package/lib-es/modules/whiteboard/components/scene-pagination.js +23 -0
  656. package/lib-es/modules/whiteboard/components/switch-theme/index.css +99 -0
  657. package/lib-es/modules/whiteboard/components/switch-theme/index.js +89 -0
  658. package/lib-es/modules/whiteboard/components/switch-theme/item.js +46 -0
  659. package/lib-es/modules/whiteboard/components/switch-theme/libs.js +24 -0
  660. package/lib-es/modules/whiteboard/components/toolbar/components/color-picker/components/color.js +30 -0
  661. package/lib-es/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +101 -0
  662. package/lib-es/modules/whiteboard/components/toolbar/components/color-picker/components/picker.js +67 -0
  663. package/lib-es/modules/whiteboard/components/toolbar/components/color-picker/index.js +40 -0
  664. package/lib-es/modules/whiteboard/components/toolbar/components/eraser-picker.js +136 -0
  665. package/lib-es/modules/whiteboard/components/toolbar/components/expansion/index.js +85 -0
  666. package/lib-es/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +46 -0
  667. package/lib-es/modules/whiteboard/components/toolbar/components/history.js +70 -0
  668. package/lib-es/modules/whiteboard/components/toolbar/components/icons/fold-icon.js +33 -0
  669. package/lib-es/modules/whiteboard/components/toolbar/components/icons/move-icon.js +59 -0
  670. package/lib-es/modules/whiteboard/components/toolbar/components/item/index.js +35 -0
  671. package/lib-es/modules/whiteboard/components/toolbar/components/move-handle.js +127 -0
  672. package/lib-es/modules/whiteboard/components/toolbar/components/pen-picker.js +147 -0
  673. package/lib-es/modules/whiteboard/components/toolbar/components/screen-capture-picker.js +78 -0
  674. package/lib-es/modules/whiteboard/components/toolbar/components/shape-picker.js +202 -0
  675. package/lib-es/modules/whiteboard/components/toolbar/hooks/index.js +285 -0
  676. package/lib-es/modules/whiteboard/components/toolbar/index.js +72 -0
  677. package/lib-es/modules/whiteboard/components/toolbar/store.js +484 -0
  678. package/lib-es/modules/whiteboard/components/toolbar/style.css +591 -0
  679. package/lib-es/modules/whiteboard/context.js +28 -0
  680. package/lib-es/modules/whiteboard/index.js +67 -0
  681. package/lib-es/modules/whiteboard/libs/theme.js +24 -0
  682. package/lib-es/modules/whiteboard/store.browser.js +20 -0
  683. package/lib-es/modules/whiteboard/store.electron.js +163 -0
  684. package/lib-es/modules/whiteboard/store.js +457 -0
  685. package/lib-es/modules/whiteboard/style.css +140 -0
  686. package/lib-es/modules/whiteboard/type.js +52 -0
  687. package/lib-es/modules/whiteboard/utils.js +29 -0
  688. package/lib-es/modules/whiteboard/view.js +105 -0
  689. package/lib-es/modules/widget/index.css +9 -0
  690. package/lib-es/modules/widget/index.js +129 -0
  691. package/lib-es/modules/widget/store.base.js +35 -0
  692. package/lib-es/modules/widget/store.browser.js +74 -0
  693. package/lib-es/modules/widget/store.electron.js +127 -0
  694. package/lib-es/modules/widget/type.js +1 -0
  695. package/lib-es/modules/widget/view.js +49 -0
  696. package/lib-es/modules/widget/web-widget.js +263 -0
  697. package/lib-es/object-manager.js +194 -0
  698. package/lib-es/plugins/browser-runtime-plugin.js +0 -0
  699. package/lib-es/plugins/css-preset-plugin.js +18 -0
  700. package/lib-es/plugins/electron-rtc-plugin.js +3 -0
  701. package/lib-es/plugins/module-dev-plugin.js +162 -0
  702. package/lib-es/plugins/multi-lang-plugin.js +18 -0
  703. package/lib-es/plugins/rtm-plugin.js +3 -0
  704. package/lib-es/plugins/web-rtc-plugin.js +3 -0
  705. package/lib-es/providers/ability-provider.js +76 -0
  706. package/lib-es/providers/annotation/provider.js +61 -0
  707. package/lib-es/providers/annotation/type.js +1 -0
  708. package/lib-es/providers/app-list-provider.js +392 -0
  709. package/lib-es/providers/board-share/bar-control/base.js +318 -0
  710. package/lib-es/providers/board-share/bar-control/browser.js +34 -0
  711. package/lib-es/providers/board-share/bar-control/electron.js +211 -0
  712. package/lib-es/providers/board-share/provider.base.js +406 -0
  713. package/lib-es/providers/board-share/provider.browser.js +147 -0
  714. package/lib-es/providers/board-share/provider.electron.js +162 -0
  715. package/lib-es/providers/board-share/struct.js +16 -0
  716. package/lib-es/providers/board-share/type.js +1 -0
  717. package/lib-es/providers/chat-provider.js +166 -0
  718. package/lib-es/providers/device-privilege-provider.js +402 -0
  719. package/lib-es/providers/device-provider.js +2148 -0
  720. package/lib-es/providers/device-stream-provider.js +418 -0
  721. package/lib-es/providers/dialog/provider.base.js +282 -0
  722. package/lib-es/providers/dialog/provider.browser.js +160 -0
  723. package/lib-es/providers/dialog/provider.electron.js +273 -0
  724. package/lib-es/providers/dialog/type.js +8 -0
  725. package/lib-es/providers/event-provider.js +50 -0
  726. package/lib-es/providers/facility/provider.base.js +152 -0
  727. package/lib-es/providers/facility/provider.browser.js +67 -0
  728. package/lib-es/providers/facility/provider.electron.js +83 -0
  729. package/lib-es/providers/facility/struct.js +6 -0
  730. package/lib-es/providers/facility/type.js +1 -0
  731. package/lib-es/providers/interpreter-provider.js +955 -0
  732. package/lib-es/providers/local-storage-provider.js +37 -0
  733. package/lib-es/providers/message/provider.js +97 -0
  734. package/lib-es/providers/message/struct.js +5 -0
  735. package/lib-es/providers/message/type.js +1 -0
  736. package/lib-es/providers/monitor-provider.js +22 -0
  737. package/lib-es/providers/mouse-detect/provider.js +312 -0
  738. package/lib-es/providers/mouse-detect/struct.js +5 -0
  739. package/lib-es/providers/mouse-detect/type.js +1 -0
  740. package/lib-es/providers/multi-display-provider.js +603 -0
  741. package/lib-es/providers/phone-audio-provider.js +512 -0
  742. package/lib-es/providers/privilege-provider.js +1158 -0
  743. package/lib-es/providers/renderer-provider.js +310 -0
  744. package/lib-es/providers/room-provider/room-provider.js +730 -0
  745. package/lib-es/providers/room-provider/waiting-room-control-manager.js +224 -0
  746. package/lib-es/providers/screen-share/constant.js +1 -0
  747. package/lib-es/providers/screen-share/provider.base.js +511 -0
  748. package/lib-es/providers/screen-share/provider.browser.js +290 -0
  749. package/lib-es/providers/screen-share/provider.electron.js +486 -0
  750. package/lib-es/providers/screen-share/strategy/browser.js +306 -0
  751. package/lib-es/providers/screen-share/strategy/electron.js +364 -0
  752. package/lib-es/providers/screen-share/strategy/type.js +31 -0
  753. package/lib-es/providers/screen-share/stream-state-sync.js +312 -0
  754. package/lib-es/providers/screen-share/struct.js +60 -0
  755. package/lib-es/providers/screen-share/type.js +1 -0
  756. package/lib-es/providers/session-provider.js +42 -0
  757. package/lib-es/providers/setting-storage/provider.base.js +6 -0
  758. package/lib-es/providers/setting-storage/provider.browser.js +57 -0
  759. package/lib-es/providers/setting-storage/provider.electron.js +55 -0
  760. package/lib-es/providers/setting-storage/type.js +1 -0
  761. package/lib-es/providers/stt-provider/stt-provider.js +1000 -0
  762. package/lib-es/providers/stt-provider/type.js +14 -0
  763. package/lib-es/providers/widget-provider.js +236 -0
  764. package/lib-es/providers/window/main-window.js +259 -0
  765. package/lib-es/providers/window/provider.js +158 -0
  766. package/lib-es/providers/window/renderer-window.js +576 -0
  767. package/lib-es/providers/window/type.js +1 -0
  768. package/lib-es/runtime.js +1 -0
  769. package/lib-es/scenes/main-scene.js +696 -0
  770. package/lib-es/scenes/type.js +1 -0
  771. package/lib-es/scenes/waiting-scene.js +155 -0
  772. package/lib-es/schema.js +88 -0
  773. package/lib-es/shared-context/board-context.js +7 -0
  774. package/lib-es/shared-context/dialog-context.js +3 -0
  775. package/lib-es/shared-context/video-track-render-context.js +2 -0
  776. package/lib-es/shared-data/app-list-data.js +122 -0
  777. package/lib-es/shared-data/chat-data.js +135 -0
  778. package/lib-es/shared-data/config.js +38 -0
  779. package/lib-es/shared-data/confirm-data.js +195 -0
  780. package/lib-es/shared-data/device-privilege-data.js +18 -0
  781. package/lib-es/shared-data/interpreter.js +235 -0
  782. package/lib-es/shared-data/layout-data.js +211 -0
  783. package/lib-es/shared-data/meeting-time.js +409 -0
  784. package/lib-es/shared-data/member-data.js +482 -0
  785. package/lib-es/shared-data/pin-data.js +107 -0
  786. package/lib-es/shared-data/screen-share/index.js +188 -0
  787. package/lib-es/shared-data/screen-share/type.js +1 -0
  788. package/lib-es/shared-data/security-data.js +153 -0
  789. package/lib-es/shared-data/setting.js +244 -0
  790. package/lib-es/shared-data/speaker-spotlight.js +11 -0
  791. package/lib-es/shared-data/stt-setting.ts/constant.js +27 -0
  792. package/lib-es/shared-data/stt-setting.ts/index.js +195 -0
  793. package/lib-es/shared-data/stt-setting.ts/type.js +7 -0
  794. package/lib-es/shared-data/video-window.js +1248 -0
  795. package/lib-es/shared-data/waiting-room.js +216 -0
  796. package/lib-es/shared-data/widget-data.js +42 -0
  797. package/lib-es/translations/enUS.js +2075 -0
  798. package/lib-es/translations/zhCN.js +2073 -0
  799. package/lib-es/type.js +149 -0
  800. package/lib-es/ui-manager.js +213 -0
  801. package/lib-es/ui-scene-switch.js +572 -0
  802. package/lib-es/utilities/browser-api.js +74 -0
  803. package/lib-es/utilities/constant.js +190 -0
  804. package/lib-es/utilities/debug.js +33 -0
  805. package/lib-es/utilities/default-config.js +89 -0
  806. package/lib-es/utilities/dialog-utils.js +210 -0
  807. package/lib-es/utilities/focus-helper.js +26 -0
  808. package/lib-es/utilities/hooks.js +82 -0
  809. package/lib-es/utilities/i18n-common-data.js +7 -0
  810. package/lib-es/utilities/logger.js +48 -0
  811. package/lib-es/utilities/meeting-detail.js +74 -0
  812. package/lib-es/utilities/mute-action.js +41 -0
  813. package/lib-es/utilities/package-info.js +7 -0
  814. package/lib-es/utilities/parameters.js +47 -0
  815. package/lib-es/utilities/platform.js +7 -0
  816. package/lib-es/utilities/privilege.js +21 -0
  817. package/lib-es/utilities/regex.js +7 -0
  818. package/lib-es/utilities/renderer.js +430 -0
  819. package/lib-es/utilities/shared-storage.js +56 -0
  820. package/lib-es/utilities/tools.js +252 -0
  821. package/lib-es/utilities/ui-resources.js +84 -0
  822. package/lib-es/utilities/useNamespace.js +59 -0
  823. package/lib-es/utilities/validate-params.js +9 -0
  824. package/package.json +11 -9
@@ -0,0 +1,2075 @@
1
+ export var enUs = {
2
+ fmt_role_host: 'Host',
3
+ //****************** ls ******************
4
+ fmt_role_participant: 'Attendees',
5
+ fmt_role_cohost: 'Co-host',
6
+ fmt_participants_label_participants: 'Member List',
7
+ fmt_participants_label_popUp: 'Eject',
8
+ fmt_participants_window_title: 'Attendees{reason1}',
9
+ fmt_participants_button_muteAll: 'All mute',
10
+ fmt_participants_button_unmuteAll: 'Unmute all',
11
+ fmt_participants_button_meetingManagement: 'Settings',
12
+ fmt_participants_button_invite: 'Invite',
13
+ fmt_participants_member_button_mute: 'Mute',
14
+ fmt_participants_member_button_unmute: 'Unmute',
15
+ fmt_participants_member_button_more: 'More',
16
+ //****************** 参会者 ******************
17
+ fmt_attendies_options_muteall: 'Mute all attendees in the meeting room',
18
+ fmt_attendies_button_muteall: 'Mute all',
19
+ fmt_participants_window_mute_interpreter: 'You are muting the interpreter. Do you want to continue?',
20
+ fmt_participants_button_mute_interpreter_sure: 'Sure',
21
+ fmt_participants_button_mute_interpreter_cancel: 'Cancel',
22
+ fmt_attendies_button_cancel: 'Cancel',
23
+ fmt_attendies_options_muteuponjoin: 'Mute all participants upon joining',
24
+ fmt_attendies_options_allowunmute: 'Allow participants to self unmute',
25
+ fmt_attendies_options_applyunmute: 'Request unmute',
26
+ fmt_attendies_button_request: 'Request',
27
+ fmt_attendies_button_handsdown: 'Put your hands down',
28
+ fmt_attendies_label_privatechat: 'Private chat',
29
+ fmt_attendies_options_setfocus: 'Set as the spotlight video',
30
+ fmt_attendies_options_replacefixed: 'Replace fixed window',
31
+ fmt_attendies_options_fixfirst: 'Fix the window to top ',
32
+ fmt_attendies_options_cancelfixed: 'Cancel fixed window',
33
+ fmt_attendies_options_sethost: 'Set as the host',
34
+ fmt_attendies_options_revokecohost: 'Revoke co-host',
35
+ fmt_attendies_options_setcohost: 'Set as co-host',
36
+ fmt_attendies_toast_cant_sethost: "The member's device cannot be assigned as the host.",
37
+ fmt_attendies_toast_cant_setcohost: "The member's device cannot be assigned as the co-host.",
38
+ fmt_attendies_button_revokehost_error: 'Your host privileges have been revoked, and the setup has failed.',
39
+ fmt_attendies_toast_cohost_upper_limit: 'The number of co-hosts has reached the upper limit; no more co-hosts can be set.',
40
+ fmt_attendies_button_rename: 'Rename',
41
+ fmt_attendies_options_allowlocalrecord: 'Allow recording of local videos',
42
+ fmt_attendies_options_putinwaitingroom: 'Put it in the waiting room',
43
+ fmt_attendies_button_remove: 'Remove',
44
+ fmt_participants_options_allunmute: 'Allow all members to self unmute',
45
+ fmt_participants_options_allmute: 'Mute all',
46
+ fmt_modules_tips_mergevideo: 'Merge with video',
47
+ fmt_participant_label_Me: 'Me',
48
+ fmt_attendies_button_serach: 'Search',
49
+ fmt_attendies_tips_nopermission: 'The other party is {reason1}, you cannot operate it',
50
+ fmt_attendies_tab_meetingroom: 'In meeting',
51
+ fmt_attendies_tab_waitingroom: 'Waiting Room',
52
+ fmt_attendies_host_permission: 'Retract host privileges',
53
+ fmt_attendies_option_apply_all_audio: 'Unmute all',
54
+ fmt_attendies_status_item_ringing: 'Ringing',
55
+ fmt_attendies_labels_setting_mine: '(Me)',
56
+ fmt_attendies_tips_setting_title: 'Member settings',
57
+ fmt_attendies_tips_setting_media_co_host_unable: 'The other party is a co-host, you cannot operate it',
58
+ fmt_attendies_tips_setting_media_host_unable: 'The other party is the host, you cannot operate it',
59
+ fmt_attendies_tips_setting_make_host_info: 'Should {reason1} be appointed as the host of the meeting?',
60
+ fmt_attendies_tips_setting_make_co_host_info: 'Should {reason1} be designated as the co chair of the meeting?',
61
+ fmt_attendies_tips_setting_require_unmute: 'Request everyone to unmute',
62
+ fmt_attendies_label_no_data: 'No Data',
63
+ fmt_attendies_tips_send_mute_all_on: 'You have muted all',
64
+ fmt_attendies_tips_mute_all_off: 'Everyone is able to turn on the microphone',
65
+ fmt_attendies_tips_chat_off: 'Host prohibits private chat',
66
+ fmt_attendies_tips_apply_audio_title: '{reason1} request you to unmute',
67
+ fmt_attendies_tips_apply_audio_info: 'After agreeing to release, your microphone will turn on.',
68
+ fmt_attendies_label_apply_audio_cancel: 'Keep mute',
69
+ fmt_attendies_tips_apply_video_title: '{reason1} request to turn on camera',
70
+ fmt_attendies_tips_apply_video_info: 'After agreeing to release, your camera will turn on.',
71
+ fmt_attendies_label_apply_video_cancel: 'Keep closed',
72
+ fmt_attendies_tips_receive_mute_all: '{reason1} has muted all .',
73
+ fmt_attendies_tips_receive_mute_you: '{reason1} has muted you',
74
+ fmt_attendies_tips_receive_video_off_you: 'The {reason1} has turned off your camera',
75
+ fmt_attendies_tips_mine_new_host: '{reason1} (Me) became the new host',
76
+ fmt_attendies_tips_new_host: '{reason1} becomes the new host',
77
+ fmt_attendies_tips_mine_new_co_host: 'You have been appointed as a co-host',
78
+ fmt_attendies_tips_new_co_host: '{reason1} has become the co-host',
79
+ fmt_attendies_tips_invoke_co_host: "{reason1}'s co-host status has been revoked",
80
+ fmt_attendies_tips_revoke_co_host: 'Your co-host identity has been revoked',
81
+ fmt_attendies_tips_not_co_host: '{reason1} is no longer a co-host',
82
+ fmt_attendies_tips_operation_success: 'Operate succeed',
83
+ fmt_attendies_tips_operation_failed: 'Operate failed',
84
+ fmt_attendies_tips_forbid_close: 'Host prohibits closing',
85
+ fmt_attendies_tips_request_send: 'You have sent a request',
86
+ fmt_additional_tips_cohostbeenrevoke: 'Your co-host identity has been revoked',
87
+ fmt_additional_tips_cohostrevoke: "{reason1}'s co-host status has been revoked",
88
+ fmt_additional_tips_nolongercohost: '{reason1} is no longer a co-host',
89
+ fmt_additional_option_rename_in_meeting: 'Rename',
90
+ fmt_additional_label_attendee_permission: 'Attendee Permission',
91
+ fmt_additional_label_meet_view_own: 'My Own View',
92
+ fmt_additional_label_meet_view_all: 'Meeting View for All',
93
+ fmt_additional_label_change_name_self: 'Rename',
94
+ fmt_additional_tips_nickname_change_success: 'Nickname changed successfully',
95
+ fmt_additional_popup_label_enter_nickname: 'Please enter a nickname',
96
+ fmt_additional_popup_label_enter_nickname_ok: 'OK',
97
+ fmt_additional_label_toast_rename_off: 'Host has closed the rename function',
98
+ fmt_attendies_toast_host_enabled_mute: 'The host has enabled mute upon entry for all participants​​',
99
+ fmt_attendies_toast_host_turned_off_video: '​​The host has turned off video automatically upon entry',
100
+ fmt_attendies_toast_cohost_full: 'Current co-hosts are full. Please try again later.',
101
+ fmt_actionbar_tips_leavemeeting: 'Are you sure you want to leave the meeting now?',
102
+ fmt_actionbar_tips_locked: 'The meeting has been locked by the host',
103
+ fmt_actionbar_tips_recheckleave: 'You cannot join the meeting after leaving the meeting; Are you sure you want to leave the meeting now?',
104
+ fmt_aside_status_connecting: 'Connecting',
105
+ fmt_actionbar_labels_endmeeting: 'Are you sure you want to end the meeting now?',
106
+ fmt_actionbar__button_leaveyes: 'Yes',
107
+ fmt_actionbar__button_leaveno: 'No',
108
+ fmt_actionbar_options_utoadjust: 'Automatically adjust speaker volume',
109
+ fmt_actionbar_options_micautoadjust: 'Automatically adjust microphone volume',
110
+ fmt_actionbar_label_reducenoise: 'Reduce background noise',
111
+ fmt_actionbar_tips_cameraturnon: 'After accepting the invitation, your camera will turn on.',
112
+ fmt_actionbar_button_accept: 'Accept',
113
+ fmt_actionbar_button_refuse: 'Refuse',
114
+ fmt_actionbar_tips_unmute: "The host wants you to 'unmute'",
115
+ fmt_actionbar_tips_agreeturnon: 'After agreeing to release, your microphone will turn on.',
116
+ fmt_actionbar_options_Keepsilent: 'Keep mute',
117
+ fmt_statusbar_label_fullscreen: 'Full screen',
118
+ fmt_statusbar_label_exitfullscreen: 'Exit full-screen mode',
119
+ fmt_statusbar_label_switchlayout: 'Switch layout',
120
+ fmt_statusbar_label_durationtime: 'Meeting duration (scheduled meeting time {reason1}{reason2})',
121
+ fmt_statusbar_label_layout: 'Layout',
122
+ fmt_statusbar_label_layoutsetting: 'Layout Settings',
123
+ fmt_statusbar_hover_unable_switch_grid_view: 'Unable to switch to the grid view when the attendee is sharing their screen',
124
+ fmt_statusbar_opions_listontop: 'List on top',
125
+ fmt_statusbar_label_grid: 'Grid({reason1}views)',
126
+ fmt_statusbar_label_customwating: 'Watch live streams on a custom live streaming server',
127
+ fmt_statusbar_status_coppied: 'Already copied on the clipboard',
128
+ fmt_statusbar_tips_copyfailed: 'Copy failed',
129
+ fmt_statusbar_tips_onstreaming: 'The meeting is being live streamed on a custom live streaming service',
130
+ fmt_statusbar_label_hour: 'hour',
131
+ fmt_statusbar_label_minutes: 'minute',
132
+ fmt_statusbar_label_cloudrecordingpaused: 'Cloud recording paused',
133
+ fmt_statusbar_label_networkpaused: 'Network status',
134
+ fmt_statusbar_label_unknown: 'unknown',
135
+ fmt_statusbar_label_millisecond: 'ms',
136
+ fmt_toolbar_tips_expand: 'Expand the toolbar',
137
+ fmt_toolbar_label_connectaudio: 'Audio',
138
+ fmt_toolbar_label_nodevice: 'No device',
139
+ fmt_toolbar_label_camera: 'Camera',
140
+ fmt_toolbar_options_enablecamera: 'Start video',
141
+ fmt_toolbar_tips_nodevice: 'No available devices',
142
+ fmt_toolbar_button_audioaccess: 'Select audio access method',
143
+ fmt_toolbar_options_pcaudio: 'Connect to PC audio',
144
+ fmt_toolbar_options_phoneaudio: 'Connect to phone audio',
145
+ fmt_toolbar_options_switchaccessmode: 'Switch audio access mode',
146
+ fmt_toolbar_button_assignnewhost: 'Assign a New Host',
147
+ fmt_toolbar_button_assignleave: 'Assign and Leave',
148
+ fmt_toolbar_button_end: 'End',
149
+ fmt_toolbar_button_leave: 'Leave',
150
+ fmt_toolbar_button_cancel: 'Cancel',
151
+ fmt_popup_tips_endplenarymeeting: 'Is the meeting over now?',
152
+ fmt_popup_button_endmeeting: 'End the meeting',
153
+ fmt_popup_button_leavemeeting: 'Leave the meeting',
154
+ fmt_popup_button_cancel: 'Cancel',
155
+ fmt_meetingroom_status_abnormal: 'The meeting is abnormal',
156
+ fmt_meetingroom_tips_disconnected: 'The meeting connection is interrupted, please rejoin',
157
+ fmt_meetingroom_join_fail: 'Failed to join',
158
+ fmt_meetingroom_tips_rejoin: 'Please rejoin',
159
+ fmt_meetingroom_button_sure: 'Sure',
160
+ fmt_popup_tips_leavenow: 'Are you sure you want to leave the meeting now?',
161
+ fmt_popup_label_expression: 'expression',
162
+ fmt_popup_tips_alreadycopied: 'Already copied on the clipboard',
163
+ fmt_popup_button_meetinginfor: 'Copy Details',
164
+ fmt_popup_button_activatewaitingroom: 'Activate waiting room',
165
+ fmt_popup_button_openvideo: 'Open video',
166
+ fmt_popup_button_drag: 'Drag',
167
+ fmt_popup_label_muted: 'Muted',
168
+ fmt_popup_label_turnedon: 'On',
169
+ fmt_popup_label_meetingduration: 'Meeting duration {reason1} minutes',
170
+ fmt_leave_tips_removetip: 'You have been removed from this meeting. Clicking the button to exit',
171
+ fmt_leave_tips_classover: 'The meeting has ended, click the button to leave the meeting room.',
172
+ fmt_toolbar_label_receiver: 'receiver',
173
+ fmt_toolbar_label_me: 'Me',
174
+ fmt_toolbar_label_ear_phone: 'Headset',
175
+ fmt_toolbar_label_confirm: 'Confirm',
176
+ fmt_toolbar_label_open: 'Open',
177
+ fmt_toolbar_label_unlock: 'Unlock',
178
+ fmt_toolbar_tips_microphone_open: 'Microphone turned on',
179
+ fmt_toolbar_tips_microphone_close: 'Microphone off',
180
+ fmt_toolbar_tips_camera_open: 'Camera turned on',
181
+ fmt_toolbar_tips_camera_close: 'Camera off',
182
+ fmt_toolbar_tips_host_forbid_open_mic: 'The host does not allow unmuting.',
183
+ fmt_toolbar_tips_host_forbid_open_camera: 'The host does not allow attendees to start video.',
184
+ fmt_toolbar_details_info_locked: '(Locked)',
185
+ fmt_toolbar_details_room_locked: 'Meeting locked',
186
+ fmt_toolbar_details_room_locked_tip: 'No participants are allowed to enter the meeting',
187
+ fmt_toolbar_tips_details_unlock_meeting: 'You have unlocked the meeting, new participants can join',
188
+ fmt_toolbar_tips_actions_route_earphone: 'Switch to headphone mode',
189
+ fmt_toolbar_tips_actions_route_receiver: 'Switch to earpiece mode',
190
+ fmt_toolbar_tips_actions_route_speaker: 'Switch to speaker mode',
191
+ fmt_toolbar_tips_leave_room_lock_title: 'The meeting has been locked by the host',
192
+ fmt_toolbar_tips_leave_room_lock_info: 'After leaving the meeting, you cannot join again. Are you sure you want to leave?',
193
+ fmt_toolbar_leave_room_end_submit: 'End Meeting',
194
+ fmt_toolbar_tips_leave_room_end_cancel: 'Cancel',
195
+ fmt_toolbar_tips_leave_host_select_submit_tips: 'Please designate a new host',
196
+ fmt_toolbar_leave_confirm_dialog_kick_title: 'Leave the meeting',
197
+ fmt_toolbar_tips_leave_confirm_dialog_kick_info: 'You have been removed from the meeting by the host',
198
+ fmt_toolbar_tips_leave_confirm_dialog_kick_info_content: 'Confirm removing {reason1} from the meeting?',
199
+ fmt_toolbar_leave_confirm_dialog_submit: 'Got It',
200
+ fmt_toolbar_tips_leave_confirm_dialog_end_title: 'The meeting has ended',
201
+ fmt_toolbar_tips_leave_confirm_dialog_end_info: 'The meeting has ended, please click the button to leave the meeting room',
202
+ fmt_additional_tips_cameraturnon: 'After accepting the invitation, your camera will turn on.',
203
+ fmt_additional_button_accept: 'accept',
204
+ fmt_additional_button_refuse: 'refuse',
205
+ fmt_additional_tips_unmute: "The host wants you to 'unmute'",
206
+ fmt_additional_tips_agreeturnon: 'After agreeing to release, your microphone will turn on.',
207
+ fmt_additional_options_Keepsilent: 'Keep silent',
208
+ fmt_actionbar_button_enable: 'Enable',
209
+ fmt_actionbar_button_disable: 'Disable',
210
+ fmt_actionbar_tips_cloudrecording_already: 'Cloud Recording has {reason1}',
211
+ fmt_actionbar_tips_joinroom_noaudio: 'Are you sure to join the meeting without audio?',
212
+ fmt_actionbar_tips_canthear: "You can't hear the other participants, and they can't hear you.",
213
+ fmt_actionbar_button_continue: 'Continue',
214
+ fmt_actionbar_option_connectaudio: 'Connect your audio',
215
+ fmt_actionbar_label_dialsip: 'Dial H.323/SIP Room System',
216
+ fmt_driver_installation_v_sound_card: 'The audio driver has been installed and will take effect after restarting meeting',
217
+ fmt_camera_popup_label_restricted: 'Camera privileges are restricted',
218
+ fmt_camera_popup_label_system_change: 'Please go to system settings to change camera privileges',
219
+ fmt_camera_popup_button_system_change: 'Go to system settings to change',
220
+ fmt_camera_popup_button_cancel: 'Cancel',
221
+ fmt_audio_popup_label_restricted: 'Microphone privileges are restricted',
222
+ fmt_audio_popup_label_system_change: 'Please change the microphone privileges in system settings',
223
+ fmt_audio_popup_button_system_change: 'Go to system settings to change',
224
+ fmt_audio_popup_button_cancel: 'Cancel',
225
+ fmt_audio_popup_button_turning_on: 'Turning on...',
226
+ fmt_popup_copywrite_stopstreamingnow: 'Stop Streaming?',
227
+ fmt_popup_options_confirmstop: 'Confirm to stop live streaming',
228
+ fmt_popup_options_placedbottom: 'Move to Bottom',
229
+ fmt_popup_options_placedtop: 'Move to Top',
230
+ fmt_broadcast_tips_righturl: 'Please enter the correct live streaming page address',
231
+ fmt_broadcast_tips_anyonewatch: 'Anyone who uses this link can watch the live broadcast',
232
+ fmt_broadcast_tips_streamingwebpage: 'Please enter the URL of the live streaming webpage',
233
+ fmt_broadcast_tips_rightstreamingwebpage: 'Please enter the correct URL for the live streaming webpage',
234
+ fmt_broadcast_tips_initiatefailed: 'Initiate failed',
235
+ fmt_broadcast_tips_alreadybroadcasting: 'You have already initiated a live streaming service and need to stop before you can start a new live stream',
236
+ fmt_additional_tips_startstreamingfailed: 'Start live streaming failed',
237
+ fmt_additional_tips_updatelayoutfailed: 'Update live streaming layout failed',
238
+ fmt_additional_tips_stoplivefailed: 'Stop live streaming failed',
239
+ fmt_actionbar_livestreaming_option_livenow: 'Live On Custom Live Streaming now',
240
+ fmt_actionbar_livestreaming_option_customlive: 'On Custom Live Streaming Service',
241
+ fmt_actionbar_livestreaming_button_stoplive: 'Stop Live',
242
+ fmt_actionbar__livestreaming_labels_live: 'Live',
243
+ fmt_broadcast_text_copyurl: 'The meeting is streaming on other platforms, you can copy the live streaming link to others',
244
+ fmt_broadcast_livestream_stopped: 'The live stream has stopped',
245
+ fmt_broadcast_livestream_merge: 'Will be merged with {reason1}',
246
+ fmt_broadcast_livestream_hand_over_relive: 'The handover to the host is complete. The broadcast has stopped. Please reopen the broadcast.',
247
+ fmt_broadcast_livestream_tips_hand_over_pc_to_mobile: 'The new host is joining the meeting via a mobile device. Live streaming functionality is not currently supported, and the live broadcast has been suspended.',
248
+ fmt_broadcast_livestream_tips_hand_over_mobile: 'You are joining the meeting via a mobile device. Live streaming functionality is not currently supported, and the live broadcast has been suspended.',
249
+ fmt_broadcast_livestream_label_stop_pc_only: 'Live streaming can only be stopped on the computer, but you can copy the live streaming link to others',
250
+ fmt_broadcast_livestream_button_hide: 'Hide',
251
+ fmt_broadcast_livestream_button_show: 'Show',
252
+ fmt_livestream_window_label_start_live_now: 'Start live stream now?',
253
+ fmt_livestream_window_button_not_now: 'Not Now​',
254
+ fmt_livestream_window_button_start_now: 'Start Now',
255
+ fmt_livestream_toast_live_now: 'Live Now',
256
+ fmt_livestream_window_button_keep: 'Keep Streaming',
257
+ fmt_livestream_window_button_end_stream: 'End Stream',
258
+ fmt_livestream_toast_live_link_copied: 'Live link copied!',
259
+ fmt_livestream_unable_switch_grid_view: 'Unable to switch to the grid view during live streaming.',
260
+ //****************** 设备检测&管理 ******************
261
+ fmt_device_label_audio_mute: 'Mute',
262
+ fmt_device_label_audio_unmute: 'Unmute',
263
+ fmt_device_label_video_start: 'Open Camera',
264
+ fmt_device_label_video_stop: 'Close camera',
265
+ fmt_device_label_audio_list_selectMicrophone: 'Select microphone',
266
+ fmt_device_label_audio_list_selectSpeaker: 'Select Speaker',
267
+ fmt_device_label_audio_list_leaveComputerAudio: 'Disable computer audio',
268
+ fmt_device_label_audio_list_switchToPhoneCall: 'Switch to phone audio',
269
+ fmt_device_label_audio_list_testAudioDevice: 'Test speaker and microphone',
270
+ fmt_device_label_audio_list_moreAudioSettings: 'More audio settings',
271
+ fmt_device_label_video_list_selectCamera: 'Select camera',
272
+ fmt_device_label_video_list_selectVirtualBackground: 'Select Virtual Background',
273
+ fmt_device_label_video_list_selectVideoFilter: 'Select video filter',
274
+ fmt_device_label_video_list_moreVideoSettings: 'More video settings',
275
+ fmt_modules_tips_notapplicate: 'Not applicable',
276
+ fmt_device_button_signout: 'Signout',
277
+ fmt_device_statues_opend: 'Opened',
278
+ fmt_device_statues_closed: 'Closed',
279
+ fmt_device_options_whitening: 'Whitening',
280
+ fmt_device_options_effects_enable: 'Click to enable the special effects background',
281
+ fmt_device_options_effects_disable: 'Click to disable the special effects background',
282
+ fmt_device_options_smoother: 'Smoother',
283
+ fmt_device_options_brighter: 'Brighter',
284
+ fmt_device_tips_videoeffectson: 'If the camera is turned on, the video effects will change in real-time',
285
+ fmt_device_labels_specialeffects: 'Special effects',
286
+ fmt_device_options_videojoin: 'Join with Video',
287
+ fmt_modules_labels_devicesettings: 'Device Settings',
288
+ fmt_status_label_Qualitystatistics: 'Quality statistics',
289
+ fmt_status_label_saysomething: 'Say Something',
290
+ fmt_status_label_stoprecord: 'Stop Recording',
291
+ fmt_status_label_rotation: 'reverse lens',
292
+ //****************** 入会检测 ******************
293
+ fmt_sip_button_unmute: 'Request to unmute',
294
+ fmt_sip_button_opencamera: 'Request to open camera',
295
+ fmt_sip_button_topup: 'Top up',
296
+ fmt_sip_button_rename: 'Rename',
297
+ fmt_sip_button_remove: 'Remove from meeting',
298
+ fmt_security_options_allowunmute: 'Allow participants to self unmute',
299
+ fmt_device_label_inspection_user_name: '{reason1} (you)',
300
+ fmt_device_label_inspection_mirror_mode: 'Mirror mode',
301
+ fmt_device_inspection_camera_on: 'Camera on',
302
+ fmt_device_inspection_turn_on_camera: 'Open Camera',
303
+ fmt_device_label_inspection_switch_camera: 'Flip over',
304
+ fmt_device_label_inspection_speaker_on: 'Speaker on',
305
+ fmt_device_label_speaker_follow_system: 'Follow System - {reason1}',
306
+ fmt_device_label_speaker_default: 'default ',
307
+ fmt_device_inspection_turn_on_speaker: 'Open speaker',
308
+ fmt_device_inspection_start_meeting: 'Join Meeting',
309
+ fmt_device_label_inspection_audio_route_speaker: 'Speaker',
310
+ fmt_device_label_inspection_audio_route_receiver: 'Receiver',
311
+ fmt_device_inspection_audio_route_headset: 'Headset',
312
+ fmt_device_inspection_audio_route_mute: 'Mute',
313
+ fmt_device_enabled: 'Enabled',
314
+ fmt_device_disable: 'Not enabled',
315
+ fmt_device_lightening: 'Skin whitening',
316
+ fmt_device_smoothness: 'Grinding skin',
317
+ fmt_device_redness: 'Rosy',
318
+ fmt_device_reset: 'Reset',
319
+ fmt_device_beauty_camera_open_remind: 'If the camera is turned on, the video effects will change in real-time',
320
+ fmt_device_other_watch_me: 'Others look at me',
321
+ fmt_device_i_watch_self: 'I look at myself',
322
+ fmt_device_enable_beauty_filter: 'Beautification on',
323
+ fmt_device_disable_beauty_filter: 'Beautification off',
324
+ fmt_device_beauty_turnoff: 'Not applicable',
325
+ fmt_device_remind_property_title: 'IT is not recommended to use special effects due to the device performance is too low',
326
+ fmt_device_remind_property_content: 'Your device performance rating is below the requirements for the best experience, and enabling the current feature may cause the device to overheat and lag. Are you sure you want to continue enabling this feature?',
327
+ fmt_device_remind_beauty_open_camera_title: 'The effect you set will take effect. Do you want to turn on the camera?',
328
+ fmt_device_remind_beauty_open_camera_content: 'If the camera is not turned on, the Beautification will not take effect when exiting',
329
+ fmt_device_confirm_enable: 'Confirm activate',
330
+ fmt_device_mirroring_enable: 'Enable mirroring',
331
+ fmt_device_not_yet: 'Not yet',
332
+ fmt_device_beauty_on: 'Open',
333
+ fmt_device_options_redness: 'Rosy',
334
+ fmt_device_toast_switch_device: "Your audio device has been switched, please check your volume so you don't miss the meeting audio.",
335
+ fmt_device_toast_enable_microphone_maximum: 'The maximum number of simultaneous live connections for the meeting has been reached. We cannot enable your microphone for you. Please try again later.',
336
+ fmt_device_toast_enable_video_maximum: 'The maximum number of video connections for the current meeting has been reached. We cannot enable your camera for you. Please try again later.',
337
+ fmt_layout_label_speaker: 'Presenter View',
338
+ fmt_layout_label_gallery: 'Gallery view',
339
+ fmt_uimanager_labels_roomname: 'Room Name',
340
+ fmt_uimanager_labels_blank: '---',
341
+ fmt_uimanager_labels_Switchview: 'Switch layout',
342
+ fmt_uimanager_labels_sharing: 'Sharing...',
343
+ fmt_uimanager_button_returntocontent: 'Return to shared content',
344
+ fmt_uimanager_labels_screen: 'Screen',
345
+ fmt_uimanager_labels_whiteboard: 'Whiteboard',
346
+ fmt_uimanager_tips_passwordcopied: 'The meeting password has been copied to the clipboard',
347
+ fmt_uimanager_labels_wirednetwork: 'Wired network',
348
+ fmt_uimanager_option_flipleaf: 'Flip left',
349
+ fmt_uimanager_option_Reset: 'Reset',
350
+ fmt_uimanager_option_Cameraview: 'Others look at me ',
351
+ fmt_uimanager_option_Selfieview: 'Look at my self ',
352
+ fmt_uimanager_tips_urmuted: 'You have been muted by the host',
353
+ fmt_uimanager_tips_urturnedoff: 'You have had your camera turned off by the host',
354
+ fmt_uimanager_tips_inviteturnon: 'The host invites you to turn on the camera',
355
+ fmt_uimanager_tips_Remove: 'Remove {reason2}',
356
+ fmt_uimanager_tips_designedas: 'Should {reason1} be designated as the {reason2} of the meeting?',
357
+ fmt_uimanager_tips_userleaft: 'The user has left the meeting',
358
+ fmt_uimanager_labels_Setas: 'Set as {reason1}',
359
+ fmt_uimanager_tips_allmuted: 'You have turned on all mute',
360
+ fmt_uimanager_tips_meetingunlocked: 'You have unlocked the meeting, new participants can join',
361
+ fmt_uimanager_labels_designate: 'You have been designated as',
362
+ fmt_uimanager_labels_Becoming: '{reason2} Becoming {reason1}',
363
+ fmt_uimanager_tips_exceed: 'Exceeding the limit',
364
+ fmt_uimanager_labels_Clickselect: 'Click to select',
365
+ fmt_uimanager_button_determine: 'Confirm',
366
+ fmt_uimanager_button_Meetnow: 'Meet now',
367
+ fmt_uimanager_option_dualchannel: 'Shared dual channel',
368
+ fmt_uimanager_option_Sharedmono: 'Shared mono',
369
+ fmt_uimanager_option_Monochannel: 'Mono channel',
370
+ fmt_uimanager_option_Stereo: 'Stereo (high fidelity)',
371
+ fmt_uimanager_option_Improvefluency: 'Improve video fluency',
372
+ fmt_uimanager_option_Fluencypriority: 'Fluency first',
373
+ fmt_uimanager_option_Movebottom: 'Move to the bottom',
374
+ fmt_uimanager_option_Movetop: 'Move to the top',
375
+ fmt_uimanager_labels_Application: 'Application',
376
+ fmt_uimanager_tips_ilock: 'The host (me) has locked the meeting,and no one else is allowed to join',
377
+ fmt_uimanager_button_close: 'Close',
378
+ fmt_uimanager_option_popwindow: 'Pop up a separate window',
379
+ fmt_uimanager_option_mergeview: 'Merge to the right side of the view',
380
+ fmt_uimanager_labels_deviceselect: 'Please select a device',
381
+ fmt_uimanager_labels_mirror: 'Mirror',
382
+ fmt_modules_labels_speaking: 'Speaking:',
383
+ fmt_modules_status_nowspeaking: '{reason1} is speaking',
384
+ fmt_uimanager_window_un_pin: 'Cancel fixed',
385
+ fmt_uimanager_window_pin_success: 'The screen is locked. Click on the bottom right corner to unlock it',
386
+ fmt_uimanager_window_un_pin_success: 'The screen has been unlocked',
387
+ fmt_uimanager_window_pin_error_hide_no_video: "You have enabled the 'Hide Non Video Attendees' feature, but the fixed window cannot take effect",
388
+ fmt_uimanager_follow_pc: "Simulate following the host's computer view",
389
+ fmt_chat_label_chat: 'Chat',
390
+ fmt_chat_window_title: 'Chat',
391
+ fmt_chat_setting_privilege: 'Attendees can chat with:',
392
+ fmt_chat_setting_privilege_list_no: 'Nobody',
393
+ fmt_chat_setting_privilege_list_everyone: 'All',
394
+ fmt_chat_window_position_popup: 'Independent pop-up',
395
+ fmt_chat_window_position_merge: 'Merge into the main window',
396
+ fmt_chat_tips_exceedlimit: 'Exceeding word limit, please delete before sending',
397
+ fmt_chat_button_muteall: 'All prohibited speech',
398
+ fmt_chat_tips_Networkconnect: 'Network connection in progress Cannot send temporarily',
399
+ fmt_chat_tips_selectchat: 'Please select the user you want to chat with',
400
+ fmt_chat_tips_permissionchange: 'The host has changed permissions, please select again',
401
+ fmt_chat_option_onlypublic: 'Only allow public chat',
402
+ fmt_chat_option_onlyprivate: 'Only allow private chat hosts and co-hosts',
403
+ fmt_chat_tips_newmessage: '{reason1} New Messages',
404
+ fmt_chat_button_latestlocation: 'Return to the latest location',
405
+ fmt_chat_tips_freechat: 'Free chat permission has been enabled',
406
+ fmt_chat_tips_onlypublic: 'The chat room permission has been changed to only allow public chat',
407
+ fmt_chat_tips_muteroom: 'The chat room has been muted',
408
+ fmt_chat_labels_sendto: 'Send to',
409
+ fmt_chat_option_all: 'All',
410
+ fmt_chat_tips_selecthost: 'Please choose a host or cohost',
411
+ fmt_chat_tips_nodata: 'No data',
412
+ fmt_chats_label_from: 'From',
413
+ fmt_chats_label_privatechat: 'Private chat',
414
+ fmt_chat_options_Freechat: 'Free chat',
415
+ fmt_chat_options_Forbidchat: 'Forbid chat',
416
+ fmt_chat_options_Notapplicable: 'Not applicable',
417
+ fmt_chat_label_Chatmanagement: 'Chat management',
418
+ fmt_chat_button_MultipleChoice: 'Multiple Choice',
419
+ fmt_chat_tips_otherpartyleave: 'The attendie cannot receive messages. Please select another one to chat with.',
420
+ fmt_chat_options_onlyprivatechat: 'Private chat with the host and co-host',
421
+ fmt_chat_tips_chatpermissionchange: 'The chat room permissions have changed to only host and co-host can private chat ',
422
+ fmt_pairicipant_tips_cohostbeenrevoke: 'Your co-host identity has been revoked',
423
+ fmt_pairicipant_tips_cohostrevoke: "{reason1}'s co-host status has been revoked",
424
+ fmt_pairicipant_tips_nolongercohost: '{reason1} is no longer a co-host',
425
+ fmt_pairicipant_label_Now: 'Now',
426
+ fmt_pairicipant_tips_notempty: 'Role type cannot be empty',
427
+ fmt_chat_to_label_to: 'towards',
428
+ fmt_chat_label_bubbletip: 'Chat Bubble Tips',
429
+ fmt_attendies_label_chatpermisson: "Participants' chat permissions during the meeting",
430
+ fmt_chate_tips_leave: '{reason1} may have left the meeting and cannot receive messages. Please select a new chat partner',
431
+ fmt_chat_label_meetingchat: 'Meeting Chat',
432
+ fmt_chate_tips_wordoutrange: 'Exceeding the word limit, please adjust the word count before sending',
433
+ fmt_chat_txt_max_number: 'Exceeding the word limit, please adjust the word count before sending',
434
+ fmt_chat_private_tips: 'The other party may have left the meeting and cannot receive messages. Please select a new chat partner',
435
+ fmt_chat_send_to: 'Send to',
436
+ fmt_chat_copy_to_clipboard: 'Copy to clipboard',
437
+ fmt_chat_private_hosts: 'Please select the user you want to chat with',
438
+ fmt_chat_private_permission_changes: 'The host has changed permissions, please select again',
439
+ fmt_chat_status_call_in: 'Connecting via voice',
440
+ fmt_chat_room_chat_limit: 'Currently muted, unable to send messages',
441
+ fmt_chat_private_to_me: 'Me (private)',
442
+ fmt_chat_enable_limit: 'Currently mutted',
443
+ fmt_chat_say_something: 'Say something',
444
+ fmt_chat_send_cohost: 'Host/Co-host',
445
+ fmt_chat_setting_value: 'chat permissions',
446
+ fmt_chat_send_open: 'Allow chat freely',
447
+ fmt_chat_send_only_open: 'Only public chat allowed',
448
+ fmt_chat_send_only_cohost: 'Only hosts and co-hosts private chat allowed',
449
+ fmt_chat_send_limit: 'All participants are prohibited from speaking',
450
+ fmt_chat_to_me: 'to me',
451
+ fmt_chat_sending_to: 'to',
452
+ fmt_chat_to_you: 'You',
453
+ fmt_send_msg_max_length: 'Copy to clipboard (up to %1$d entries)',
454
+ fmt_networkstatus_state_disconnect: 'Reconnecting network... Cannot send messages',
455
+ fmt_open_chat_permission: 'Free chat allowed',
456
+ fmt_chat_rooms_are_enable: 'Chat room enabled',
457
+ fmt_chat_room_mute_is_enabled: 'The chat room has been disabled',
458
+ fmt_chat_only_open: 'The chat room permission has been changed to only allow public chat',
459
+ fmt_chat_only_host_cohost: 'The chat room permissions have been changed to only allow host and co-host private chat',
460
+ fmt_allow_white_board_label_edit: 'Editable whiteboard',
461
+ fmt_chat_copy_me_to: 'I said to {reason1} (%2$s): \n%3$s',
462
+ fmt_chat_copy_from_to: '{reason1} said to%2$s (%3$s): \n%4$s',
463
+ fmt_chat_copy_me_to_all: 'I say to everyone ({reason1}): \n%2$s',
464
+ fmt_chat_copy_from_to_all: '{reason1} To everyone (%2$s): \n%3$s',
465
+ fmt_chat_back_to_the_latest_location: 'Return to the latest location',
466
+ fmt_chat_new_unread_messages: '%1$d new unread message',
467
+ fmt_chat_unread_messages: '%1$d unread message',
468
+ fmt_chat_private_to_user: 'to {reason1}',
469
+ fmt_chat_network_connect: 'Connecting %1$s',
470
+ fmt_chat_setting_title: 'Chat Setting',
471
+ fmt_chat_setting_bubble_tips: 'Chat Bubble Tips',
472
+ fmt_chat_big_bubble: 'Big Bubble',
473
+ fmt_chat_small_bubble: 'Small Bubble',
474
+ fmt_chat_label_enter_message: 'Enter a message ',
475
+ fmt_chat_label_show_bubble_tips: 'Bubble Tips',
476
+ fmt_chat_label_am: 'AM',
477
+ fmt_chat_label_pm: 'PM',
478
+ fmt_chat_toast_select_more_error: 'Maximum ​​50 chat records​​ can be selected.',
479
+ fmt_chat_toast_infraction_error: 'Your message violates our policies and cannot be sent.',
480
+ fmt_screenshare_window_tab_basic: 'Basics',
481
+ fmt_screenshare_window_tab_advanced: 'Senior',
482
+ fmt_screenshare_window_button_start: 'Start sharing',
483
+ fmt_screenshare_window_checkbox_shareAudio: 'Share sound',
484
+ fmt_screenshare_controlbar_button_stop: 'Stop sharing',
485
+ fmt_screenshare_controlbar_button_microphone: 'Microphone',
486
+ fmt_screenshare_controlbar_button_camera: 'Camera',
487
+ fmt_screenshare_controlbar_button_security: 'Security',
488
+ fmt_screenshare_controlbar_button_participant: 'Attendees',
489
+ fmt_screenshare_controlbar_button_newScreenshare: 'New sharing',
490
+ fmt_screenshare_controlbar_button_more: 'More',
491
+ fmt_screenshare_controlbar_button_more_chat: 'Chat',
492
+ fmt_screenshare_controlbar_button_more_cloudRecord: 'Record',
493
+ fmt_screenshare_controlbar_button_more_live: 'Live',
494
+ fmt_screenshare_controlbar_button_more_setting: 'Setting',
495
+ fmt_screenshare_controlbar_status_sharing: 'You are sharing a screen',
496
+ fmt_screenshare_controlbar_security_list_lock: 'Lock the meeting',
497
+ fmt_screenshare_controlbar_security_list_participant_screenshare: 'Share Screen',
498
+ fmt_screenshare_controlbar_security_list_participant_chat: 'chat',
499
+ fmt_screenshare_controlbar_security_list_participant_unmute: 'Self unmute',
500
+ fmt_screenshare_controlbar_security_list_participant_startVideo: 'Self turn on video',
501
+ fmt_screenshare_controlbar_security_list_participant_changeName: 'Rename',
502
+ fmt_screenshare_controlbar_security_list_participantManagement: 'Allow attendees',
503
+ fmt_screenshare_button_chosecontent: 'Select shared content',
504
+ fmt_screenshare_tips_newsharing: 'Initiate a new sharing',
505
+ fmt_screenshare_button_sharewhiteboard: 'Share Whiteboard',
506
+ fmt_screenshare_options_alreadyopend: 'Whiteboard (Already ON)',
507
+ fmt_screenshare_options_allow: 'Allow attendees',
508
+ fmt_screenshare_options_editable: 'Annotate and edit whiteboards',
509
+ fmt_screenshare_button_disableshare: 'Disable sharing of {reason1}',
510
+ fmt_screenshare_label_application: 'Application',
511
+ fmt_screenshare_tips_imsharing: 'I am in sharing the whiteboard',
512
+ fmt_screenshare_tips_smonesharing: 'Someone is sharing the whiteboard',
513
+ fmt_screenshare_tips_alreadyopened: 'Someone has already opened the whiteboard',
514
+ fmt_screenshare_button_stopshare: 'Stop',
515
+ fmt_screenshare_button_localrecordingmiss: 'Local recording',
516
+ fmt_screenshare_tips_hostprohibits: 'The host prohibits screen sharing. You can contact the meeting administrator to enable it',
517
+ fmt_screenshare_tips_enablecollection: 'Screen sharing is being collected. Please try again later',
518
+ fmt_screenshare_tips_hostprohibitssharing: 'Host prohibits screen sharing',
519
+ fmt_screenshare_tips_faild_reselect: 'Screen sharing failed, please reselect the window',
520
+ fmt_screenshare_tips_faild_screenselect: 'Screen sharing failed, please select the screen to share again',
521
+ fmt_screenshare_tips_faild_restrict: 'Screen sharing is restricted',
522
+ fmt_screenshare_tips_faild_alreadysharing: 'Someone is already sharing the screen, you cannot operate it temporarily.',
523
+ fmt_screenshare_options_allowshare: 'Allow meetings to share screens',
524
+ fmt_screenshare_tips_notavailable: 'Please go to 「System Preferences」 -「Security & Privacy」 - 「Privacy」 - 「Screen Recording」 and check Meeting (if already checked, uncheck and then check again). After modifying the screen recording permissions, you need to restart Meeting for the changes to take effect.',
525
+ fmt_screenshare_whiteboard_button_exitdrawing: 'Exit drawing',
526
+ fmt_screenshare_options_enableedit: 'Enable whiteboard editing',
527
+ fmt_actionbar_screenshare_option_selectcontent: 'Select shared content',
528
+ fmt_actionbar_screenshare_labels_others: 'Others',
529
+ fmt_modules_labels_sharing: 'You are sharing',
530
+ fmt_share_tips_othsersharing: 'Other attendees are sharing',
531
+ fmt_share_tips_stopothersharing: "Initiate sharing now and {reason1}'s sharing will be stopped. Continue?",
532
+ fmt_share_buttons_contiueshare: 'Continue',
533
+ fmt_share_tips_otherssharing: 'There are other participants who are sharing',
534
+ fmt_share_tips_sharingdisabled: 'Your sharing is stopped',
535
+ fmt_share_tips_sharingprohibit_byhost: 'The host {reason1} has stopped your sharing',
536
+ fmt_share_tips_sharingprohibit_bycohost: 'Co-host {reason1} has stopped your sharing',
537
+ fmt_share_tips_sharingprohibit_gotit: 'Got it ',
538
+ fmt_share_tips_othersharingboard: 'Other attendees are sharing the whiteboard',
539
+ fmt_share_tips_boardonly: 'Only one person can initiate a cloud whiteboard for a meeting',
540
+ fmt_share_tips_sharingscreen: 'You are sharing the screen',
541
+ fmt_share_tips_willstopsharingscreen: 'Initiating whiteboard sharing now will stop your screen sharing. Continue?',
542
+ fmt_share_label_saysomething: 'Say something',
543
+ fmt_share_label_canttalk: 'Currently muted',
544
+ fmt_screenshare_screen_and_board: 'Share screen and whiteboard',
545
+ fmt_screenshare_editable_board: 'Editable whiteboard',
546
+ fmt_screenshare: 'Share',
547
+ fmt_screenshare_button_newshare: 'New share',
548
+ fmt_screenshare_button_stopsharing: 'Stop share',
549
+ fmt_screenshare_status_sharing: 'Screen sharing',
550
+ fmt_screenshare_button_replace: 'Replace',
551
+ fmt_screenshare_button_start: 'Start',
552
+ fmt_screenshare_button_stop: 'Stop',
553
+ fmt_screenshare_stop_share_board: 'Stop sharing whiteboard',
554
+ fmt_screenshare_stop_share_screen: 'Stop sharing screen',
555
+ fmt_screenshare_no_permission_open_board: 'No permission to open whiteboard',
556
+ fmt_screenshare_no_permission_close_board: 'No permission to close whiteboard',
557
+ fmt_screenshare_clash_board_remind_title: 'Other attendees are sharing the whiteboard',
558
+ fmt_screenshare_clash_board_remind_content: 'The cloud whiteboard in the meeting only supports one person to initiate.',
559
+ fmt_screenshare_clash_screen_share_remind_title: 'Other attendees are sharing',
560
+ fmt_screenshare_clash_screen_share_remind_content: 'Initiating the sharing now will stop {reason1}‘s screen sharing. Do you want to continue?',
561
+ fmt_screenshare_clash_screen_share_remind_content_stop_board: 'Initiating the sharing now will stop {reason1}‘s whiteboard sharing. Do you want to continue?',
562
+ fmt_screenshare_opposite_side: 'other party',
563
+ fmt_screenshare_continue_share: 'Continue sharing',
564
+ fmt_screenshare_cohost_can_not_share_remind: 'Sharing failed. Only the host can initiate sharing.',
565
+ fmt_screenshare_only_host_sharing: 'Only the host can initiate sharing.',
566
+ fmt_screenshare_pop_more: 'Multiple Choice',
567
+ fmt_screenshare_room_new_screen_share: '{reason1} is sharing the screen',
568
+ fmt_screenshare_room_speaker_spotlight_username: 'Speaking: {reason1}',
569
+ fmt_screenshare_stop_other_screen_share: 'Stop screen sharing with others',
570
+ fmt_screenshare_not_open_yet: 'Not yet open',
571
+ fmt_screenshare_audio_des: 'Shared device audio:',
572
+ fmt_screenshare_audio_on: 'Open',
573
+ fmt_screenshare_audio_off: 'Close',
574
+ fmt_screenshare_stop_screen_share: 'Stop screen sharing',
575
+ fmt_screenshare_disablelayout_while_share: 'Large and small layout will be disabled while sharing screen and whiteboard',
576
+ fmt_screenshare_start: 'Start sharing',
577
+ fmt_screenshare_stop_your_share: 'Your sharing has been stopped',
578
+ fmt_screenshare_tips_share_audio_micon: 'The microphone need to be turned on to play shared audio',
579
+ fmt_screenshare_tips_share_audio_turnonmic: 'Do you want to turn on your microphone to play shared audio?',
580
+ fmt_screenshare_button_giveup_shareaudio: 'Give up sharing audio',
581
+ fmt_screenshare_button_confirm_shareaudio: 'Turn on Mic',
582
+ fmt_screenshare_tips_sharing_audio_keep_on: 'When sharing audio, you need to keep the microphone on to ensure that the audio plays normally. Turn on the microphone?',
583
+ fmt_screenshare_tips_sharing_audio_cancel: 'Stop audio sharing ',
584
+ fmt_screenshare_tips_sharing_audio_confirm: 'Keep Mic on',
585
+ fmt_screenshare_tips_sharing_disabled_tocontact: '{reason1} Disabled sharing, you can contact the meeting administrator to enable it',
586
+ fmt_screenshare_toast_network_error_unable_start_screen_share: 'Network error,unable to start screen sharing.Please check network.',
587
+ fmt_screenshare_controlbar_button_annotations: 'Annotations',
588
+ fmt_screenshare_controlbar_annotations_options_attendees_annotate: 'Allow other attendees to annotate',
589
+ fmt_screenshare_controlbar_annotations_options_show_name: 'Show annoatator name',
590
+ fmt_screenshare_toast_host_enabled_annotations: 'The host or sharer has enabled interactive annotations',
591
+ fmt_screenshare_toast_host_disabled_annotations: 'The host or sharer has disabled interactive annotations',
592
+ fmt_screenshare_controlbar_options_clear_all: 'Clear all annotations',
593
+ fmt_screenshare_toast_annotations_visible_participants: 'Your annotations are visible to all participants',
594
+ fmt_screenshare_controlbar_button_settings: 'settings',
595
+ fmt_screenshare_controlbar_settings_label_share_audio_settings: 'Share Audio Settings',
596
+ fmt_screenshare_controlbar_settings_options_enable_share_audio: 'Enable Shared Audio',
597
+ fmt_screenshare_controlbar_settings_label_annotation_settings: 'Interactive Annotation Settings',
598
+ fmt_screenshare_controlbar_settings_label_annotation_controls: 'Interactive Annotation Controls',
599
+ fmt_screenshare_toast_annotation_controls_screen_sharing_disabled: 'Screen sharing has been turned off',
600
+ fmt_screenshare_tips_host_not_enabled_annotations: 'The host or presenter has not enabled the interactive annotation',
601
+ fmt_screenshare_tips_share_pc_sound: 'PC sound will be shared when you share your screen.',
602
+ fmt_screenshare_tips_video_smoothness: 'Prioritize video smoothness by reducing CPU usage and optimizing screen sharing frame rate.',
603
+ fmt_screenshare_button_share_icloud: 'Share files with iCloud file',
604
+ fmt_screenshare_button_stop_share_icloud: 'Stop iCloud file sharing',
605
+ fmt_screenshare_toast_file_type_not_support: 'Sharing for this file type is not supported.',
606
+ fmt_screenshare_icloud_button_audio_on: 'Audio: On​',
607
+ fmt_screenshare_icloud_button_audio_off: 'Audio: Off',
608
+ fmt_screenshare_icloud_button_stop_sharing: 'Stop sharing',
609
+ fmt_screenshare_toolbar_label_reconnecting: 'Network disconnected, reconnecting...',
610
+ fmt_screenshare_toast_icloud_file_audio_active: 'Device audio sharing is active. All audio from this device is being shared.',
611
+ fmt_screenshare_tips_unenabled: 'The conference administrator has not enabled the whiteboard editing function',
612
+ fmt_screenshare_whiteboard_options_changetheme: 'Change whiteboard theme',
613
+ fmt_screenshare_tips_alreadyoriginalsize: "It is already 'original size'",
614
+ fmt_screenshare_lables_originalsize: 'Original size',
615
+ fmt_screenshare_whiteboard_tips_alreadyadaptionsize: "It is already the 'adaptation window'",
616
+ fmt_screenshare_lables_adaptionlsize: 'Adapt to the window',
617
+ fmt_screenshare_whiteboard_tips_alreadymaximumsize: 'The maximum size has been reached',
618
+ fmt_screenshare_whiteboard_button_enlarge: 'Enlarge',
619
+ fmt_screenshare_whiteboard_tips_alreadyminumumsize: 'The minimum size has been reached',
620
+ fmt_screenshare_whiteboard_button_narrow: 'Narrow',
621
+ fmt_screenshare_whiteboard_tips_someonesharing: '{reason1} is sharing a whiteboard',
622
+ fmt_screenshare_whiteboard_tips_reconnecting: 'We are reconnecting the whiteboard for you, please wait...',
623
+ fmt_screenshare_whiteboard_tips_reconnectinghold: 'We are reconnecting the whiteboard for you, please wait...',
624
+ fmt_screenshare_whiteboard_tips_couldreopen: "If you haven't connected to the whiteboard for a long time, you can temporarily close the whiteboard and try again later.",
625
+ fmt_screenshare_whiteboard_tips_reopening: 'Opening whiteboard, please wait...',
626
+ fmt_screenshare_whiteboard_tips_continuewaiting: 'Continue waiting....',
627
+ fmt_screenshare_whiteboard_button_dontwait: 'Close the whiteboard without waiting',
628
+ fmt_screenshare_whiteboard_tips_defaultwhiteboard: 'Whiteboard (default)',
629
+ fmt_screenshare_whiteboard_tips_blackboard: 'Blackboard',
630
+ fmt_screenshare_whiteboard_lables_wallpoaster: 'Chalk Wall Poster',
631
+ fmt_screenshare_whiteboard_tips_righclick: 'Right click to set as permanent color',
632
+ fmt_screenshare_whiteboard_button_setcolor: 'Set as permanent color',
633
+ fmt_screenshare_whiteboard_button_eraser: 'Eraser',
634
+ fmt_screenshare_whiteboard_button_empty: 'Clear',
635
+ fmt_screenshare_whiteboard_button_additionaltools: 'Additional tools',
636
+ fmt_screenshare_whiteboard_button_withdrwa: 'Undo',
637
+ fmt_screenshare_whiteboard_button_forward: 'Redo',
638
+ fmt_screenshare_whiteboard_button_paintbrush: 'Pen',
639
+ fmt_screenshare_whiteboard_button_cutting: 'Cutting',
640
+ fmt_screenshare_whiteboard_button_screenshot: 'Screenshot',
641
+ fmt_screenshare_whiteboard_options_hideshot: 'Hidden room screenshot',
642
+ fmt_screenshare_whiteboard_button_shape: 'Graphic',
643
+ fmt_screenshare_whiteboard_button_laserpen: 'Laser',
644
+ fmt_screenshare_whiteboard_button_boxselection: 'Select',
645
+ fmt_screenshare_whiteboard_button_text: 'Text',
646
+ fmt_screenshare_whiteboard_button_dragdrop: 'Drag and drop',
647
+ fmt_screenshare_whiteboard_button_savescript: 'Save',
648
+ fmt_screenshare_whiteboard_button_spread: 'Spread',
649
+ fmt_screenshare_whiteboard_tips_choose_pen_first: 'Start by selecting a shape or brush',
650
+ fmt_screenshare_whiteboard_tips_downloading: 'The blackboard is currently being downloaded',
651
+ fmt_screenshare_whiteboard_tips_savedsuccessfully: 'Board book saved successfully',
652
+ fmt_screenshare_whiteboard_tips_failed: 'Board saving failed',
653
+ fmt_screenshare_whiteboard_tips_stoppedboard: 'Your sharing has been stopped',
654
+ fmt_screenshare_whiteboard_lables_newshare: 'Initiate a new sharing',
655
+ fmt_screenshare_whiteboard_button_gotit: 'Got it',
656
+ fmt_screenshare_whiteboard_tips_stopped: 'Sharing has stopped',
657
+ fmt_screenshare_whiteboard_tips_cannotjoin: 'Cannot join room',
658
+ fmt_screenshare_whiteboard_tips_alreadyopend: 'Board resource already opened',
659
+ fmt_screenshare_whiteboard_tips_stop_continue: 'Initiating screen sharing now will stop your whiteboard. Do you want to continue?',
660
+ fmt_whiteboard_labels_colour: 'Colour',
661
+ fmt_share_options_smallpen: 'Small brush strokes',
662
+ fmt_share_options_midpen: 'Medium brush stroke',
663
+ fmt_share_options_bigpen: 'Large brush strokes',
664
+ fmt_share_options_yellow: 'Yellow',
665
+ fmt_share_options_blue: 'Blue',
666
+ fmt_share_options_purple: 'Purple',
667
+ fmt_share_options_green: 'Green',
668
+ fmt_share_options_whiteboard: 'Whiteboard',
669
+ fmt_share_options_red: 'Red',
670
+ fmt_whiteboard_save_success: 'Image storage succeed',
671
+ fmt_whiteboard_save_failure: 'Image download failed',
672
+ fmt_whiteboard_tips_two_finger_move: 'Move whiteboard by two fingers',
673
+ fmt_whiteboard_tips_expanded: 'Vertical screen maximization,you can move canvas horizontally with two fingers',
674
+ fmt_whiteboard_tips_collapsed: 'Adapted to window size',
675
+ fmt_whiteboard_tips_selector: 'Content can be selected for editing',
676
+ fmt_whiteboard_tips_text: 'Please enter text',
677
+ fmt_whiteboard_tips_rectangle: 'Square',
678
+ fmt_whiteboard_tips_triangle: 'Triangle',
679
+ fmt_whiteboard_tips_circle: 'Rotundity',
680
+ fmt_whiteboard_label_pentagon: 'pentagon',
681
+ fmt_whiteboard_label_prismatic: 'Prismatic',
682
+ fmt_whiteboard_tips_straight: 'Straight line',
683
+ fmt_whiteboard_tips_arrow: 'Arrow',
684
+ fmt_whiteboard_tips_change_color: 'Change color and stroke size',
685
+ fmt_whiteboard_tips_change_bg: 'Change whiteboard background color',
686
+ fmt_whiteboard_tips_change_bg_white: 'White board elected',
687
+ fmt_whiteboard_tips_change_bg_black: 'Black board elected',
688
+ fmt_whiteboard_tips_change_bg_green: 'Chalk green elected',
689
+ fmt_whiteboard_tips_stop_share: 'Stop whiteboard',
690
+ fmt_whiteboard_tips_start_share: 'Open the whiteboard',
691
+ fmt_whiteboard_tips_share_failed: 'Whiteboard sharing failed',
692
+ fmt_whiteboard_tips_stop_share_failed: 'Stop whiteboard sharing failed',
693
+ fmt_whiteboard_tips_start_share_failed: 'Failed to enable whiteboard sharing',
694
+ fmt_whiteboard_tips_download_permission_denied: 'Download whiteboard writing requires storage permission',
695
+ fmt_whiteboard_dialog_share_stopped_message_host: 'The host ({reason1}) has stopped your sharing',
696
+ fmt_whiteboard_dialog_share_stopped_message_cohost: 'The co-host ({reason1}) has stopped your sharing',
697
+ fmt_whiteboard_dialog_reconnecting_whiteboard: 'We are reconnecting the whiteboard, please wait a moment... If the wait is too long, you can try closing and reopening the whiteboard',
698
+ fmt_whiteboard_button_wait: 'Wait',
699
+ fmt_whiteboard_button_close: 'Close',
700
+ fmt_whiteboard_tips_wb_connect: 'Whiteboard connecting...',
701
+ fmt_whiteboard_tips_label_connect: 'Labeling connecting...',
702
+ fmt_whiteboard_tips_share_nick: "{reason1}'s screen sharing",
703
+ fmt_screenshare_whiteboard_option_disablesharing: 'Disable screen sharing or whiteboarding',
704
+ fmt_share_options_blackboard: 'Blackboard',
705
+ fmt_share_options_chalkboard: 'Chalkboard',
706
+ fmt_share_label_shareboard: "{reason1}'s ’ whiteboard sharing",
707
+ fmt_information_label_clicktocopy: 'Click to copy the meeting ID number',
708
+ fmt_information_tips_beencopied: 'The meeting number has been copied to the clipboard',
709
+ fmt_information_tips_numbercopyfailed: 'Meeting number copying failed',
710
+ fmt_information_options_sharedetail: 'Share meeting detailed information or url ',
711
+ fmt_meetingInfo_label: 'Meeting Details',
712
+ fmt_meetingInfo_window_title: 'Meeting link',
713
+ fmt_meetingInfo_window_info_meetingID: 'Meeting Number',
714
+ fmt_meetingInfo_window_info_meetingID_copy: 'Copy',
715
+ fmt_sharing_button_download: 'Download Flexible Meeting',
716
+ fmt_invitation_tips_invitationfailed: 'Invitation link copyied failed',
717
+ fmt_invitation_tips_invitation: 'The invitation link has been copied to the clipboard',
718
+ fmt_meetinginfo_tips_lockedroom: 'Meeting locked in',
719
+ fmt_meetinginfo_tips_nobycanjoin: 'No attendees are allowed to enter the meeting',
720
+ fmt_meetinginfo_label_code: 'Password',
721
+ fmt_meetinginfo_details_code_none: 'Not set',
722
+ fmt_meetinginfo_my_name_label: 'My name',
723
+ fmt_meetinginfo_room_topic: 'Conference theme',
724
+ fmt_meetinginfo_duration_reservation: 'Duration/Reservation',
725
+ fmt_meetinginfo_dialog_title_meeting_info: 'Meeting information',
726
+ fmt_meetinginfo_duration_1: '%1$d minute',
727
+ fmt_meetinginfo_duration_2: '%1$d hour and %2$d minutes',
728
+ fmt_meetinginfo_duration_2_no_min: '%1$d hour',
729
+ //标签
730
+ fmt_information_label_lockmeeting: 'Lock Meeting',
731
+ //提示
732
+ fmt_information_tips_lockedbyhost: 'The {reason1} has locked the meeting and no one else is allowed to join',
733
+ //提示
734
+ fmt_information_tips_copysuccess: 'Copy successful (?)',
735
+ //提示
736
+ fmt_information_tips_copyfailed: 'Copy failed (?)',
737
+ //标签
738
+ fmt_information_label_sharemeetingnumber: 'Share meeting number or invitation link',
739
+ //提示
740
+ fmt_additional_tips_invitationfailed: 'Invitation link copying failed',
741
+ //提示
742
+ fmt_additional_tips_invitation: 'The invitation link has been copied to the clipboard',
743
+ fmt_sharing_button_copydetailed: 'Copy detailed',
744
+ fmt_sharing_label_invitationlink: 'link',
745
+ fmt_sharing_tips_copyto_clipboard: 'invite information copied to clipboard',
746
+ fmt_sharing_tips_copyfull_failed: 'invite information copied failed',
747
+ fmt_sharing_label_invitationdetailed: '{reason1} invites you to join the meeting, the meeting topic: {reason2}, the meeting time: {reason3}, the meeting link: {reason4}',
748
+ //通知
749
+ fmt_information_tips_meeting_inprogress: 'Meeting in progress',
750
+ //通知
751
+ fmt_information_tips_click_return_meeting: 'Click to return to the meeting interface',
752
+ fmt_information_label_s_fast_meeting: "'s Fast Meeting",
753
+ fmt_networkstatus_window_title: 'Network connections',
754
+ fmt_networkstatus_window_rate_good: 'Good',
755
+ fmt_networkstatus_window_rate_medium: 'Middle',
756
+ fmt_networkstatus_window_rate_bad: 'Poor',
757
+ fmt_networkstatus_window_latency: 'Network latency',
758
+ fmt_networkstatus_window_loss: 'Packet loss rate',
759
+ fmt_networkstatus_window_moreData: 'More indicators',
760
+ fmt_modules_labels_qualitystatistics: 'Quality statistics',
761
+ fmt_meetinginfo_label_time: 'Attendance duration/Reservation duration',
762
+ fmt_meetinginfo_label_myname: 'My name',
763
+ fmt_meetinginfo_label_lockedmeeting: 'Meeting information (locked)',
764
+ fmt_networkstatus_up_link: 'Network bandwidth uplink',
765
+ fmt_networkstatus_down_link: 'Network bandwidth downlink',
766
+ fmt_networkstatus_down_loss: 'Downstream packet loss rate',
767
+ fmt_networkstatus_up_loss: 'Upstream packet loss rate',
768
+ fmt_security_options_restract: 'Retract the host',
769
+ fmt_security_options_removemultiple: 'One click removal of multiple attendees',
770
+ fmt_security_options_openvideo: 'Start video',
771
+ fmt_security_options_stopvideo: 'Stop video',
772
+ fmt_security_options_openaudio: 'Turn on audio',
773
+ fmt_security_options_stopaudio: 'Turn off audio',
774
+ fmt_security_options_activatewaitingroom: 'Activate waiting room',
775
+ fmt_security_options_playnotification: 'Sound prompt when members join or leave',
776
+ fmt_security_options_silence: 'Mute when members join',
777
+ fmt_security_buttons_allhandsdown: 'All hands down',
778
+ fmt_security_options_muteall: 'Mute all current attendees in the meeting',
779
+ fmt_security_buttons_muteall: 'Mute all',
780
+ fmt_security_buttons_cancel: 'Cancel',
781
+ fmt_security_waiting_room: 'Waiting Room',
782
+ fmt_security_start_video: 'Turn on video',
783
+ fmt_security_pause_all: 'Suspend participant activities',
784
+ fmt_security_remove_all: 'Remove attendees',
785
+ fmt_security_tips_lock_meeting_on: 'You have locked the meeting, no one else can join',
786
+ fmt_security_tips_lock_meeting_off: 'You have unlocked the meeting, new participants can join',
787
+ fmt_security_tips_waiting_room_on: 'You have activated the waiting room',
788
+ fmt_security_tips_waiting_room_off: 'You have closed the waiting room',
789
+ fmt_security_tips_join_mute_on: 'You have enabled full mute while join ',
790
+ fmt_security_tips_join_mute_off: 'You have disabled mute while join ',
791
+ fmt_security_tips_share_screen_on: 'You have disabled screen sharing for attendees',
792
+ fmt_security_tips_share_screen_off: 'You have enabled screen sharing for attendees',
793
+ fmt_security_tips_start_audio_on: 'You have allowed self unmuting',
794
+ fmt_security_tips_start_audio_off: 'You have prohibited self unmuting',
795
+ fmt_security_tips_start_video_on: 'You have allowed open video',
796
+ fmt_security_tips_start_video_off: 'You have prohibited open video',
797
+ fmt_security_tips_host_start_video_on: '{reason1} Open video allowed',
798
+ fmt_security_tips_host_start_video_off: '{reason1} Open video forbid ',
799
+ fmt_security_chat_with_hosts: 'Host and co-host',
800
+ fmt_security_tips_allow_write_board: 'You have allowed editing the whiteboard',
801
+ fmt_security_tips_disallow_write_board: 'You have prohibited editing the whiteboard',
802
+ fmt_failure_popup_label_startup_fail: 'Startup Failure',
803
+ fmt_failure_popup_label_startup_check: 'Please check startup parameters and network settings as a priority',
804
+ fmt_failure_popup_button_i_know: 'I know',
805
+ fmt_failure_popup_label_crash: 'Exception error',
806
+ fmt_failure_popup_label_crash_tips: 'The app is error, please close the app and try again.',
807
+ fmt_failure_popup_button_close_app: 'Close the app',
808
+ fmt_failure_popup_button_refresh: 'Refresh',
809
+ fmt_qualitystatistics_label_video: 'Video',
810
+ fmt_qualitystatistics_label_audio: 'Audio',
811
+ fmt_qualitystatistics_label_audio_bit: 'Bitrate',
812
+ fmt_qualitystatistics_label_audio_mic: 'Mic',
813
+ fmt_qualitystatistics_label_audio_speaker: 'Speaker',
814
+ //****************** 设置 ******************
815
+ fmt_settings_option_setting: 'Setting',
816
+ fmt_settings_option_general: 'General',
817
+ fmt_settings_option_about_us: 'About US',
818
+ fmt_settings_option_about_videoset: 'Video Settings',
819
+ fmt_settings_option_debug: 'Debug',
820
+ fmt_settings_option_region_na: 'NA',
821
+ fmt_settings_option_region_ap: 'AP',
822
+ fmt_settings_option_region_cn: 'CN',
823
+ fmt_settings_option_region_eu: 'EU',
824
+ fmt_settings_option_enviroment_Dev: 'Development',
825
+ fmt_settings_option_enviroment_Test: 'Test',
826
+ fmt_settings_option_enviroment_Pre: 'Pre Production',
827
+ fmt_settings_option_enviroment_Pro: 'Production',
828
+ fmt_settings_label_region: 'Region',
829
+ fmt_settings_label_about_us_about_us: 'About US',
830
+ fmt_settings_label_aboutus_ver: 'Flexible Meeting Version',
831
+ fmt_settings_label_aboutus_declaration: 'This page is an online conference platform demonstration demo, only for functional demonstration, not an official online product',
832
+ fmt_settings_label_video_resolution: 'Camera resolution',
833
+ fmt_settings_label_video_bitrate_frame: 'Camera bitrate/frame rate',
834
+ fmt_settings_label_video_resolution_small: 'Camera resolution (small stream)',
835
+ fmt_settings_label_video_bitrate_frame_small: 'Camera bitrate/frame rate (small stream)',
836
+ fmt_settings_label_video_screenshare_resolution: 'Screen sharing resolution',
837
+ fmt_settings_label_video_screenshare_bitrate_frame: 'Screen sharing bitrate/frame rate',
838
+ fmt_settings_link_about_us_user_agreement: 'User Agreement',
839
+ fmt_settings_link_about_us_privacy_policy: 'Privacy Policy',
840
+ fmt_settings_label_aboutus_slogan: 'Flexible Meeting',
841
+ fmt_settings_button_logout: 'Log out',
842
+ fmt_setting_label_setting: 'Settings',
843
+ fmt_setting_option_Voice: 'Audio Setting',
844
+ fmt_setting_option_Video: 'Video Setting',
845
+ fmt_setting_label_Speaker: 'Speaker',
846
+ fmt_setting_label_oututlevel: 'Output level',
847
+ fmt_setting_button_Speaker_pause: 'Pause',
848
+ fmt_setting_label_volume: 'Output Volume',
849
+ fmt_setting_option_volumeadjust: 'Automatically adjust the volume of {reason1}',
850
+ fmt_setting_label_Mic: 'Microphone',
851
+ fmt_setting_button_Mic: 'Detecting microphone',
852
+ fmt_setting_button_Speaker_recording: 'Recording',
853
+ fmt_setting_label_3a: 'Reduce background noise',
854
+ fmt_setting_option_3alow: 'Low',
855
+ fmt_setting_option_3amoderate: 'Middle',
856
+ fmt_setting_option_3ahigh: 'High',
857
+ fmt_setting_label_professional: 'Music and Professional Audio',
858
+ fmt_setting_option_orinalvoise: 'Display the option in the meeting in case of you want to turn the original sound',
859
+ fmt_setting_tips_speaker: 'Click to test the speaker',
860
+ fmt_setting_tips_mic: 'Please speak into your microphone. If you cannot hear your own voice, please replace the microphone',
861
+ fmt_setting_tips_speaker_unwork: 'If you cannot hear the test sound, please replace the speaker',
862
+ fmt_setting_tips_mic_unwork: 'If you cannot hear the test sound, please replace the microphone',
863
+ fmt_setting_label_preview: 'Effect Preview',
864
+ fmt_setting_option_preview_highdefinition: 'high definition',
865
+ fmt_setting_option_basics: 'Basics',
866
+ fmt_setting_option_backgrounds: 'Background',
867
+ fmt_setting_option_beauty: 'Beauty filter',
868
+ fmt_setting_option_high_definition: 'High definition video',
869
+ fmt_setting_option_joinmeeting: 'Close video when joining the meeting',
870
+ fmt_setting_option_joinmeeting_preview: 'Moderately display video window when joining a video conference',
871
+ fmt_setting_option_hidenonvideo: 'Hide participants without video',
872
+ fmt_setting_label_maxattendees: 'The maximum number of attendees displayed on single screen view',
873
+ fmt_setting_label_maxattendees_16: '16 attendees',
874
+ fmt_setting_label_maxattendees_25: '25 attendees',
875
+ fmt_modules_labels_Videobackground: 'Video background',
876
+ fmt_modules_tips_Imagebackground: 'Image background',
877
+ fmt_internalsetting_label_generalsetting: 'General settings',
878
+ fmt_internalsetting_label_inputlevel: 'Input level',
879
+ fmt_internalsetting_label_inputvolume: 'Input volume',
880
+ fmt_internalsetting_label_automatic: 'Automatic',
881
+ fmt_internalsetting_tips_backgroundsound: '(for mild backgroud noise) ',
882
+ fmt_internalsetting_tips_fanpan: '(for moderate noise,e.g. computer fan or pen clicking)',
883
+ fmt_internalsetting_tips_dogbarking: '(for noisy environments)',
884
+ fmt_internalsetting_label_senior: 'Senior',
885
+ fmt_internalsetting_button_detectspeaker: 'Detecting speakers',
886
+ fmt_internalsetting_status_recording: 'Recording in progress',
887
+ fmt_internalsetting_status_nodevice: 'No device',
888
+ fmt_internalsetting_labels_enableoptions: 'Enable these options when turning on the original sound',
889
+ fmt_internalsetting_options_highqualitymusic: 'High fidelity music mode',
890
+ fmt_internalsetting_options_echocancell: 'Echo cancellation',
891
+ fmt_internalsetting_options_stereo: 'Stereo',
892
+ fmt_internalsetting_labels_audiostereoencode: 'This option allows stereo encoding of audio. A microphone or audio interface with stereo effect is required. This option will increase CPU usage and occupy more network bandwidth.',
893
+ fmt_internalsetting_tips_preventechoes: 'Prevent capturing or generating echoes to improve sound quality. If you are not using headphones or playing an instrument, it is recommended to enable this option.',
894
+ fmt_internalsetting_tips_optiomizeaudio: 'Optimize audio to provide the highest quality sound effects. This feature will increase CPU usage and occupy more network bandwidth. For optimal results, it is strongly recommended to connect to Ethernet instead of WiFi.',
895
+ fmt_internalsetting_tips_speakerpriority: 'When voice stimulation is enabled, the participants who are speaking are displayed first.',
896
+ fmt_internalsetting_labels_voicestimulation: 'Voice stimulation',
897
+ fmt_internalsetting_options_hidenonvideo: 'Hide participants without video',
898
+ fmt_internalsetting_options_adjustlowlight: 'Adjust to use low light compensation',
899
+ fmt_internalsetting_options_closevideojoin: 'Close my video when joining the meeting',
900
+ fmt_internalsetting_options_alwaysbox: 'Always display video preview window when joining a video conference',
901
+ fmt_internalsetting_labels_advancedsetting: 'Advanced setting',
902
+ fmt_internalsetting_options_videonoisereduction: 'Optimize video quality through noise reduction',
903
+ fmt_internalsetting_options_hardwareacceleration: 'Use hardware acceleration for video reception',
904
+ fmt_internalsetting_tips_nocamerajoin: 'Not selected to enable camera membership, currently only the video special effects preview screen',
905
+ fmt_internalsetting_options_mirromyvideo: 'Mirror my video',
906
+ fmt_internalsetting_tips_optimizevideo: 'After selecting, software based noise cancellation will optimize video quality',
907
+ fmt_internalsetting_tips_reducevideo: 'After selecting, hardware codecs will reduce the CPU consumption of video codecs',
908
+ fmt_internalsetting_labels_currency: 'Currency',
909
+ fmt_internalsetting_labels_audiovisual: 'audiovisual',
910
+ fmt_internalsetting_labels_application: 'This application',
911
+ fmt_internalsetting_labels_other: 'Other',
912
+ fmt_internalsetting_labels_bandwidth: 'Bandwidth',
913
+ fmt_internalsetting_labels_Network: 'Network',
914
+ fmt_internalsetting_labels_Networktype: 'Network type',
915
+ fmt_internalsetting_labels_Maximumresolution: 'Maximum resolution',
916
+ fmt_internalsetting_labels_Framerate: 'Frame rate',
917
+ fmt_internalsetting_labels_Bitrate: 'Bit rate',
918
+ fmt_internalsetting_labels_resolvingpower: 'Resolving power',
919
+ fmt_internalsetting_labels_bitrate2: 'Bitrate',
920
+ fmt_internalsetting_labels_mic: 'Mic',
921
+ fmt_internalsetting_labels_speaker: 'Speaker',
922
+ fmt_internalsetting_labels_Memory: 'Memory',
923
+ fmt_settings_button_unlockroom: 'Unlock',
924
+ fmt_internalsetting_beauty_background: 'Background and Beauty',
925
+ fmt_internalsetting_sites: 'Subsities',
926
+ fmt_internalsetting_mini_meeting: 'Minimize meeting',
927
+ fmt_internalsetting_raise_hand: 'Raise hand',
928
+ fmt_internalsetting_disconnect_audio: 'Disconnect audio',
929
+ fmt_internalsetting_select_audio: 'Select audio',
930
+ fmt_internalsetting_other_join: 'Join Settings',
931
+ fmt_internalsetting_other_personal: 'Personal settings (only valid for personal view)',
932
+ fmt_internalsetting_other_join_mute: 'Mute when members join',
933
+ fmt_internalsetting_other_join_sound: 'Sound prompt for join and leave',
934
+ fmt_internalsetting_other_join_name: 'Display name when attendees join',
935
+ fmt_internalsetting_other_hide_no_video_toast: 'Hidden user window for unopened videos on this end',
936
+ fmt_internalsetting_other_hide_no_video_pin_cancelled: "You have enabled the 'hide non video window function', and the fixed window has been removed.",
937
+ fmt_internalsetting_other_hide_my_window_pin_cancelled: "You have enabled the 'Hide My Videos' feature, and the fixed window has been removed.",
938
+ fmt_internalsetting_other_hide_me: 'Hide my videos',
939
+ fmt_internalsetting_other_hide_me_toast: 'After other members join or turn on video streaming, your video window will be hidden on this device',
940
+ fmt_internalsetting_other_spot_light: 'Voice stimulation',
941
+ fmt_internalsetting_other_spot_light_desc: 'When voice stimulation is enabled, the participants who are speaking are displayed first.',
942
+ fmt_internalsetting_room_window_top: 'Top and bottom layout',
943
+ fmt_internalsetting_room_window_big: 'Large and small layout',
944
+ fmt_internalsetting_room_window_left: 'Left and right layout',
945
+ fmt_internalsetting_room_window_tip: 'Disable large and small layout while sharing screens and whiteboards',
946
+ fmt_internalsetting_room_window_switched: 'Switch to {reason1}',
947
+ fmt_internalsetting_labels_Network_type: 'Network type',
948
+ fmt_internalsetting_labels_resolving_power: 'Resolution',
949
+ fmt_internalsetting_options_play_prompt: 'Play a prompt tone upon entry',
950
+ fmt_internalsetting_labels_audio: 'Audio',
951
+ fmt_internalsetting_labels_hide_video_off: 'After checking this option, you will not see the views of participants who have not turned on their cameras during the meeting (others will still be able to see them).',
952
+ fmt_internalsetting_labels_hide_my_video: 'After checking this option, you will not see your own view during the meeting (others will still be able to see your view).',
953
+ fmt_settings_labels_virtual_background: 'Virtual Background',
954
+ fmt_settings_labels_prompt_tone: 'prompt tone',
955
+ fmt_settings_options_video_on: 'Turn on Video',
956
+ fmt_settings_options_audio_on: 'Turn on Audio',
957
+ fmt_settings_general_label_dual_display: 'Enable dual display mode',
958
+ fmt_settings_tips_dual_display: 'Distribute meeting videos and shared content across multiple displays​',
959
+ fmt_premeeting_setting_label_join_with_prompt_sound: 'Play a prompt tone upon entry',
960
+ //****************** 会控设置 ******************
961
+ fmt_meeting_setting_button_meeting_settings: 'Meeting settings',
962
+ fmt_meeting_setting_labels_audio_video_settings: 'Audio and Video Settings (when joining a meeting)',
963
+ fmt_meeting_setting_options_mute_participants: 'Mute participants upon entry',
964
+ fmt_meeting_setting_options_disable_video: 'Disable video for attendees upon entry',
965
+ fmt_meeting_setting_labels_Security: 'Security',
966
+ fmt_meeting_setting_options_enable_waiting_room: 'Enable Waiting Room',
967
+ fmt_meeting_setting_options_jbh: 'Attendees can join before host',
968
+ fmt_meeting_setting_options_show_time: 'Show meeting time',
969
+ fmt_meeting_setting_options_show_duration: 'Show participant duration',
970
+ fmt_meeting_setting_options_show_information: 'Show meeting information',
971
+ fmt_meeting_setting_labels_advanced: 'Advanced',
972
+ fmt_meeting_setting_options_enable_live_streaming: 'Enable Live Streaming',
973
+ fmt_meeting_setting_options_enable_interpretation: 'Enable Interpretation',
974
+ fmt_meeting_setting_options_generate_meeting_minutes: 'Generate AI Meeting Minutes',
975
+ fmt_meeting_setting_toast_enabled_mute: 'You has enabled mute upon entry for all participants​​',
976
+ fmt_meeting_setting_toast_turned_off_video: '​​You has turned off video automatically upon entry',
977
+ fmt_meeting_setting_toast_disabled_mute: 'You has disabled mute upon entry for all participants​​',
978
+ fmt_meeting_setting_toast_turned_on_video: '​​You has turned on video automatically upon entry',
979
+ //****************** 设置提示部分 ******************
980
+ fmt_settings_labels_sidebar: 'Sidebar',
981
+ fmt_settings_labels_fold: 'Fold',
982
+ fmt_settings_labels_theme: 'Theme',
983
+ fmt_settings_tips_sharingprohibited: 'Host Sharing is prohibited.You can contact the meeting administrator to enable it',
984
+ fmt_settings_tips_videoenabled: 'Host has enabled video',
985
+ fmt_settings_tips_disabledvideo: 'Host has disabled video',
986
+ fmt_settings_tips_allowedScreensharing: 'Host has allowed screen sharing',
987
+ fmt_settings_tips_disabledScreensharing: 'Host has disabled screen sharing',
988
+ fmt_settings_tips_allowedchat: 'Host has allowed chat',
989
+ fmt_settings_tips_banedchat: 'Host has prohibited chat',
990
+ fmt_settings_tips_allowedselfunmuting: 'Host has allowed self unmuting',
991
+ fmt_settings_tips_disabledselfunmuting: 'Host has does not allow self unmuting',
992
+ fmt_settings_tips_muteallwhilejoin: 'Host has set mute for all participants when they join the meeting',
993
+ fmt_settings_labels_you: 'You',
994
+ fmt_settings_tips_Blockallchat: "‘Block all chat'",
995
+ fmt_settings_tips_groupchatonly: "'Group chat only'",
996
+ fmt_settings_tips_hostchatonly: "'Only permit chat to host or cohost'",
997
+ fmt_settings_tips_confirmactivate: 'Confirm',
998
+ fmt_settings_tips_passwordcopyfailed: 'Meeting password copying failed',
999
+ fmt_settings_tips_sharing: 'You are screen sharing',
1000
+ fmt_settings_labels_miniutes: '{reason1} minutes',
1001
+ fmt_settings_options_enableoptions: 'Enable these options when turning on the original sound',
1002
+ fmt_settings_options_highquality: 'High quality music mode',
1003
+ fmt_settings_options_echocancel: 'Echo cancellation',
1004
+ fmt_settings_options_stereo: 'stereo',
1005
+ fmt_settings_options_toolbarcollapse: 'Collapse toolbar',
1006
+ fmt_settings_tips_screenlocked: 'The screen is locked. Click on the top left corner of the window to undo the fixation',
1007
+ fmt_settings_tips_screenunlock: 'The screen lock has been released',
1008
+ fmt_settings_options_pausecloudrecording: 'Pause cloud recording',
1009
+ fmt_settings_popup_disable_while_microphone_detected: 'This function is disabled while the microphone is being detected',
1010
+ fmt_settings_popup_disable_while_speaker_detected: 'This function is disabled while the speaker is beiing detected',
1011
+ fmt_settings_popup_label_use_phone_audio: 'Phone',
1012
+ fmt_settings_popup_label_link_audio_to_hear_others: 'In order to hear other users, please join the meeting using cell phone audio',
1013
+ fmt_settings_popup_label_select_audio: 'Select audio',
1014
+ fmt_settings_popup_label_audio_not_connect_click_select: 'Audio not connected, please click to select',
1015
+ //****************** 直播 ******************
1016
+ fmt_live_label_thirdplatform: 'Live streaming to third-party platforms',
1017
+ fmt_live_label_videostreamingurl: 'Video streaming URL',
1018
+ fmt_live_inputtips_videostreamingurl: 'Please enter the video stream URL',
1019
+ fmt_live_label_videostreamingkey: 'Video streaming key',
1020
+ fmt_live_inputtips_videostreamingkey: 'Please enter the video stream key',
1021
+ fmt_live_label_ivepage: 'Live streaming page',
1022
+ fmt_tips_label_Livepage: 'Anyone who obtains the link can watch the live broadcast',
1023
+ fmt_tips_inputlabel_Livepage: 'Please enter the URL of the live streaming webpage',
1024
+ fmt_tips_button_Golive: 'Start Live',
1025
+ fmt_tips_button_Stopolive: 'Stop Live',
1026
+ fmt_live_tips_alreadylive: 'You have already initiated the live streaming service and need to listen before you can start the live streaming again',
1027
+ fmt_live_tips_livestreaming: 'Live Steaming',
1028
+ fmt_live_label_customizedlive: 'Customized live streaming service',
1029
+ fmt_live_label_watchcustomizedlive: 'Watch live streams on custom live streaming services',
1030
+ fmt_live_label_copylink: 'Copy live streaming link',
1031
+ fmt_tips_button_Stopsteaming: 'Stop live',
1032
+ fmt_live_label_push_platform: 'Push the meeting to the specified live platform',
1033
+ //****************** 录制 ******************
1034
+ fmt_record_button_Cloudrecording: 'Record',
1035
+ fmt_record_button_Localrecording: 'Local recording',
1036
+ fmt_record_button_pauserecording: 'Pause',
1037
+ fmt_record_tips_Localrecording_Start: 'Local recording is starting',
1038
+ fmt_record_tips_Cloudrecording_Start: 'Cloud recording system is starting',
1039
+ fmt_record_tips_recording: 'Recording',
1040
+ fmt_record_tips_Cloudrecording: 'Cloud recording',
1041
+ fmt_record_button_Cloudrecording_restore: 'Restart cloud recording',
1042
+ fmt_record_button_Localrecording_restore: 'Restore local recording',
1043
+ fmt_record_button_Cloudrecording_stop: 'Stop cloud recording',
1044
+ fmt_record_button_Localrecording_stop: 'Stop local recording',
1045
+ fmt_record_tips_recordingpaused: 'Recording paused',
1046
+ fmt_record_tips_recordingrestored: 'Recording Recovery',
1047
+ fmt_record_tips_Cloudrecording_inprogress: 'Meeting cloud recording in progress',
1048
+ fmt_record_tips_Localrecording_inprogress: 'The conference is currently being recorded locally',
1049
+ fmt_recording_button_rrecording: 'Record',
1050
+ fmt_actionbar_record_tips_stoprecord: 'Are you sure to stop recording now?',
1051
+ fmt_actionbar_record_option_stoprecord: 'Confirm to stop recording',
1052
+ fmt_modules_labels_localrecord: 'Local recording saved in',
1053
+ fmt_modules_labels_notset: 'Not set',
1054
+ fmt_modules_button_change: 'Change',
1055
+ fmt_modules_button_open: 'Open',
1056
+ fmt_modules_labels_surplus: 'Surplus',
1057
+ fmt_record_scene_meeting_rec: 'REC',
1058
+ fmt_record_tip_share_scaling: 'Two fingers can zoom in and out of the screen to share content',
1059
+ fmt_record_gallery_guide_toast: "Long pressing the grid window can evoke 'more'",
1060
+ fmt_record_share_nick: "{reason1}'s screen sharing",
1061
+ fmt_record_share_board_nick: "{reason1}'s whiteboard sharing",
1062
+ fmt_record_new_sharing_stream_tip: '{reason1} is sharing the screen',
1063
+ fmt_record_record_starting2: 'Starting up',
1064
+ fmt_record_record_pause_for_more: 'Cloud recording system paused',
1065
+ fmt_record_record_start_fail: 'Cloud recording system startup failed',
1066
+ fmt_record_record_resume_fail: 'Cloud recording recovery failed',
1067
+ fmt_record_record_stop_fail: 'Cloud recording system failed to stop',
1068
+ fmt_record_record_pause_fail: 'Cloud recording pause failed',
1069
+ fmt_record_record_stoped: 'Cloud recording has stopped',
1070
+ fmt_record_record_started: 'Cloud recording system has started',
1071
+ fmt_record_record_stop_ask: 'Are you sure to stop recording now?',
1072
+ fmt_record_record_stop_confirm: 'Confirm to stop recording',
1073
+ fmt_record_toast_record_paused: 'Cloud recording has been paused',
1074
+ fmt_record_toast_record_resumed: 'Cloud recording has been resumed',
1075
+ fmt_pstn_label_accessmethod: 'Select audio access method',
1076
+ fmt_pstn_options_PCaudioconnet: 'Connect to PC audio',
1077
+ fmt_pstn_options_phoneaudioconnet: 'Connect to phone audio',
1078
+ fmt_pstn_options_audio_setting: 'Audio setting',
1079
+ fmt_pstn_options_PCaudio: 'PC audio',
1080
+ fmt_pstn_options_phoneaudio: 'Phone audio',
1081
+ fmt_pstn_label_connected: 'Phone audioConnected',
1082
+ fmt_pstn_label_accessmethodPC: 'Connect through PC audio',
1083
+ fmt_pstn_button_devicetest: 'Test speakers and microphones',
1084
+ fmt_pstn_label_micselect: 'Select microphone',
1085
+ fmt_pstn_button_PCaudiostop: 'Stop PC audio access',
1086
+ fmt_pstn_label_alreadyin: 'Have you attended the meeting via phone? Please press #{reason1}#',
1087
+ fmt_pstn_options_rememberphone: 'Remember the number on this device',
1088
+ fmt_pstn_button_callme: 'Call me',
1089
+ fmt_pstn_label_dialinphone: 'Dial in by phone',
1090
+ fmt_pstn_label_countryregion: 'Country/Region',
1091
+ fmt_pstn_label_dial: 'Dial',
1092
+ fmt_pstn_label_meetingid: 'Meeting ID',
1093
+ fmt_pstn_label_participantid: 'Participant ID',
1094
+ fmt_pstn_label_viaphone: 'Connecting voice over phone',
1095
+ fmt_pstn_status_unconnectted: 'Not connected',
1096
+ fmt_pstn_tips_alreadyphone: 'Connected via phone audio, please hang up the phone before switching audio',
1097
+ fmt_pstn_status_calling: 'Calling in progress',
1098
+ fmt_pstn_button_hangupphone: 'Hang up the phone',
1099
+ fmt_pstn_label_merge: 'Merge{reason1} (phone number)',
1100
+ fmt_pstn_button_merge: 'Merge',
1101
+ fmt_pstn_button_cancel: 'Cancel',
1102
+ fmt_pstn_label_phonecall: 'Phone call',
1103
+ fmt_pstn_inputtips_name: 'The names of the attendees will be displayed during the meeting',
1104
+ fmt_pstn_button_phonecall: 'Phone call',
1105
+ fmt_pstn_label_or: 'or',
1106
+ fmt_pstn_label_copylink: 'Copy meeting link',
1107
+ fmt_pstn_status_ringing: 'Ringing the bell',
1108
+ fmt_pstn_status_Answered: 'Answered',
1109
+ fmt_pstn_status_failed: 'Failed',
1110
+ fmt_pstn_status_hungup: 'The other party hung up the phone',
1111
+ fmt_pstn_status_maitain: 'Maintain phone connection',
1112
+ fmt_PSTN_status_connected: 'Connected',
1113
+ fmt_PSTN_label_pcaudio: 'PC audio',
1114
+ fmt_PSTN_status_hangup: 'Hanging up',
1115
+ fmt_PSTN_status_china: 'China',
1116
+ fmt_PSTN_status_usa: 'USA',
1117
+ fmt_PSTN_tips_unempty: 'Cannot be empty',
1118
+ fmt_PSTN_tips_formaterror: 'Format error',
1119
+ fmt_PSTN_status_voiceconnected: 'Connected voice',
1120
+ fmt_PSTN_status_hungup: 'The call has been hung up',
1121
+ fmt_pstn_tips_errorformat: 'Format error',
1122
+ fmt_gateway_tips_nodata: 'You have connected the computer audio',
1123
+ fmt_PSTN_toast_merged: 'Merged with {reason1}',
1124
+ fmt_sip_options_callout: 'Call out',
1125
+ fmt_sip_options_callin: 'Call in',
1126
+ fmt_sip_inputtips_sip_323: 'Please enter your IP address or E.164 number',
1127
+ fmt_sip_options_H323: 'H323',
1128
+ fmt_sip_options_SIP: 'SIP',
1129
+ fmt_sip_button_call: 'call',
1130
+ fmt_sip_button_Hangup: 'Hang up',
1131
+ fmt_sip_label_dialviasip: 'Dialing in the H.323/SIP conference room system',
1132
+ fmt_sip_label_dial: 'Dial',
1133
+ fmt_sip_label_inputid: 'Input meeting ID',
1134
+ fmt_sip_label_password: 'password',
1135
+ fmt_pstn_status_dialling: 'Dialing phone is in progress',
1136
+ fmt_pstn_status_raining: 'Ringing the bell',
1137
+ fmt_SIP323_copywrite_phonenumber: 'Mobile phone number (required)',
1138
+ fmt_SIP323_options_detailedinfor: 'Copy meeting detail',
1139
+ fmt_SIP323_tips_alreadycopied: 'Already copied on the clipboard',
1140
+ fmt_localrecord_labels_record: 'Record',
1141
+ fmt_localrecord_labels_savingto: 'Local Recording Saved in',
1142
+ fmt_localrecord_button_savingto: 'Change',
1143
+ fmt_localrecord_button_open: 'Open',
1144
+ fmt_localrecord_labels_remaining_storage: '{reason1}GB remaining',
1145
+ fmt_localrecord_options_videorecord_whileshare: 'Record the video view during screen sharing ',
1146
+ fmt_localrecord_options_temporaryfiles_saved: 'Save temporary recording files ',
1147
+ fmt_localrecord_options_localrecoding_onlyadmin: 'Only host and co-host can start recording ',
1148
+ fmt_localrecord_tips_origialfiles_save: 'Save the original files to help meeting provider troubleshooting in case of any issues.',
1149
+ fmt_localrecord_tips_change_storage: 'Modify the recording storage address',
1150
+ fmt_localrecord_tips_ensufficient_storage: 'The local disk space is insufficient',
1151
+ 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',
1152
+ fmt_localrecord_button_cancel: 'Cancel',
1153
+ fmt_localrecord_button_confirm: 'Confirm',
1154
+ fmt_localrecord_options_local_recording: 'Local recording',
1155
+ fmt_localrecord_labels_permissions_localrecording: 'Local recording permissions',
1156
+ fmt_localrecord_options_onlyadmin_record: 'Only meeting administrator can record',
1157
+ fmt_localrecord_options_allmember_canrecord: 'All members can record',
1158
+ fmt_localrecord_options_setting_recording: 'Recording settings',
1159
+ fmt_localrecord_options_localrecording_onlyuse: 'Local Recording (Use Only)',
1160
+ fmt_localrecord_popup_enable_local_recording: 'Enable local recording?',
1161
+ 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. ',
1162
+ fmt_localrecord_popup_start_local_recording: 'Start cloud recording?',
1163
+ fmt_localrecord_popup_remind_afterstart: 'After the recording starts,all participants will be reminded to start recording',
1164
+ fmt_localrecord_popup_invite_start_recoding: 'Invite the meeting administrator to enable cloud recording',
1165
+ fmt_localrecord_popup_onlyadmin_recording: 'Only hosts and co-hosts can enable cloud recording, invite them to start cloud recording? ',
1166
+ fmt_localrecord_popup_open_recording: 'Open',
1167
+ fmt_localrecord_popup_cancel_recording: 'Cancel',
1168
+ fmt_localrecord_popup_invite: 'Invite',
1169
+ fmt_localrecord_popup_cancel_invite: 'Cancel',
1170
+ fmt_localrecord_tips_already_start: 'Cloud recording is enabled',
1171
+ fmt_localrecord_tips_geturl: 'Cloud recording is enabled, and you can get the link after the meeting ends',
1172
+ fmt_localrecord_tips_getfiles: 'Cloud recording is enabled, and you can get the link to the co-meeting host after the meeting ends.',
1173
+ fmt_localrecord_tips_someone_record: 'Someone has started recording ',
1174
+ fmt_localrecord_tips_view_recorded: 'Someone has started local recording, your audio, video and shared screen view will be recorded ',
1175
+ fmt_localrecord_options_beauty_record: 'Record&Beautify',
1176
+ fmt_localrecord_popup_stop_recording: 'Stop recording now?',
1177
+ fmt_localrecord_button_stop_recording: 'stop recording',
1178
+ fmt_localrecord_button_cancel_recording: 'Cancel',
1179
+ fmt_localrecord_popup_in_recording: 'This meeting is being recorded',
1180
+ fmt_localrecord_popup_someone_recording: 'Some participants have turned on the local recording, and they can share the local recording files with other participants',
1181
+ fmt_localrecord_button_leavemeeting: 'Leave the meeting',
1182
+ fmt_localrecord_button_got_it: 'Got it',
1183
+ fmt_localrecord_tips_pause_localrecording: 'Pause local recording',
1184
+ fmt_localrecord_tips_stop_localrecording: 'Stop local recording',
1185
+ fmt_waitingroom_setting_option_enable_waitingroom: 'Enable Waiting Room',
1186
+ fmt_waitingroom_setting_option_disable_waitingroom: 'Disable Waiting Room',
1187
+ fmt_waitingroom_setting_popup_close_waitingroom: 'Closing the Waiting Room?',
1188
+ 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?',
1189
+ fmt_waitingroom_setting_button_admit_all: 'Admit all users in Waiting Room',
1190
+ fmt_waitingroom_setting_button_remove_all: 'Remove all users in Waiting Room',
1191
+ fmt_waitingroom_setting_button_cancel: 'Cancel',
1192
+ fmt_waitingroom_sidebar_button_move_to_waitingroom: 'Move out to the waiting room',
1193
+ fmt_waitingroom_sidebar_label_waiting: '{reason1} Waiting',
1194
+ fmt_waitingroom_sidebar_label_search: 'Search',
1195
+ fmt_waitingroom_sidebar_button_invite: 'Invite',
1196
+ fmt_waitingroom_sidebar_button_admit: 'Admit',
1197
+ fmt_waitingroom_sidebar_button_more: 'More',
1198
+ fmt_waitingroom_sidebar_button_private: 'Private Chat',
1199
+ fmt_waitingroom_sidebar_button_remove: 'Remove',
1200
+ fmt_waitingroom_sidebar_button_removeall: 'Remove all',
1201
+ fmt_waitingroom_sidebar_button_admitall: 'Admit all',
1202
+ fmt_waitingroom_sidebar_popup_removeall: 'Remove waiting members',
1203
+ fmt_waitingroom_sidebar_popup_label_remove: 'Are you sure you want to remove {reason1} from the waiting room?',
1204
+ fmt_waitingroom_sidebar_popup_option_notagain: 'Do not allow the user to join the meeting again',
1205
+ fmt_waitingroom_sidebar_popup_button_cancel: 'Cancel',
1206
+ fmt_waitingroom_sidebar_popup_button_remove: 'Remove',
1207
+ fmt_waitingroom_sidebar_popup_popup_admit: 'Admit Waiting Attendee',
1208
+ fmt_waitingroom_sidebar_popup_label_admitall: 'Do you want to admit all attendees in the waiting room to the meeting?',
1209
+ fmt_waitingroom_sidebar_popup_button_admitall: 'Admit All',
1210
+ fmt_waitingroom_attendie_popup_label_removed: 'You are removed from the meetin ,failed to join',
1211
+ fmt_waitingroom_attendie_popup_button_gotit: 'Got it',
1212
+ fmt_waitingroom_sidebar_chat_label_waiting: 'Waiting Room{reason1}',
1213
+ fmt_waitingroom_sidebar_chat_label_meeting: 'Meeting',
1214
+ fmt_waitingroom_sidebar_chat_label_notsend: 'Atteendees are not allowed to send messages while staying in the meeting room',
1215
+ fmt_waitingroom_sidebar_chat_label_all_attendees: 'All attendees in the waiting room',
1216
+ fmt_waitingroom_mainwindow_popup_label_waitingroom: 'Waiting room',
1217
+ fmt_waitingroom_mainwindow_popup_label_waiting: '{reason1} are waiting in waiting room',
1218
+ fmt_waitingroom_mainwindow_popup_button_view_detailed: 'View details',
1219
+ fmt_waitingroom_mainwindow_popup_button_not_remind: 'No more remind',
1220
+ fmt_waitingroom_attendie_popup_label_Leave: 'Leave meeting',
1221
+ fmt_waitingroom_attendie_overview_label_waitingroom: 'Waiting Room',
1222
+ fmt_waitingroom_attendie_overview_label_wait_moment: 'The host has activated the waiting room,please wait a moment.',
1223
+ fmt_waitingroom_attendie_overview_label_move_in_by_host: 'You have been moved to the waiting room.',
1224
+ fmt_waitingroom_attendie_overview_label__toast_move_to_waitingroom: 'You have been moved to the waiting room.',
1225
+ fmt_waitingroom_attendie_overview_label_attendees: 'Attendees in the waiting room',
1226
+ fmt_waitingroom_attendie_overview_label_no_messages: 'No message',
1227
+ fmt_waitingroom_put_in_success: '{reason1} has been moved to the waiting room.',
1228
+ fmt_waitingroom_setting_tips_deactivate: '{reason1} has disabled the waiting room',
1229
+ fmt_waitingroom_setting_tips_enabled_waiting_room: '{reason1} has enabled the waiting room',
1230
+ fmt_waitingroom_setting_tips_disable: "You've disabled the Waiting Room",
1231
+ fmt_waitingroom_setting_tips_enable: "You've enabled the Waiting Room",
1232
+ fmt_waitingroom_setting_tips_send_message_to_host: 'You can click here to send a message to the host.',
1233
+ fmt_waitingroom_setting_popup_toast_unable_move_creator: 'Unable to move room creator into waiting room',
1234
+ 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',
1235
+ fmt_waitingroom_mobile_setting_label_enable: 'Enable Waiting Room',
1236
+ fmt_waitingroom_mobile_setting_label_disable: 'Disable Waiting Room',
1237
+ fmt_waitingroom_mobile_setting_popup_label_close: 'Closing the Waiting Room?',
1238
+ 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?',
1239
+ fmt_waitingroom_mobile_setting_popup_button_admit_all: 'Admit all Waiting Room users',
1240
+ fmt_waitingroom_mobile_setting_popup_button_cancel: 'Withheld',
1241
+ fmt_waitingroom_mobile_setting_tips_deactivate: '{reason1} The Waiting Room has been deactivated',
1242
+ fmt_waitingroom_mobile_setting_tips_disable: "You've disabled the Waiting Room",
1243
+ fmt_waitingroom_mobile_setting_button_move_into_waitingroom: 'Move into the waiting room',
1244
+ fmt_waitingroom_mobile_memberlist_label_waitingroom: 'Waiting Room',
1245
+ fmt_waitingroom_mobile_memberlist_popup_label_search: 'Search',
1246
+ fmt_waitingroom_mobile_memberlist_popup_moveout: 'Move out',
1247
+ fmt_waitingroom_mobile_memberlist_button_admit: 'Admit',
1248
+ fmt_waitingroom_mobile_memberlist_button_privatechat: 'Private chat',
1249
+ fmt_waitingroom_mobile_memberlist_popup_label_remove: 'Remove the waiting room member',
1250
+ fmt_waitingroom_mobile_memberlist_popup_label_sure_remove: 'Removing {reason1} from the Waiting Room?',
1251
+ fmt_waitingroom_mobile_memberlist_options_not_allowed: 'The user is not allowed to join the meeting again',
1252
+ fmt_waitingroom_mobile_memberlist_button_cancel: 'Cancel',
1253
+ fmt_waitingroom_mobile_memberlist_button_remove: 'Remove',
1254
+ fmt_waitingroom_mobile_memberlist_popup_label_remove_all: 'Remove all waiting room members?',
1255
+ fmt_waitingroom_mobile_memberlist_popup_label_sure_to_remove_all: 'Are you sure to remove all waiting room members?',
1256
+ fmt_waitingroom_mobile_memberlist_button_remove_all: 'Remove  all',
1257
+ fmt_waitingroom_mobile_memberlist_popup_label_admit_all: 'All members are admitted to the meeting',
1258
+ fmt_waitingroom_mobile_memberlist_popup_label_sure_to_admit_all: 'Whether to allow all waiting room members to join the meeting',
1259
+ fmt_waitingroom_mobile_memberlist_tips_all_removed: 'All members have been removed',
1260
+ fmt_waitingroom_mobile_memberlist_tips_removed: 'Removed',
1261
+ fmt_waitingroom_mobile_memberlist_tips_all_amitted: 'All members have been admitted',
1262
+ fmt_waitingroom_mobile_memberlist_label_nocontent: 'No message',
1263
+ fmt_waitingroom_mobile_chat_label_send_to: 'Send to',
1264
+ fmt_waitingroom_mobile_chat_label_input: 'Please input',
1265
+ fmt_waitingroom_mobile_chat_label_private_chat: 'Private Chat',
1266
+ fmt_waitingroom_mobile_chat_label_all_waitingroom_member: 'Everyone in the waiting room',
1267
+ fmt_waitingroom_mobile_chat_label_all_meeting_member: 'Everyone in the meeting',
1268
+ fmt_waitingroom_mobile_notice_label_waitingroom: 'Waiting room',
1269
+ fmt_waitingroom_mobile_notice_label_enabled: 'The host has enabled the waiting room,please wait until the host invite you to the meeting soon',
1270
+ fmt_waitingroom_mobile_notice_popup_label_about_join: 'You are about to enter the conference room',
1271
+ fmt_waitingroom_mobile_notice_popup_label_quick_join: 'The meeting host has invited you to the meeting, click the button to quickly enter the meeting',
1272
+ fmt_waitingroom_mobile_notice_popup_button_join_now: 'Join now{reason1}',
1273
+ fmt_waitingroom_mobile_notice_popup_button_join_now_no_count: 'Join Now',
1274
+ fmt_waitingroom_mobile_notice_popup_label_waitinglist: 'There are {reason1} people waiting in the waiting room',
1275
+ fmt_waitingroom_mobile_notice_popup_button_dont_remind: 'No more remind',
1276
+ fmt_waitingroom_mobile_notice_popup_button_view_detailed: 'View details',
1277
+ fmt_waitingroom_mobile_notice_popup_label_unable_move_creator: 'Unable to move room creator into waiting room',
1278
+ fmt_waitingroom_mobile_notice_popup_label_hi: 'Hi, {reason1}',
1279
+ fmt_waitingroom_mobile_notice_popup_label_message_to_host: 'You can click here to send a message to the host.',
1280
+ fmt_waitingroom_toast_removed_participant: '{reason1} has been removed from the waiting room.',
1281
+ fmt_ai_transcriptions_setting_label_source: 'Source language',
1282
+ fmt_ai_transcriptions_setting_label_live_language: 'Live language ',
1283
+ fmt_ai_transcriptions_setting_label_translate_to: 'Translate to ',
1284
+ fmt_ai_transcriptions_setting_label_effects: 'It takes effect for transcriptions and transcriptions, the translated content will only be visible to you',
1285
+ fmt_ai_transcriptions_setting_option_bilingualism: 'Bilingualism is displayed at the same time',
1286
+ fmt_ai_transcriptions_setting_label_translator: 'Translator',
1287
+ fmt_ai_transcriptions_setting_label_visable_range: 'Real-time simultaneous interpretation, visible only to yourself',
1288
+ fmt_ai_transcriptions_setting_option_noton: 'Do not turn on',
1289
+ fmt_ai_transcriptions_setting_option_english_translation: 'English to Chines',
1290
+ fmt_ai_transcriptions_setting_option_translate: 'Chinese to English',
1291
+ fmt_ai_subtitles_button_enable_caption: 'Enable Caption',
1292
+ fmt_ai_subtitles_button_disable_caption: 'Disable Caption',
1293
+ fmt_ai_subtitles_setting_label_subtitle_setting: 'Permissions Settings',
1294
+ fmt_ai_subtitles_setting_label_caption_transcripts: 'Captions & Transcripts',
1295
+ fmt_ai_subtitles_setting_label_fontsize: 'Font size',
1296
+ fmt_ai_subtitles_setting_label_sample: 'Example of subtitle text size',
1297
+ fmt_ai_subtitles_setting_label_translation_setting: 'Subtitle settings',
1298
+ 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',
1299
+ fmt_ai_subtitles_setting_options_enable_translation: 'Enable translation',
1300
+ fmt_ai_subtitles_setting_options_not_translated: 'Original Text(Not Translated)',
1301
+ fmt_ai_subtitles_setting_options_chinese: '简体中文',
1302
+ fmt_ai_subtitles_setting_options_english: 'English',
1303
+ fmt_ai_subtitles_setting_options_japanese: '日本語',
1304
+ fmt_ai_subtitles_setting_options_subltitle_bilingual: 'Subtitles are bilingual at the same time',
1305
+ fmt_ai_subtitles_setting_options_translation_bilingual: 'The transcription shows bilingual at the same time',
1306
+ fmt_ai_subtitles_setting_options_translation_restore_default: 'Restore the default font size',
1307
+ fmt_ai_subtitles_setting_options_view_translation: 'View transcriptions',
1308
+ fmt_ai_subtitles_setting_label_subtitle: 'Subtitle',
1309
+ fmt_ai_subtitles_setting_label_source_language: 'Source language',
1310
+ fmt_ai_subtitles_setting_label_translations_display: 'Translations Display',
1311
+ fmt_ai_subtitles_setting_label_bilingual_display: 'Bilingual Mode',
1312
+ fmt_ai_subtitles_setting_label_hot_words: 'Personal hot words',
1313
+ 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',
1314
+ fmt_ai_subtitles_setting_button_button: 'Button',
1315
+ fmt_ai_transcriptions_toolbar_button_realtime_transcription: 'Real-time transcription',
1316
+ fmt_ai_transcriptions_toolbar_options_translator: 'Enable Translator',
1317
+ fmt_ai_transcriptions_toolbar_options_enable_translation: 'Enable real-time transcription',
1318
+ fmt_ai_transcriptions_toolbar_options_settings: 'Transcription and translation settings',
1319
+ fmt_ai_transcriptions_toolbar_popup_valid: 'Subtitles are only valid for yourself、',
1320
+ fmt_ai_transcriptions_sidebar_label_realtime_translation: 'Real-time transcription',
1321
+ fmt_ai_transcriptions_sidebar_label_search: 'Search',
1322
+ fmt_ai_transcriptions_sidebar_tips_turnon: 'Turn on Translation Recognition',
1323
+ fmt_ai_transcriptions_sidebar_tips_turnoff: 'Turn off Translation Recognition',
1324
+ fmt_ai_transcriptions_sidebar_tips_stopped: 'Real-time transcription has been stopped',
1325
+ fmt_ai_subtitles_setting_label_turnon_subtitles: 'Turn subtitles on...',
1326
+ fmt_ai_subtitles_setting_label_click_to_setup: 'Click to set up subtitles and translations',
1327
+ fmt_ai_subtitles_setting_label_listening: 'Listening...',
1328
+ fmt_ai_subtitles_setting_label_listening_no_content: 'No content yet',
1329
+ fmt_ai_transcriptions_sidebar_button_stop_translation: 'Stop transcribing',
1330
+ fmt_ai_transcriptions_sidebar_button_start_translation: 'Start transcribing',
1331
+ fmt_ai_subtitles_toast_host_disabled_subtitles: 'The host has disabled subtitles permissions.',
1332
+ fmt_ai_subtitles_toast_you_turned_off_subtitles: 'You have turned off subtitles',
1333
+ fmt_ai_subtitles_window_label_change_language: 'Change source language',
1334
+ fmt_ai_subtitles_window_label_change_language_content: "Changing the source language to '{reason1}' for this meeting will update all attendees' captions and transcripts.",
1335
+ fmt_ai_subtitles_window_button_cancel: 'Cancel',
1336
+ fmt_ai_subtitles_window_button_modify: 'Modify',
1337
+ fmt_ai_subtitles_toast_change_language_self: "You have changed the source language for captions and transcripts to '{reason1}'.",
1338
+ fmt_ai_subtitles_toast_stopped_transcription: '{reason1} has stopped real-time transcription',
1339
+ fmt_ai_subtitles_toast_change_language_attendees: "{reason1} has changed the source language to '{reason2}'.",
1340
+ fmt_ai_subtitles_toast_started_transcription: '{reason1} has started real-time transcription',
1341
+ fmt_ai_subtitles_label_started_transcription_self: 'You have stopped real-time transcription',
1342
+ fmt_ai_subtitles_label_stopped_transcription_self: 'You have started real-time transcription',
1343
+ fmt_ai_subtitles_window_label_request_enable_rtt: 'Request host to enable real-time transcription',
1344
+ fmt_ai_subtitles_window_label_request_enable_rtt_content: 'Once enabled, meeting dialogues will be transcribed into text, accessible to all participants.',
1345
+ fmt_ai_subtitles_window_button_send: 'Send Request',
1346
+ fmt_ai_subtitles_toast_rtt_request_sent: 'Request Sent​',
1347
+ fmt_ai_subtitles_toast_rtt_host_declined_request: 'Host {reason1} has rejected the real-time transcription request.​',
1348
+ fmt_ai_rtt_window_label_enable_request: 'Real-time transcription request​',
1349
+ fmt_ai_rtt_window_label_enable_request_content: '{reason1} requested real-time transcription for the meeting. Once enabled, all participants can access the transcribed content.',
1350
+ fmt_ai_rtt_window_option_decline_all_request: 'Decline all future real-time transcription requests',
1351
+ fmt_ai_rtt_window_button_reject: 'Reject',
1352
+ fmt_ai_rtt_window_button_approve: 'Approve',
1353
+ fmt_ai_rtt_window_button_view: 'View',
1354
+ fmt_ai_subtitles_source_language_options_chinese: 'Chinese',
1355
+ fmt_ai_subtitles_source_language_options_english: 'English',
1356
+ fmt_ai_subtitles_source_language_options_japanese: 'Japanese',
1357
+ fmt_ai_rtt_window_label_converting_stt: 'Converting meeting speech to text',
1358
+ fmt_ai_rtt_window_button_view_stt_content: 'View',
1359
+ fmt_ai_rtt_window_button_stop_stt: 'Stop',
1360
+ fmt_ai_rtt_toast_host_enabled_rtt: 'The host has enabled access to real-time transcription.​',
1361
+ fmt_ai_subtitles_toast_host_enabled_captions: 'The host has enabled access to captions.​',
1362
+ fmt_ai_rtt_tips_only_host_stop: 'Only the host can stop',
1363
+ fmt_ai_rtt_label_source_sound_effect_for_personnel: 'The target sound source requiring identification takes effect for all personnel.',
1364
+ fmt_ai_rtt_toast_host_not_permitted_start_stop_rtt: 'The host is not permitted to start and stop real-time transcription.',
1365
+ fmt_ai_rtt_tips_transcribing: 'Transcribing...​',
1366
+ fmt_ai_rtt_label_transcription_setting: 'Transcription Settings',
1367
+ fmt_ai_rtt_tips_switch_translation: 'Switch to {reason2} for translation.',
1368
+ //****************** AI会议纪要 ******************
1369
+ fmt_ai_summary_create_option_create_summary: 'Create meeting summary for the meeting',
1370
+ fmt_ai_summary_create_labels_meeting_list: 'List of meetings',
1371
+ fmt_ai_summary_create_labels_valid_records: 'Only the last 2 days of meeting summaries are displayed',
1372
+ fmt_ai_summary_create_labels_meetingID: 'Meeting ID',
1373
+ fmt_ai_summary_create_labels_meeting_time: 'Meeting time',
1374
+ fmt_ai_summary_create_labels_not_opened: 'Meeting summary are not open',
1375
+ fmt_ai_summary_detail_label_data_analysis: 'Data analysis',
1376
+ fmt_ai_summary_detail_label_meeting_summary: 'Meeting summary',
1377
+ fmt_ai_summary_detail_label_transcription: 'Transcription',
1378
+ fmt_ai_summary_detail_label_search: 'Search',
1379
+ fmt_ai_summary_detail_button_transcription_management: 'Transcription management',
1380
+ fmt_ai_summary_detail_label_no_content: 'No content',
1381
+ fmt_ai_summary_setting_label_AI: 'AI ',
1382
+ fmt_ai_summary_setting_label_LLM_choose: 'LLM ',
1383
+ fmt_ai_summary_setting_label_llm_range: 'The AI model will be applied to functions such as meeting minutes and translation',
1384
+ fmt_ai_summary_setting_option_tingwu: 'TINGWU',
1385
+ fmt_ai_summary_setting_option_zhipu: 'ZHIPU-AI',
1386
+ fmt_ai_summary_setting_option_moonshot: 'Moonshot',
1387
+ fmt_ai_summary_setting_option_openai: 'OpenAI',
1388
+ fmt_ai_summary_setting_label_agent: 'Agent',
1389
+ fmt_ai_summary_setting_option_meeting_assistant: 'Meeting Assistant',
1390
+ fmt_ai_summary_setting_option_teacher: 'Teacher',
1391
+ fmt_ai_summary_setting_option_sales_manager: 'Sales Manager',
1392
+ //****************** 会前设置页 ******************
1393
+ fmt_premeeting_setting_mobile_label_settings: 'Settings',
1394
+ fmt_premeeting_setting_mobile_label_host_settings: 'Meeting host settings when joining a meeting',
1395
+ fmt_premeeting_setting_mobile_swtich_mute_when_join: 'Mute when joining a meeting ',
1396
+ fmt_premeeting_setting_mobile_label_personal_settings: 'Personal Settings',
1397
+ fmt_premeeting_setting_mobile_label_video: 'Video',
1398
+ fmt_premeeting_setting_mobile_swtich_hide_video_off: 'Hide participants without video',
1399
+ fmt_premeeting_setting_mobile_swtich_hide_my_video: 'Hide my video when joining a meeting ',
1400
+ fmt_premeeting_setting_mobile_option_background: 'Background ',
1401
+ fmt_premeeting_setting_mobile_option_enabled: 'Enabled ',
1402
+ fmt_premeeting_setting_mobile_option_disabled: 'Disabled',
1403
+ fmt_premeeting_setting_mobile_option_beauty: 'Beauty',
1404
+ fmt_premeeting_setting_mobile_label_caption_transcription: 'Caption & transcription',
1405
+ fmt_premeeting_setting_mobile_option_source_language: 'Source language ',
1406
+ fmt_premeeting_setting_mobile_option_default: 'Default',
1407
+ fmt_premeeting_setting_mobile_option_translate_to: 'Translate to ',
1408
+ fmt_premeeting_setting_mobile_swtich_display_bilingual: 'Display bilingual ',
1409
+ fmt_premeeting_setting_mobile_label_commen_settings: 'Commen settings',
1410
+ fmt_premeeting_setting_mobile_swtich_participant_display_name: 'Participant display name',
1411
+ fmt_premeeting_setting_mobile_swtich_voice_stimulation: 'Voice stimulation',
1412
+ fmt_premeeting_setting_mobile_label_speaking_display_first: 'When voice stimulation is enabled, the participants who are speaking are displayed first.',
1413
+ fmt_premeeting_setting_mobile_option_bilingual: 'Bilingual ',
1414
+ fmt_premeeting_setting_mobile_option_chinese: '中文',
1415
+ fmt_premeeting_setting_mobile_option_english: 'EN',
1416
+ fmt_premeeting_setting_mobile_option_language_auto: 'Auto',
1417
+ fmt_premeeting_setting_mobile_option_appearance: 'Appearance',
1418
+ fmt_premeeting_setting_mobile_option_auto: 'Auto',
1419
+ fmt_premeeting_setting_mobile_option_bright: 'Bright',
1420
+ fmt_premeeting_setting_mobile_option_dark: 'Dark',
1421
+ fmt_premeeting_setting_option_setting_after_restarting: 'Appearance settings will take effect after restarting Meeting',
1422
+ fmt_premeeting_setting_mobile_option_region: 'Region',
1423
+ fmt_premeeting_setting_mobile_option_developer_mode: 'Developer mode',
1424
+ fmt_premeeting_setting_mobile_label_about_us: 'About us',
1425
+ fmt_premeeting_setting_mobile_option_version: 'Version',
1426
+ fmt_premeeting_setting_mobile_button_version_pdate: 'Version Update',
1427
+ fmt_premeeting_setting_mobile_label_release_time: 'Release time',
1428
+ fmt_premeeting_setting_mobile_url_agreement: 'Service Agreement',
1429
+ fmt_premeeting_setting_mobile_url_privacy: 'Privacy Policy',
1430
+ fmt_premeeting_setting_mobile_url_disclaimer: 'Disclaimer',
1431
+ fmt_premeeting_setting_mobile_button_cancel_account: 'Cancel ShengWang account',
1432
+ fmt_premeeting_setting_mobile_button_log_out: 'Log out',
1433
+ fmt_premeeting_setting_mobile_label_take_effect: 'Laguage settings will take effect after you restart Meeting ',
1434
+ fmt_premeeting_setting_mobile_popup_button_got_it: 'Got it ',
1435
+ fmt_premeeting_setting_mobile_popup_button_restart: 'Restart',
1436
+ fmt_premeeting_setting_mobile_popup_label_latest_version: 'Your current version is up to date ',
1437
+ fmt_premeeting_setting_mobile_popup_label_dowloading: 'Downloading newst verion...',
1438
+ fmt_premeeting_setting_mobile_popup_button_install_comfirm: 'Downloaded,are you sure to install?',
1439
+ fmt_premeeting_setting_mobile_popup_button_cancel_install: 'Cancel',
1440
+ fmt_premeeting_setting_mobile_popup_button_install: 'Install',
1441
+ fmt_premeeting_setting_mobile_popup_label_cancel_account: 'Cancel ShengWang account?',
1442
+ fmt_premeeting_setting_mobile_popup_button_confirm_cancel: 'Confirm Cancel',
1443
+ fmt_premeeting_setting_mobile_popup_button_cancel: 'Cancel',
1444
+ fmt_premeeting_setting_mobile_popup_button_log_out: 'Log out ',
1445
+ fmt_premeeting_setting_mobile_button_log_out_confirm: 'Confirm',
1446
+ fmt_premeeting_setting_button_more_meeting_control: 'More Conference Control Settings',
1447
+ fmt_premeeting_setting_checkbox_joining_meeting_connect_audio: 'Automatically connect audio when joining a meeting',
1448
+ //****************** 首页 ******************
1449
+ fmt_premeeting_joinroom_mobile_button_upandin: 'Sign up and log in',
1450
+ fmt_premeeting_joinroom_mobile_label_flexible_meeting: 'Flexible Meeting',
1451
+ fmt_premeeting_joinroom_mobile_label_enterprise_account: 'Enterprise account',
1452
+ fmt_premeeting_joinroom_mobile_tips_meetingid: 'Meeting name or meeting ID',
1453
+ fmt_premeeting_joinroom_mobile_tips_password: 'Meeting password',
1454
+ fmt_premeeting_joinroom_mobile_label_duration: 'Duration',
1455
+ fmt_premeeting_joinroom_mobile_label_meeting_duration: 'Meeting duration',
1456
+ fmt_premeeting_joinroom_mobile_button_join_meeting: 'Join the meeting',
1457
+ fmt_premeeting_joinroom_mobile_tips_six_characters: 'Please enter no more than 6 characters',
1458
+ fmt_premeeting_joinroom_mobile_tips_wrong_password: 'Wrong password',
1459
+ 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.',
1460
+ fmt_premeeting_joinroom_mobile_label_account: 'Account',
1461
+ fmt_premeeting_joinroom_mobile_button_settings_privacy: 'Settings & Privacy',
1462
+ fmt_premeeting_joinroom_mobile_button_log_out: 'Log out',
1463
+ fmt_premeeting_joinroom_mobile_button_confirm_exit: 'Confirm to exit',
1464
+ fmt_premeeting_joinroom_mobile_button_cancel: 'Cancel',
1465
+ fmt_premeeting_joinroom_mobile_label_rename: 'Rename',
1466
+ fmt_premeeting_back_meeting: 'Back to Meeting',
1467
+ //****************** 水印(移动) ******************
1468
+ fmt_security_setting_mobile_label_watermark: 'Watermark',
1469
+ fmt_security_setting_mobile_label_watermark_style: 'Watermark style',
1470
+ fmt_security_setting_mobile_option_watermark_style_single: 'Single line',
1471
+ fmt_security_setting_mobile_option_watermark_style_multi: 'Multi line',
1472
+ fmt_security_setting_mobile_label_mute_join: 'Mute when participants join a meeting',
1473
+ fmt_security_setting_mobile_label_allow_participants: 'Allow Participants To',
1474
+ fmt_security_setting_mobile_label_chat_with: 'Chat With',
1475
+ fmt_security_setting_mobile_label_share_screen: 'Share Screen',
1476
+ fmt_security_setting_mobile_label_rename: 'Rename',
1477
+ fmt_security_setting_mobile_label_unmute: 'Unmute',
1478
+ fmt_security_setting_mobile_label_start_video: 'Turn on Video',
1479
+ fmt_security_setting_mobile_popup_toast_unlock_meeting: 'You have unlocked sessions for new attendees to join',
1480
+ fmt_security_setting_mobile_chat_popup_label_participants: 'Allow Participants to Chat With',
1481
+ fmt_security_setting_mobile_chat_popup_option_no_one: 'No one',
1482
+ fmt_security_setting_mobile_chat_popup_option_facilitator: 'Facilitators and co-facilitators',
1483
+ fmt_security_setting_mobile_chat_popup_option_all: 'All',
1484
+ fmt_security_setting_mobile_chat_popup_option_all_chat: 'All public and private chats',
1485
+ fmt_security_mobile_mainwindow_label_watermark: '{reason1}{reason1}',
1486
+ //****************** 安全(移动) ******************
1487
+ fmt_security_setting_mobile_label_security: 'Security',
1488
+ fmt_security_setting_mobile_label_security_label: 'SECURITY',
1489
+ fmt_security_setting_mobile_label_lock_meeting: 'Lock Meeting',
1490
+ fmt_security_setting_mobile_label_waiting_room: 'Waiting Room',
1491
+ //****************** 安全 ******************
1492
+ fmt_security_setting_label_security_setting: 'Meeting Security Setting',
1493
+ fmt_security_setting_label_lock_meeting: 'Lock Meeting',
1494
+ fmt_security_setting_label_waiting_room: 'Attendees must first enter the waiting room',
1495
+ fmt_security_setting_label_watermark: 'Watermark',
1496
+ fmt_security_setting_option_watermark_style_single: 'Single line',
1497
+ fmt_security_setting_option_watermark_style_multi: 'Multi Line',
1498
+ fmt_security_setting_label_allow_participants: 'Allow Participant',
1499
+ fmt_security_setting_label_chat_with: 'Chat with',
1500
+ fmt_security_setting_label_share_screen: 'Share Screen',
1501
+ fmt_security_setting_label_rename: 'Rename by Participant',
1502
+ fmt_security_setting_label_unmute: 'Self unmute',
1503
+ fmt_security_setting_label_start_video: 'Turn on Video',
1504
+ fmt_security_setting_label_remove_participant: 'Remove participant',
1505
+ fmt_security_setting_label_pause_participant: 'Pause Participant',
1506
+ fmt_security_setting_popup_toast_join_waiting_room: 'Attendees must first enter the waiting room',
1507
+ fmt_security_setting_popup_toast_facilitator_watermark: 'Facilitator turn on the watermark',
1508
+ fmt_security_setting_popup_toast_co_facilitator_watermark: 'Co-Facilitator turn on the watermark',
1509
+ fmt_security_setting_popup_toast_turn_off_watermark: 'Turn off the watermark',
1510
+ 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',
1511
+ fmt_security_mainwindow_label_watermark: '{reason1}{reason1}',
1512
+ fmt_security_mainwindow_label_toast_unmute_not_allow: 'Hosts/co-hosts not allowed to unmute themselves',
1513
+ fmt_security_mainwindow_label_toast_name_change_not_allow: 'Hosts/co-hosts are not allowed to change their own name',
1514
+ fmt_security_mainwindow_label_interactive_annotations: 'Allow interactive annotations',
1515
+ fmt_security_mainwindow_option_start_stop_transcription: 'Start and stop transcription',
1516
+ fmt_security_mainwindow_option_use_captions: 'Use captions',
1517
+ fmt_security_mainwindow_option_change_language: 'Change source language',
1518
+ //****************** 设置 ******************
1519
+ fmt_premeeting_setting_label_settings: 'Setting',
1520
+ fmt_premeeting_setting_label_normal: 'Normal',
1521
+ fmt_premeeting_setting_label_voice_motivation: 'Voice Motivation',
1522
+ fmt_premeeting_setting_label_turn_on_microphone: 'Turn on Microphone',
1523
+ fmt_premeeting_setting_label_turn_on_camera: 'Turn on Camera',
1524
+ fmt_premeeting_setting_label_attendees_name: 'Participant display name',
1525
+ fmt_premeeting_setting_label_appearances: 'Appearance',
1526
+ fmt_premeeting_setting_label_bright_mode: 'Bright mode',
1527
+ fmt_premeeting_setting_label_dark_mode: 'Dark mode',
1528
+ fmt_premeeting_setting_label_auto_mode: 'Auto',
1529
+ fmt_premeeting_setting_label_multi_language: 'Multi Language',
1530
+ fmt_premeeting_setting_label_Chinese: 'Chinese',
1531
+ fmt_premeeting_setting_label_English: 'English',
1532
+ fmt_premeeting_setting_popup_label_restart_activate: 'Effective after reboot',
1533
+ fmt_premeeting_setting_popup_label_language_setting_restarting_meeting: 'The language setting will take effect after restarting the Flexible Meeting',
1534
+ fmt_premeeting_setting_popup_label_restart_application_switch_language: 'Restart the application if expecting to switch languages now.',
1535
+ fmt_premeeting_setting_popup_button_i_know: 'I know',
1536
+ fmt_premeeting_setting_pupop_button_restart_now: 'Restart Now',
1537
+ fmt_premeeting_setting_label_follow_the_system: 'Follow the System',
1538
+ fmt_premeeting_setting_label_region: 'Region',
1539
+ fmt_premeeting_setting_label_cn: 'CN',
1540
+ fmt_premeeting_setting_label_eu: 'EU',
1541
+ fmt_premeeting_setting_label_us: 'US',
1542
+ fmt_premeeting_setting_label_ap: 'AP',
1543
+ fmt_premeeting_setting_label_meeting_control: 'Meeting Control',
1544
+ fmt_premeeting_setting_label_mute_join_meeting: 'Mute when join the meeting',
1545
+ fmt_premeeting_setting_label_lock_meeting: 'Lock the Meeting',
1546
+ fmt_premeeting_setting_label_open_waiting_room: 'Open the waiting room',
1547
+ fmt_premeeting_setting_label_voice: 'Voice',
1548
+ fmt_premeeting_setting_label_automatically_connects_to_computer_audio: 'Automatically connects to computer audio when joining a meeting',
1549
+ fmt_premeeting_setting_label_mute_the_microphone_joinning_meeting: 'Mute the Microphone when joinning a meeting',
1550
+ fmt_premeeting_setting_label_speaker: 'Speaker',
1551
+ fmt_premeeting_setting_button_test_speaker: 'Test Speaker',
1552
+ fmt_premeeting_setting_label_click_test_speaker: 'Click “Test Speaker” to ensure you can hear others’ audio.',
1553
+ fmt_premeeting_setting_button_pause: 'Pause',
1554
+ fmt_premeeting_setting_label_change_speaker: 'If you cannot hear the test sound, please change the speaker.',
1555
+ fmt_premeeting_setting_label_output_level: 'Output Level',
1556
+ fmt_premeeting_setting_label_output_volume: 'Output Volume',
1557
+ fmt_premeeting_setting_label_automatically_adjust_volume: 'Automatically adjust {reason1} volume',
1558
+ fmt_premeeting_setting_label_microphone: 'Microphone',
1559
+ fmt_premeeting_setting_button_test_microphone: 'Test Microphone',
1560
+ fmt_premeeting_setting_label_speak_into_your_microphone: 'Click to test the microphone',
1561
+ fmt_premeeting_setting_button_recording: 'Recording',
1562
+ fmt_premeeting_setting_label_change_the_microphone: 'If you cannot hear the test sound, please change the microphone.',
1563
+ fmt_premeeting_setting_label_input_level: 'Input Level',
1564
+ fmt_premeeting_setting_label_input_volume: 'Input Volume',
1565
+ fmt_premeeting_setting_label_automatically_adjust_microphone_volume: 'Automatically adjust microphone volume',
1566
+ fmt_premeeting_setting_label_audio_noise_reduction_enhancement: 'Audio Noise Reduction and Enhancement',
1567
+ fmt_premeeting_setting_label_choose_audio_settings: 'Choose to reduce background noise or enable professional audio settings',
1568
+ fmt_premeeting_setting_label_enable_waiting_room: 'Enable waiting room',
1569
+ fmt_premeeting_setting_label_Off: 'Off',
1570
+ fmt_premeeting_setting_label_reduce_background_noise: 'Reduce Background Noise',
1571
+ fmt_premeeting_setting_label_auto: 'Auto',
1572
+ fmt_premeeting_setting_label_low: 'Low',
1573
+ fmt_premeeting_setting_label_medium: 'Medium',
1574
+ fmt_premeeting_setting_label_high: 'High',
1575
+ fmt_premeeting_setting_label_turn_off: 'Turn Off',
1576
+ fmt_premeeting_setting_label_professional_audio: 'Professional Audio',
1577
+ fmt_premeeting_setting_label_enable_stereo: 'Enable Stereo',
1578
+ fmt_premeeting_setting_label_high_fidelity_music_mode: 'High-Fidelity Music Mode',
1579
+ fmt_premeeting_setting_label_echo_cancellation: 'Echo Cancellation',
1580
+ fmt_premeeting_setting_label_video_and_effect: 'Video and Effect',
1581
+ fmt_premeeting_setting_button_self_veiw: 'Self view',
1582
+ fmt_premeeting_setting_button_camera_veiw: 'Camera view',
1583
+ fmt_premeeting_setting_button_basic: 'Basic',
1584
+ fmt_premeeting_setting_button_background: 'Background',
1585
+ fmt_premeeting_setting_button_beauty_filter: 'Beauty Filter',
1586
+ fmt_premeeting_setting_label_camera: 'Camera',
1587
+ fmt_premeeting_setting_label_hd_video: 'HD Video',
1588
+ fmt_premeeting_setting_label_adjust_adapt_low_light: 'Adjust to adapt to low light',
1589
+ fmt_premeeting_setting_label_turn_off_video_joining_meeting: 'Turn off my video when joining a meeting',
1590
+ fmt_premeeting_setting_label_always_show_video_preview_dialog: 'Always show video preview dialog when joining video meetings',
1591
+ fmt_premeeting_setting_label_hide_participants_without_video: 'Hide participants without video',
1592
+ fmt_premeeting_setting_label_mirror_my_video: 'Mirror my video',
1593
+ fmt_premeeting_setting_label_16_participants: 'Support for 16 participants',
1594
+ fmt_premeeting_setting_label_25_participants: 'Support for 25 participants',
1595
+ fmt_premeeting_setting_label_advanced_Setting: 'Advanced Setting',
1596
+ fmt_premeeting_setting_label_optimize_video_quality_through_noise_reduction: 'Optimize video quality through noise reduction',
1597
+ fmt_premeeting_setting_label_hardware_acceleration_for_video_receiving: 'Use hardware acceleration for video receiving',
1598
+ fmt_premeeting_setting_label_about_us: 'About us',
1599
+ fmt_premeeting_setting_label_smart_meeting: 'Flexible Meeting',
1600
+ fmt_premeeting_setting_label_version_now: 'Version {reason1}',
1601
+ fmt_premeeting_setting_button_check_for_update: 'Check for update',
1602
+ fmt_premeeting_setting_button_user_agreement: 'User Agreement',
1603
+ fmt_premeeting_setting_button_privacy_policy: 'Privacy Policy',
1604
+ fmt_premeeting_setting_button_disclaimer: 'Disclaimer',
1605
+ fmt_premeeting_setting_version_popup_label_latest_version: 'Latest Version',
1606
+ fmt_premeeting_setting_version_popup_label_latest_version_announcement: '{reason1} is the latest version',
1607
+ fmt_premeeting_setting_version_popup_button_ok: 'OK',
1608
+ fmt_premeeting_setting_version_popup_label_new_version_announcement: 'New version {reason1} is available',
1609
+ fmt_premeeting_setting_version_popup_label_current_version: 'Current version is {reason1}',
1610
+ fmt_premeeting_setting_version_popup_button_download_update: 'Download Update',
1611
+ fmt_premeeting_setting_version_popup_button_download_later: 'Try Later',
1612
+ fmt_premeeting_setting_label_downloading_update: 'Downloading Update',
1613
+ fmt_premeeting_setting_version_popup_button_cancel: 'Cancel',
1614
+ fmt_premeeting_setting_version_popup_new_version_ready: 'New Version is Ready',
1615
+ fmt_premeeting_setting_version_popup_label_restarting_to_experience: 'Experience it after restarting the application ({reason1})',
1616
+ fmt_premeeting_setting_version_popup_button_restart_application: 'Restart Application',
1617
+ fmt_premeeting_setting_version_popup_button_try_later: 'Try Later',
1618
+ fmt_meeting_mainwidow_version_popup_label_new_version_ready: 'New Version is Ready',
1619
+ fmt_meeting_mainwindow_version_popup_label_experience_after_restarting: 'Experience it after restarting the application ({reason1})',
1620
+ fmt_meeting_mainwindow_version_popup_button_restart_application: 'Restart Application',
1621
+ //****************** 同声传译-PC ******************
1622
+ fmt_interpretation_setting_controller_option_simultaneous_interpretation: 'Simultaneous Interpretation',
1623
+ fmt_interpretation_setting_controller_toast_turn_on_simultaneous_interpretation: 'Turn on Simultaneous Interpretation',
1624
+ fmt_interpretation_setting_controller_toast_turn_off_simultaneous_interpretation: 'Turn off Simultaneous Interpretation',
1625
+ fmt_interpretation_setting_popup_controller_label_simultaneous_interpretation: 'Simultaneous Interpretation',
1626
+ fmt_interpretation_setting_popup_controller_option_add_interpreter: 'Add Interpreter',
1627
+ fmt_interpretation_setting_popup_controller_label_interpreter: 'Interpreter {reason1}',
1628
+ fmt_interpretation_setting_popup_controller_label_departure: 'Departure',
1629
+ fmt_interpretation_setting_popup_controller_label_both_language: 'Both languages need to support output, not unidirectional output',
1630
+ fmt_interpretation_setting_popup_controller_labe_search_name: 'Search by name',
1631
+ fmt_interpretation_setting_popup_controller_labe_source_language: 'Language',
1632
+ fmt_interpretation_setting_popup_controller_labe_Translate_language: 'Language',
1633
+ fmt_interpretation_setting_popup_controller_option_new_add_interpreter: 'Add Interpreter',
1634
+ fmt_interpretation_setting_popup_controller_option_turn_on_simultaneous: 'Turn on Simultaneous Interpretation',
1635
+ fmt_interpretation_setting_popup_controller_option_add_interpreter_limited: 'Add Interpreter(Limited 10)',
1636
+ fmt_interpretation_setting_popup_controller_option_change: 'Change',
1637
+ fmt_interpretation_setting_popup_controller_option_stop_interpretation: 'Stop interpretation',
1638
+ fmt_interpretation_setting_popup_controller_option_change_comfirm: 'Comfirmation of changes',
1639
+ fmt_interpretation_popup_toast_interpretation_online: 'Simultaneous Interpretation has been activated',
1640
+ fmt_interpretation_popup_toast_interpreter_set_by_controller: 'The Moderator {reason1} designated {yyyy} and other {reason3} individuals as interpreters.',
1641
+ fmt_interpretation_popup_toast_interpreter_set_by_co_controller: 'The Co-Moderator {reason1} designated {yyyy} and other {reason3} individuals as interpreters.',
1642
+ fmt_interpretation_sidebar_button_interpret: 'Interpret',
1643
+ fmt_interpretation_sidebar_toast_choose_language: 'Different language channels are available for simultaneous interpretation',
1644
+ fmt_interpretation_sidebar_toast_hover_choose_language: 'Choose your language channel',
1645
+ fmt_interpretation_pupup_interpreter_offline: 'Translator offline',
1646
+ fmt_interpretation_popup_button_set: 'Go to assign',
1647
+ fmt_interpretation_popup_label_set: 'Interpreter {reason1} has left the meeting, please reassign the interpreter.',
1648
+ fmt_interpretation_popup_toast_label_return_meeting: 'Translator {reason1} has re-entered the conference room',
1649
+ fmt_interpretation_interpreter_popup_label_welcome_interpreter_be_set: 'You have been assigned as an interpreter',
1650
+ 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',
1651
+ fmt_interpretation_interpreter_popup_label_welcome_source_language: '{reason1}(Source Language)',
1652
+ fmt_interpretation_interpreter_popup_label_welcome_translate_language: '{reason1}(Translate Language)',
1653
+ fmt_interpretation_interpreter_popup_button_welcome_i_know: 'I got it.',
1654
+ fmt_interpretation_interpreter_toast_label_open_micro: 'Please turn on the microphone.',
1655
+ fmt_interpretation_interpreter_toast_label_change_channel: 'Click here to switch the voice channel and make sure the microphone is turned on.',
1656
+ fmt_interpretation_interpreter_popup_button_cn: 'Chinese',
1657
+ fmt_interpretation_interpreter_popup_button_en: 'English',
1658
+ fmt_interpretation_interpreter_toast_label_return_channel: 'You are the interpreter, currently on channel {reason1}.',
1659
+ fmt_interpretation_interpreter_popup_label_language_change_attention: 'Please note that the translation language has changed',
1660
+ fmt_interpretation_interpreter_popup_label_language_change_by_controller: 'The conference administrator has assigned your new translation language:',
1661
+ fmt_interpretation_interpreter_popup_label_language: '{reason1}',
1662
+ fmt_interpretation_interpreter_popup_button_i_know: 'I got it.',
1663
+ fmt_interpretation_interpreter_popup_label_interpret_cancel: 'Translation privileges have been withdrawn',
1664
+ fmt_interpretation_interpreter_popup_label_interpret_cancel_label: 'The conference administrator has revoked your status as a translator.',
1665
+ fmt_interpretation_interpreter_popup_button_know: 'Got it.',
1666
+ fmt_interpretation_mainwindow_toast_label_interpret_offline_controller: 'Co-host xxx has turned off simultaneous interpretation',
1667
+ fmt_interpretation_interpreter_popup_label_language_change_by_cocontroller: 'Co-host {reason1} has turned off simultaneous interpretation.',
1668
+ fmt_interpretation_attendness_sidbar_popup_option_original_aswell: 'Listen to the original voice at the same time',
1669
+ fmt_interpretation_controller_sidbar_popup_button_interpret_set: 'Simultaneous Interpretation Settings',
1670
+ fmt_interpretation_attendness_sidbar_popup_option_language_off: 'Original channel',
1671
+ fmt_interpretation_attendness_sidbar_popup_option_language_cn: 'Chinese',
1672
+ fmt_interpretation_attendness_sidbar_popup_option_language_eng: 'English',
1673
+ fmt_interpretation_attendness_popup_label_interpretation_online: 'Simultaneous Interpretation is enabled in the meeting room',
1674
+ fmt_interpretation_attendness_popup_label_interpretation_click: 'Please click “Simultaneous Interpretation” at the bottom of the operation bar.',
1675
+ 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.',
1676
+ fmt_interpretation_mainwindow_toast_label_update_language: 'The host has updated the interpreter or language for simultaneous interpretation.',
1677
+ fmt_interpretation_mainwindow_toast_label_turn_off_interpret: 'You have turned off simultaneous interpretation',
1678
+ fmt_interpretation_interpreter_popup_special_host: 'Cohost',
1679
+ fmt_interpretation_interpreter_popup_special_co_host: 'Host',
1680
+ //****************** 同声传译-mobile ******************
1681
+ fmt_interpretation_mobile_setting_controller_option_interpret: 'simultaneous interpretation',
1682
+ fmt_interpretation_mobile_setting_controller_label_interpret: 'simultaneous interpretation',
1683
+ fmt_interpretation_mobile_setting_controller_toast_label_setting_by_one: '{reason1} may be setting up this function',
1684
+ fmt_interpretation_mobile_setting_controller_toast_label_setting_by_member: '{reason1} and other {reason2} people may be setting up this function{',
1685
+ fmt_interpretation_mobile_setting_controller_button_add_interpret: 'Add translator',
1686
+ fmt_interpretation_mobile_setting_controller_label_interpreter: 'Translator {reason1}',
1687
+ fmt_interpretation_mobile_setting_popup_controller_option_add_interpreter_limited: 'Add Interpreter(Limited 10)',
1688
+ fmt_interpretation_mobile_setting_controller_label_name_search: 'Search by name',
1689
+ fmt_interpretation_mobile_setting_controller_label_cn: 'Chinese',
1690
+ fmt_interpretation_mobile_setting_controller_label_en: 'English',
1691
+ fmt_interpretation_mobile_setting_controller_button_turn_on_interpretation: 'Turn on simultaneous interpretation',
1692
+ fmt_interpretation_mobile_setting_controller_button_turn_off_interpretation: 'Turn off simultaneous interpretation',
1693
+ fmt_interpretation_mobile_setting_controller_button_save: 'Save',
1694
+ fmt_interpretation_mobile_setting_controller_toast_label_complete_setting: 'Please complete the settings of all translators and their languages',
1695
+ fmt_interpretation_mobile_setting_controller_toast_label_setting_update: 'Settings updated',
1696
+ fmt_interpretation_mobile_setting_controller_option_french: 'French',
1697
+ fmt_interpretation_mobile_setting_controller_option_italian: 'Italian',
1698
+ fmt_interpretation_mobile_setting_controller_option_korean: 'Korean',
1699
+ fmt_interpretation_mobile_setting_controller_option_spanish: 'spanish',
1700
+ fmt_interpretation_mobile_setting_controller_option_japanese: 'Japanese',
1701
+ fmt_interpretation_mobile_chatwin_controller_label_assign_a_interpreter: 'Assign a Interpreter',
1702
+ fmt_interpretation_mobile_toast_controller_label_interpret_in_process: 'Simultaneous interpretation is in progress, you can choose different language channels to listen to',
1703
+ fmt_interpretation_mobile_toast_controller_toast_label_update_interpreter_by_cocontroller: 'Co-host xxx updated the translator or language of simultaneous interpretation',
1704
+ fmt_interpretation_mobile_interpreter_popup_label_as_interpreter: 'You are accused of being a translator',
1705
+ 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',
1706
+ fmt_interpretation_mobile_interpreter_popup_label_en: 'English',
1707
+ fmt_interpretation_mobile_interpreter_popup_label_cn: 'Chinese',
1708
+ fmt_interpretation_mobile_interpreter_popup_button_i_know: 'I know',
1709
+ 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',
1710
+ fmt_interpretation_mobile_interpreter_toast_label_interpreter_channel: 'You are the translator, currently on channel {reason1}',
1711
+ fmt_interpretation_mobile_interpreter_popup_label_permission_revoke: 'Translation permission revoked',
1712
+ fmt_interpretation_mobile_interpreter_popup_label_status_cancel: 'The conference administrator has canceled your status as translator',
1713
+ fmt_interpretation_mobile_interpreter_popup_status_button_i_know: 'I know',
1714
+ fmt_interpretation_mobile_interpreter_popup_change_label_language_change: 'Please note that the translation language has changed',
1715
+ fmt_interpretation_mobile_interpreter_popup_change_button_i_know: 'I know',
1716
+ fmt_interpretation_mobile_attendnees_popup_lable_language_choose: 'Select language to listen',
1717
+ fmt_interpretation_mobile_attendnees_popup_option_off: 'Close',
1718
+ fmt_interpretation_mobile_attendnees_popup_option_cn: 'Chinese',
1719
+ fmt_interpretation_mobile_attendnees_popup_option_en: 'English',
1720
+ fmt_interpretation_mobile_attendnees_popup_label_original_aswell: 'Listen to the original sound at the same time',
1721
+ fmt_interpretation_mobile_controller_popup_button_interpret_setting: 'Simultaneous interpretation settings',
1722
+ 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.',
1723
+ fmt_interpretation_mobile_meeting_win_label_translator: 'TRANS.',
1724
+ //****************** 免密登陆 ******************
1725
+ fmt_meeting_creatpage_label_smart_meeting: 'Flexible Meetings',
1726
+ fmt_meeting_creatpage_label_fast_experience: 'Fast Experience',
1727
+ fmt_meeting_creatpage_button_create_meeting: 'Create a Meeting',
1728
+ fmt_meeting_creatpage_label_room_name: 'Room Name',
1729
+ fmt_meeting_creatpage_label_enter_room_name: 'Please enter a room name',
1730
+ fmt_meeting_creatpage_label_user_name: 'User Name',
1731
+ fmt_meeting_creatpage_label_enter_user_name: 'Please enter your username',
1732
+ fmt_meeting_creatpage_label_duration: 'Duration',
1733
+ fmt_meeting_creatpage_label_enter_duration: 'Please enter the length of the meeting',
1734
+ fmt_meeting_creatpage_label_password: 'Password',
1735
+ fmt_meeting_creatpage_label_password_empty_admit_without_password: 'If the password is empty, participants will be admitted without password.',
1736
+ fmt_meeting_creatpage_label_enter_password: 'Please enter your password',
1737
+ fmt_meeting_creatpage_button_quick_meeting_creat: 'Quick Meeting Creation',
1738
+ fmt_meeting_creatpage_label_create_meeting_summary: 'Create meeting summary while joining the meeting',
1739
+ fmt_meeting_creatpage_label_agree_service: 'Agree to the “Flexible Meeting User Service Agreement” and “Flexible Meeting Privacy Policy”.',
1740
+ fmt_meeting_creatpage_button_join_meeting: 'Join Meeting',
1741
+ fmt_meeting_creatpage_label_join_room_num: 'Room Number',
1742
+ fmt_meeting_creatpage_label_join_enter_room_num: 'Please enter the room number',
1743
+ fmt_meeting_creatpage_label_join_user_name: 'User Name',
1744
+ fmt_meeting_creatpage_label_join_enter_user_name: 'Please enter your username',
1745
+ fmt_meeting_creatpage_label_join_password: 'Password',
1746
+ fmt_meeting_creatpage_label_join_enter_password: 'Please enter your password',
1747
+ fmt_meeting_creatpage_label_join_role: 'Role',
1748
+ fmt_meeting_creatpage_label_join_attendee: 'Attendee',
1749
+ fmt_meeting_creatpage_label_join_read_agree: 'agree',
1750
+ fmt_meeting_creatpage_label_service: '《User Agreement》',
1751
+ fmt_meeting_creatpage_label_privacy: '《Privacy Policy》',
1752
+ fmt_meeting_creatpage_label_and: 'and',
1753
+ fmt_meeting_creatpage_tips_join_password_length: 'Please enter a 9-digit number',
1754
+ fmt_meeting_creatpage_tips_join_username_length: 'Please enter content of 2–20 characters in length.',
1755
+ fmt_meeting_mainpage_tips_sleep_left_meeting: 'You have left the meeting because your computer went to sleep',
1756
+ fmt_meeting_creatpage_button_quick_join_meeting: 'Quickly join the meeting',
1757
+ fmt_meeting_creatpage_label_join_agree_service: 'Agree to “Flexible Meeting User Service Agreement” and “Flexible Meeting Privacy Policy”.',
1758
+ fmt_meeting_creatpage_popup_label_wrong_room_password: 'Room number does not exist or wrong password',
1759
+ fmt_meeting_mainwindow_topbar_left_button_meeting_detail: 'Meeting details {reason1}',
1760
+ fmt_meeting_mainwindow_topbar_left_popup_toast_copy_information: 'Press to copy the meeting information',
1761
+ fmt_meeting_mainwindow_topbar_left_popup_toast_copy_done: 'The information has been copied',
1762
+ fmt_meeting_mainwindow_topbar_left_popup_label_share: 'Share meeting number or invitation link',
1763
+ fmt_meeting_mainwindow_topbar_left_popup_label_room_name: '{reason1}',
1764
+ fmt_meeting_mainwindow_topbar_left_popup_label_meeting_num: 'Meeting number {reason1}',
1765
+ fmt_meeting_mainwindow_topbar_left_popup_label_meeting_password: 'Meeting password {reason1}',
1766
+ fmt_meeting_mainwindow_topbar_left_popup_label_link: 'Invitation link {reason1}',
1767
+ fmt_meeting_mainwindow_topbar_left_popup_label_all_info: 'Copy all information',
1768
+ fmt_meeting_call_voice_call_button_copy_info: 'Copy Meeting Information',
1769
+ fmt_link_invitation: '{reason1} invites you to join the meeting',
1770
+ fmt_link_invitation_topic: 'The meeting topic: {reason1}',
1771
+ fmt_link_invitation_time: 'The meeting time: {reason1}',
1772
+ fmt_link_invitation_link: 'The meeting link: {reason1}',
1773
+ fmt_link_invitation_id: 'The meeting ID: {reason1}',
1774
+ fmt_link_invitation_password: 'The meeting password: {reason1}',
1775
+ fmt_meeting_creatpage_toast_password_only_contain: 'Password can only contain numbers, letters and symbols',
1776
+ fmt_meeting_creatpage_toast_password_only_six: 'Membership password length is 6 digits',
1777
+ //****************** 翻译语言 ******************
1778
+ fmt_translate_language_chinese: 'Chinese',
1779
+ fmt_translate_language_english: 'English',
1780
+ fmt_translate_language_japanese: 'Japanese',
1781
+ fmt_translate_language_korean: 'Korean',
1782
+ fmt_translate_language_german: 'German',
1783
+ fmt_translate_language_french: 'French',
1784
+ fmt_translate_language_russian: 'Russian',
1785
+ fmt_translate_language_spanish: 'Spanish',
1786
+ fmt_translate_language_portuguese: 'Portuguese',
1787
+ fmt_translate_language_ilalian: 'Italian',
1788
+ fmt_translate_language_arabic: 'Arabic',
1789
+ fmt_translate_language_indonesian: 'Indonesian',
1790
+ fmt_translate_language_hindi: 'Hindi',
1791
+ fmt_translate_language_thai: 'Thai',
1792
+ fmt_translate_language_vietnamese: 'Vietnamese',
1793
+ fmt_translate_language_malay: 'Malay',
1794
+ fmt_translate_language_turkish: 'Turkish',
1795
+ fmt_translate_language_chinese_mini: '中',
1796
+ fmt_translate_language_english_mini: 'EN',
1797
+ fmt_translate_language_japanese_mini: 'JP',
1798
+ fmt_translate_language_korean_mini: 'KO',
1799
+ fmt_translate_language_german_mini: 'DE',
1800
+ fmt_translate_language_french_mini: 'FR',
1801
+ fmt_translate_language_russian_mini: 'RU',
1802
+ fmt_translate_language_spanish_mini: 'PT',
1803
+ fmt_translate_language_portuguese_mini: 'ES',
1804
+ fmt_translate_language_ilalian_mini: 'IT',
1805
+ fmt_translate_language_arabic_mini: 'AR',
1806
+ fmt_translate_language_indonesian_mini: 'ID',
1807
+ fmt_translate_language_hindi_mini: 'HI',
1808
+ fmt_translate_language_thai_mini: 'TH',
1809
+ fmt_translate_language_vietnamese_mini: 'VI',
1810
+ fmt_translate_language_malay_mini: 'MS',
1811
+ fmt_translate_language_turkish_mini: 'TR',
1812
+ //****************** 分组 ******************
1813
+
1814
+ // web
1815
+ fmt_group_mainwindow_sidebar_button_group_discuss: 'Breakout Groups',
1816
+ fmt_group_mainwindow_sidebar_label_group_discuss_on: 'Open Subgroup',
1817
+ fmt_group_mainwindow_sidebar_label_group_discuss_off: 'Close Subgroup',
1818
+ fmt_group_popup_creat_label_breakout_room: 'Breakout Groups',
1819
+ fmt_group_popup_creat_label_participant: 'Participants {reason1}',
1820
+ fmt_group_popup_creat_label_not_start: 'Not started',
1821
+ fmt_group_popup_creat_label_creat_breakout: 'Create',
1822
+ fmt_group_popup_creat_label_breakout_num: 'Breakout rooms',
1823
+ fmt_group_popup_creat_label_average_participant: 'Average {reason1} participants per group',
1824
+ fmt_group_popup_creat_label_auto_assign: 'Assign Automatically',
1825
+ fmt_group_popup_creat_label_manual_assign: 'Assign Manually',
1826
+ fmt_group_popup_creat_button_next_step: 'Next',
1827
+ fmt_group_popup_creat_button_cancle: 'Cancel',
1828
+ fmt_group_mainwindow_topbar_label_group_discuss_time: 'Duration of Group Discussion',
1829
+ fmt_group_mainwindow_toast_label_group_function_off: 'You have entered a group! Please note that some features are not available in the group!',
1830
+ fmt_group_mainwindow_sidebar_button_back_mainroom: 'Return to the main meeting room',
1831
+ fmt_group_popup_creat_next_label_ungrouped: 'Ungrouped',
1832
+ fmt_group_popup_creat_next_label_search: 'Search',
1833
+ fmt_group_popup_creat_next_label_breakout_room: 'Breakout Groups',
1834
+ fmt_group_popup_creat_next_label_breakout_room_num: 'Breakout Groups {reason1}',
1835
+ fmt_group_popup_creat_next_label_not_start: 'Not started',
1836
+ fmt_group_popup_creat_next_button_assign: 'Assign',
1837
+ fmt_group_popup_creat_next_label_may_set_feature: '{reason1}and other {reason1}people may be setting up this feature',
1838
+ fmt_group_popup_creat_next_search_label_search: 'Search for members',
1839
+ fmt_group_popup_creat_next_search_button_sure: 'Determine',
1840
+ fmt_group_popup_creat_next_search_label_no_data: 'No data',
1841
+ fmt_group_popup_creat_next_namebar_button_drag_to_group: 'Drag to group',
1842
+ fmt_group_popup_creat_next_button_add_breakroom: 'Add Group',
1843
+ fmt_group_popup_creat_next_label_add_one: 'Add 1 new group',
1844
+ fmt_group_popup_creat_next_button_re_creat: 'Re-create',
1845
+ fmt_group_popup_creat_next_button_start_group: 'Starting a Discussion',
1846
+ fmt_group_popup_creat_next_label_breakroom_limitation: 'Add Breakout Groups (limit 50)',
1847
+ fmt_group_popup_creat_next_namebar_button_remove: 'Remove',
1848
+ fmt_group_popup_creat_next_namebar_button_move_to: 'Move to',
1849
+ fmt_group_popup_creat_next_namebar_popup_label_move_to: 'Move to',
1850
+ fmt_group_popup_creat_next_recreat_label_recreat_caution: 'Recreating overwrites the current group',
1851
+ fmt_group_popup_creat_next_recreat_label_creat_num: 'Create {reason1} breakout groups',
1852
+ fmt_group_popup_creat_next_recreat_label_auto_creat: 'Automatic assignment',
1853
+ fmt_group_popup_creat_next_recreat_label_manual_creat: 'Manual Assignment',
1854
+ fmt_group_popup_creat_next_recreat_label_allow_choose: 'Allows attendees to select breakout groups',
1855
+ fmt_group_popup_creat_next_recreat_button_recreat: 'Re-create',
1856
+ fmt_group_popup_creat_next_group_name_label_rename: 'Rename',
1857
+ fmt_group_popup_creat_next_group_name_popup_label_rename: 'Renames the group',
1858
+ fmt_group_popup_creat_next_group_name_popup_button_cancel: 'Cancel',
1859
+ fmt_group_popup_creat_next_group_name_popup_button_rename: 'Rename',
1860
+ fmt_group_popup_creat_next_group_name_popup_label_enter: 'Please enter',
1861
+ fmt_group_popup_creat_next_group_name_label_delete: 'Delete group',
1862
+ fmt_group_popup_creat_next_group_name_popup_label_delete: 'Are you sure you want to delete?',
1863
+ fmt_group_popup_creat_next_group_name_popup_button_cancel_delete: 'Cancel',
1864
+ fmt_group_popup_creat_next_group_name_popup_button_delete: 'Confirm deletion',
1865
+ fmt_group_popup_creat_next_label_creat_started: 'Started',
1866
+ fmt_group_popup_creat_next_group_name_popup_button_join: 'Join',
1867
+ fmt_group_popup_creat_next_label_people_num: '{reason1}People',
1868
+ fmt_group_popup_creat_next_sidpop_label_setting: 'Settings',
1869
+ fmt_group_popup_creat_next_sidpop_label_auto_move_assigned: 'Automatically move assigned attendees to a breakout group',
1870
+ fmt_group_popup_creat_next_sidpop_label_allow_select_group: 'Allow attendees to select groups',
1871
+ fmt_group_popup_creat_next_sidpop_label_allow_back_main: 'Allow attendees to return to the main room at any time',
1872
+ fmt_group_popup_creat_next_sidpop_label_auto_stop_time: 'Automatically end the discussion after {reason1} minutes.',
1873
+ fmt_group_popup_creat_next_sidpop_label_auto_stop_time_announce: 'Automatically end discussion after {reason1} minutes (notify the meeting administrator when discussion ends)',
1874
+ fmt_group_popup_creat_next_sidpop_label_countdown: 'When the discussion ends after a group, ',
1875
+ fmt_group_popup_creat_next_sidpop_label_countdown_to_main: 'members will automatically return to the main meeting room after a countdown of {reason1} seconds.',
1876
+ fmt_group_popup_creat_next_button_help_list: 'Help list {reason1}',
1877
+ fmt_group_popup_creat_next_sidpop_label_help_list: 'Help list{reason1}',
1878
+ fmt_group_popup_creat_next_sidpop_button_help_ignore: 'Ignore',
1879
+ fmt_group_popup_creat_next_sidpop_label_help_join: 'Join',
1880
+ fmt_group_popup_creat_next_sidpop_label_help_num: '{reason1}People asking for help',
1881
+ fmt_group_popup_creat_next_sidpop_label_no_help_call: 'No help requests',
1882
+ fmt_group_popup_creat_next_button_message_to_all: 'Message to all',
1883
+ fmt_group_popup_creat_next_message_label_message_to_all: 'Send a message to everyone',
1884
+ fmt_group_popup_creat_next_message_label_enter: 'Please enter',
1885
+ fmt_group_popup_creat_next_message_button_cancel: 'Cancel',
1886
+ fmt_group_popup_creat_next_message_button_send: 'Send',
1887
+ fmt_group_mainwindow_label_message_sent: 'Message sent to all members',
1888
+ fmt_group_mainwindow_sidebar_popup_label_group_request: '{reason1} A group has requested you to join the group:',
1889
+ fmt_group_popup_creat_next_label_stop_disscussion: 'Stop discussion',
1890
+ fmt_group_popup_creat_next_stop_popup_label_stop_disscussion: 'Confirmation to end the breakout session?',
1891
+ fmt_group_popup_creat_next_stop_popup_label_stop_back_mian: 'When finished, all members will return to the main meeting room',
1892
+ fmt_group_popup_creat_next_stop_popup_button_cancel: 'Cancel',
1893
+ fmt_group_popup_creat_next_stop_popup_button_comfire: 'Confirm end',
1894
+ fmt_group_mainwindow_sidebar_label_someone_ask_help: 'Someone in the breakout group is looking for help',
1895
+ fmt_group_mainwindow_sidebar_label_ask_admin_for_help: 'The conference has breakout groups enabled, you can ask the conference administrator for help here',
1896
+ fmt_group_mainwindow_sidebar_button_ask_help: 'Ask for help',
1897
+ fmt_group_mainwindow_sidebar_label_click_ask_help: 'Click on Request help from conference administrator',
1898
+ fmt_group_mainwindow_sidebar_label_ask_help_already: 'A request for help has been made to the conference administrator',
1899
+ fmt_group_mainwindow_sidebar_label_asking_click_to_cancel: 'Click to cancel the help request',
1900
+ fmt_group_mainwindow_sidebar_label_click_to_cancel: 'Click again to cancel the request.',
1901
+ fmt_group_mainwindow_sidebar_label_in_breakroom_function_not_available: 'You are now in a group! Please note that some functions are not available in the group.',
1902
+ fmt_group_mainwindow_sidebar_button_leave_group: 'Leave Group',
1903
+ fmt_group_mainwindow_sidebar_button_back_to_main: 'Back to the main meeting room',
1904
+ fmt_group_mainwindow_label_host_in: 'host {reason1} enters our group',
1905
+ fmt_group_mainwindow_label_co_host_in: 'Co-host {reason1} enters our group',
1906
+ fmt_group_mainwindow_label_host_out: 'host {reason1} leaves our group',
1907
+ fmt_group_mainwindow_label_co_host_out: 'Co-host {reason1}leaves our group',
1908
+ fmt_group_mainwindow_popup_label_group_invitation: 'You are invited to join a breakout group',
1909
+ fmt_group_mainwindow_popup_label_group_assgined: 'You have been assigned to a breakout group: {reason1}',
1910
+ fmt_group_mainwindow_popup_button_cancel: 'Cancel',
1911
+ fmt_group_mainwindow_popup_button_join: 'Join',
1912
+ fmt_group_mainwindow_sidebar_label_goup_function_on_click_to_join: 'The meeting has turned on the breakout group feature, you can enter the subgroup here',
1913
+ fmt_group_mainwindow_leave_popup_label_leave_meeting: 'Leaving the meeting',
1914
+ fmt_group_mainwindow_leave_popup_label_leave_meeting_befor_finish: 'Are you sure you want to leave the meeting?',
1915
+ fmt_group_mainwindow_leave_popup_button_leave_meeting: 'Leave the meeting',
1916
+ fmt_group_mainwindow_leave_breakout_popup_label_leave_breakroom: 'Leaving a breakout group',
1917
+ fmt_group_mainwindow_leave_breakout_popup_label_leave_meeting_or_back_main: 'You can either return to the main meeting room or leave the meeting.',
1918
+ fmt_group_mainwindow_leave_breakout_popup_button_back_to_main: 'Return to the main meeting room',
1919
+ fmt_group_mainwindow_leave_breakout_popup_button_leave_meeting: 'Leaving the meeting',
1920
+ fmt_group_mainwindow_sidebar_button_cancel: 'Cancel',
1921
+ fmt_group_popup_breakout_room_label_my_group: 'My Group',
1922
+ fmt_group_popup_breakout_room_label_breakout_room: 'Breakout Rooms',
1923
+ fmt_group_popup_breakout_room_button_join: 'Join',
1924
+ fmt_group_popup_breakout_room_label_search: 'Search',
1925
+ fmt_group_popup_breakout_room_label_none: 'None',
1926
+ fmt_group_mainwindow_not_placed_popup_label_not_placed: 'Not placed in any of the breakout groups',
1927
+ fmt_group_mainwindow_not_placed_popup_label_contact_admin: 'Please contact the conference administrator',
1928
+ fmt_group_mainwindow_not_placed_popup_button_i_know: 'I got it',
1929
+ fmt_group_mainwindow_end_breakout_room_popup_label_session_end: 'End of breakout session',
1930
+ fmt_group_mainwindow_end_breakout_room_popup_label_stop_immediately: 'The end of the breakout session has arrived, do you want to end all discussions immediately?',
1931
+ fmt_group_mainwindow_end_breakout_room_popup_button_continue: 'Continue Discussion',
1932
+ fmt_group_mainwindow_end_breakout_room_popup_button_end: 'End immediately',
1933
+ fmt_group_mainwindow_label_continue_by_host: 'The host has continued the time-delayed breakout function',
1934
+ fmt_group_mainwindow_label_continue_by_co_host: 'Contact the host to continue a time-delayed breakout',
1935
+ fmt_group_mainwindow_label_end_by_host: 'The host has ended the breakout function',
1936
+ fmt_group_mainwindow_label_end_by_co_host: 'Co-host has ended the grouping',
1937
+ fmt_group_mainwindow_label_times_up_auto_end_group: 'Time is up and the breakout has ended automatically',
1938
+ fmt_group_mainwindow_breakout_room_count_popup_label_discuss_end: 'End of Group Discussion',
1939
+ fmt_group_mainwindow_breakout_room_count_popup_label_discuss_end_immediately: 'Time is up for the end of the breakout session, do you want to end all discussions immediately?',
1940
+ fmt_group_mainwindow_breakout_room_count_popup_button_i_know: "I've got it",
1941
+ fmt_group_mainwindow_breakout_room_count_popup_button_back_main: 'Return to the main room',
1942
+ fmt_group_popup_creat_next_label_end_after_count: 'All breakout sessions will end automatically after the countdown.',
1943
+ fmt_group_popup_creat_next_label_back_main_after_count_auto: 'You will return to the main room',
1944
+ //移动
1945
+ fmt_mobile_group_function_button_breakout_group: 'Breakout Group',
1946
+ fmt_mobile_group_sidebar_button_leave_group: 'Leaving Group',
1947
+ fmt_mobile_group_creat_label_creat_group: 'Create Grouping',
1948
+ fmt_mobile_group_creat_label_creat_group_num: 'Number of Subgroups',
1949
+ fmt_mobile_group_creat_label_avg_group_num: 'Average of {reason1} attendees per group',
1950
+ fmt_mobile_group_creat_label_group_format: 'Group Format',
1951
+ fmt_mobile_group_creat_label_random_group: 'Randomized',
1952
+ fmt_mobile_group_creat_label_participant_choose: 'Participants choose their own group',
1953
+ fmt_mobile_group_creat_label_group_setting: 'Group Settings',
1954
+ fmt_mobile_group_creat_label_allow_return_main_anytime: 'Allow participants to return to the main room at any time',
1955
+ fmt_mobile_group_creat_label_set_timer: 'Setting the length of discussion (automatic end)',
1956
+ fmt_mobile_group_creat_label_timer: 'Minutes',
1957
+ fmt_mobile_group_creat_label_set_timer_after_finish: 'Sets the number of seconds after which members will automatically return to the main meeting room when the group discussion ends.',
1958
+ fmt_mobile_group_creat_label_count_down: 'Countdown',
1959
+ fmt_mobile_group_creat_label_auto_move_assigned_in_group: 'Automatically moves assigned attendees to breakout groups',
1960
+ fmt_mobile_group_creat_label_allow_participant_select_group: 'Allow attendees to select a discussion group',
1961
+ fmt_mobile_group_creat_button_start_group: 'Start Group',
1962
+ fmt_mobile_group_breakout_room_label_breakout_group: 'Breakout groups',
1963
+ fmt_mobile_group_breakout_room_label_started: 'Started',
1964
+ fmt_mobile_group_breakout_room_label_search: 'Search',
1965
+ fmt_mobile_group_breakout_room_button_send_group_message: 'Sends group message',
1966
+ fmt_mobile_group_breakout_room_button_end_group: 'End group',
1967
+ fmt_mobile_group_breakout_room_label_not_in: 'Not in ',
1968
+ fmt_mobile_group_breakout_room_button_join: 'Join',
1969
+ fmt_mobile_group_breakout_room_label_not_grouped: '{reason1} participants not grouped',
1970
+ fmt_mobile_group_help_label_help_list: 'Help list {reason1}',
1971
+ fmt_mobile_group_help_button_go_to: 'Go To',
1972
+ fmt_mobile_group_help_button_not_now: 'Not Now',
1973
+ fmt_mobile_group_invitation_popup_label_invitation_announce: 'You are invited to join a breakout group',
1974
+ fmt_mobile_group_invitation_popup_label_assigned_already: 'You have been assigned to a subgroup discussion: {reason1}',
1975
+ fmt_mobile_mainwindow_group_invitation_popup_button_cancel: 'Cancel',
1976
+ fmt_mobile_mainwindow_group_invitation_popup_button_join: 'Join',
1977
+ fmt_mobile_mainwindow_group_invitation_label_breakout_on_join_here: 'The conference has enabled breakout groups, you can enter a group here',
1978
+ fmt_mobile_mainwindow_group_leave_label_leave_group: 'Leave a Breakout Group',
1979
+ fmt_mobile_mainwindow_group_leave_label_leave_meeting_or_back_main: 'You can return to the main meeting room, or just leave the meeting.',
1980
+ fmt_mobile_mainwindow_group_leave_button_back_main: 'Return to the main meeting room',
1981
+ fmt_mobile_mainwindow_group_leave_button_leave_meeting: 'Leave the meeting',
1982
+ fmt_mobile_mainwindow_group_leave_label_leave_group_means_leave_meeting: 'The meeting is set to leave the breakout group i.e. leave the meeting, are you sure you want to leave the meeting now?',
1983
+ fmt_mobile_mainwindow_group_leave_button_leave_the_meeting: 'Leave the meeting',
1984
+ fmt_mobile_mainwindow_group_help_label_breakout_on_ask_help_here: 'The meeting has breakout groups enabled, you can ask the meeting administrator for help here.',
1985
+ fmt_mobile_mainwindow_group_select_label_select_group: 'Select a Breakout Group',
1986
+ fmt_mobile_mainwindow_group_select_label_my_group: 'My Groups',
1987
+ fmt_mobile_mainwindow_group_select_label_search: 'Search',
1988
+ fmt_mobile_mainwindow_group_select_button_join: 'Join',
1989
+ fmt_mobile_mainwindow_group_select_label_not_joined: '(not joined)',
1990
+ fmt_mobile_mainwindow_group_not_assigned_label_not_assgined: 'Not placed in any of the subgroups',
1991
+ fmt_mobile_mainwindow_group_not_assigned_label_contact_admin: 'Could you please contact the conference administrator',
1992
+ fmt_mobile_mainwindow_group_not_assigned_button_i_know: 'I got it',
1993
+ fmt_mobile_mainwindow_group_help_label_ask_help: 'Request help',
1994
+ fmt_mobile_mainwindow_group_help_label_ask_help_from_admin: 'You can invite the conference administrator into the breakout group to help you.',
1995
+ fmt_mobile_mainwindow_group_help_button_cancel: 'Cancel',
1996
+ fmt_mobile_mainwindow_group_help_button_send_invitation: 'Send invitation',
1997
+ fmt_mobile_mainwindow_group_help_label_click_again_cancel: 'Click again to cancel the “Help Request”.',
1998
+ fmt_mobile_mainwindow_group_help_label_ask_already: 'Request for help has been sent to the meeting administrator',
1999
+ fmt_mobile_mainwindow_group_help_label_already_help_inactive: 'The conference administrator is already in the group and the help function is not available at the moment',
2000
+ fmt_mobile_mainwindow_group_help_label_co_host_in: 'Co-host {reason1} enters our group',
2001
+ fmt_mobile_mainwindow_group_help_label_host_in: 'Co-host {reason1} entered our group',
2002
+ fmt_mobile_mainwindow_group_help_label_co_host_out: 'Co-host {reason1} left our group',
2003
+ fmt_mobile_mainwindow_group_help_label_host_out: 'host {reason1} left our group',
2004
+ fmt_mobile_mainwindow_group_help_label_enter_group_function_off: 'You have entered a group! Please note that some functions are not available in the group.',
2005
+ fmt_mobile_mainwindow_group_down_popbar_ask_help: 'From ask for help',
2006
+ fmt_mobile_mainwindow_group_down_popbar_join: 'Floating window below Join',
2007
+ fmt_mobile_mainwindow_group_down_popbar_ignore: 'Ignore',
2008
+ fmt_mobile_group_breakout_room_label_join: 'Join',
2009
+ fmt_mobile_chat_label_sent_to: 'Send to:',
2010
+ fmt_mobile_chat_label_sent_to_meeting: 'Meeting in',
2011
+ fmt_mobile_chat_label_sent_to_waiting_room: 'WT',
2012
+ fmt_mobile_chat_label_sent_to_all: 'All',
2013
+ fmt_mobile_group_breakout_room_label_message_sent: 'Message sent to all members',
2014
+ fmt_mobile_chat_label_breakout_group_message: 'Breakout group message',
2015
+ fmt_mobile_group_breakout_room_label_end_group: 'Sure you want to end the breakout group?',
2016
+ fmt_mobile_group_breakout_room_label_back_main_after_end: 'When finished, all members will return to the main room',
2017
+ fmt_mobile_group_breakout_room_button_cancel: 'Cancel',
2018
+ fmt_mobile_group_breakout_room_button_comfirm: 'OK to end',
2019
+ fmt_mobile_mainwindow_group_popup_label_group_finish: 'End of breakout session',
2020
+ fmt_mobile_mainwindow_group_popup_label_group_finish_end_immediately: 'The end of the breakout session has arrived, do you want to end all discussions immediately?',
2021
+ fmt_mobile_mainwindow_group_popup_button_continue: 'Continue Discussion',
2022
+ fmt_mobile_mainwindow_group_popup_button_end: 'End immediately',
2023
+ fmt_mobile_mainwindow_label_host_continue: 'The host has continued the time-delayed breakout function',
2024
+ fmt_mobile_mainwindow_label_co_host_continue: 'The co-host has continued the time-delayed breakout function',
2025
+ fmt_mobile_mainwindow_label_host_end: 'The host has ended the breakout',
2026
+ fmt_mobile_mainwindow_label_co_host_end: 'The co-host has ended the grouping',
2027
+ fmt_mobile_mainwindow_label_times_up_finish_auto: 'Grouping time is up and the grouping has ended automatically',
2028
+ fmt_mobile_mainwindow_down_popup_label_group_end: 'End of Group Discussion',
2029
+ fmt_mobile_mainwindow_down_popup_label_group_end_immediately: 'The end time of the breakout session is up, do you want to end all the discussions immediately?',
2030
+ fmt_mobile_mainwindow_down_popup_button_back_main: 'Return to the main meeting room',
2031
+ fmt_mobile_mainwindow_down_popup_button_i_know: 'I know',
2032
+ fmt_mobile_group_breakout_room_label_finishi_after_timer: 'All breakout sessions will end automatically after the countdown.',
2033
+ fmt_mobile_group_breakout_room_label_back_main_auto: 'You will return to the main automated session',
2034
+ fmt_mobile_group_breakout_room_button_leave_group: 'Leave the breakout group',
2035
+ //****************** h5 单补 ******************
2036
+ fmt_h_label_more_function: 'More Function',
2037
+ fmt_h_label_tempor_hide_screen_share: 'When sharing the screen, other participants will be temporarily hidden.',
2038
+ fmt_h_label_tempor_hide_white_board: 'When sharing the whiteboard, other participants will be temporarily hidden.',
2039
+ fmt_h_tips_host_enabled_waiting_room: 'The host has enabled the waiting room, and you cannot join the meeting at the moment.',
2040
+ fmt_h_tips_tap_to_play: 'Tap to play',
2041
+ //****************** 错误信息 ******************
2042
+ fmt_pc_room_not_exist_error: 'The room does not exist or the password is wrong',
2043
+ fmt_lock_error: 'The host has locked the meeting and no one else can join',
2044
+ fmt_end_error: 'The meeting has ended',
2045
+ fmt_host_leave_error: 'The moderator is not in the meeting',
2046
+ //****************** hostkey ******************
2047
+ fmt_hostkey_window_title_reclaim_host: 'Reclaim host role',
2048
+ fmt_hostkey_window_content_reclaim_host: '{reason1} is the current host.Reclaiming might cause interruption',
2049
+ fmt_hostkey_window_button_reclaim_host: 'Reclaim host role',
2050
+ fmt_hostkey_window_button_remain_cohost: 'Remain Co-host',
2051
+ fmt_hostkey_window_button_remain_attendees: 'Remain Attendees',
2052
+ fmt_hostkey_meetingroom_toast_now_host: 'You are now the host',
2053
+ fmt_hostkey_participant_button_reclaim_host: 'Reclaim host role',
2054
+ fmt_hostkey_participant_button_claim_host: 'Claim host role',
2055
+ fmt_hostkey_input_hostkey_title_enter_key: 'Enter host key to claim host role',
2056
+ fmt_hostkey_input_hostkey_text_hint_enter_key: 'Enter host key',
2057
+ fmt_hostkey_input_hostkey_button_cancel: 'Cancel',
2058
+ fmt_hostkey_input_hostkey_button_ok: 'OK',
2059
+ fmt_hostkey_input_hostkey_tips_incorrect_key: 'Incorrect host key',
2060
+ fmt_hostkey_meetingroom_toast_unable_to_claim_host: 'Unable to claim host role because there is already a host in the meeting',
2061
+ //****************** JBH ******************
2062
+ fmt_jbh_title_host_not_in_meeting: 'The meeting has not started yet',
2063
+ fmt_jbh_title_host_in_meeting: 'Please wait.The host will let you into the meeting soon.',
2064
+ fmt_jbh_title_meeting_topic: 'Meeting Topic',
2065
+ fmt_jbh_toast_meeting_not_start: "The meeting hasn't started yet. Please try again later.",
2066
+ //****************** APPS ******************
2067
+ fmt_apps_button_automatic_screenshot: 'Automatic screenshot​​',
2068
+ //****************** Webinar ******************
2069
+ fmt_webinar_tips_welcome_greetings: '{英文欢迎语} ',
2070
+ fmt_echo_window_label_echo_in_environment: 'Echo in the Current Environment',
2071
+ fmt_echo_window_label_disconect_audio: 'Disconect the audio turn off the microphone and speaker.',
2072
+ fmt_echo_window_button_cancel: 'Cancel',
2073
+ fmt_echo_window_button_disconnect: 'Disconnect',
2074
+ fmt_mute_toast_yr_on_mute: "You're on mute, please unmute."
2075
+ };