fcr-ui-scene 3.8.1-beta → 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 (1039) hide show
  1. package/lib/base.js +2 -2
  2. package/lib/creator/provider-initializer.browser.js +8 -7
  3. package/lib/creator/provider-initializer.electron.js +8 -8
  4. package/lib/electron/asar-validation.d.ts +12 -0
  5. package/lib/electron/asar-validation.js +115 -0
  6. package/lib/electron/bootstrap-sdk.js +20 -12
  7. package/lib/electron/default-options.js +2 -1
  8. package/lib/electron/env.d.ts +1 -0
  9. package/lib/electron/env.js +6 -4
  10. package/lib/electron/exit-codes.js +11 -11
  11. package/lib/electron/hang-detection/manager.js +4 -4
  12. package/lib/electron/ipc-protocol.js +12 -12
  13. package/lib/electron/process-manager/event-manager.js +30 -30
  14. package/lib/electron/process-manager/index.js +88 -88
  15. package/lib/electron/process-manager/state-manager.js +57 -57
  16. package/lib/electron/process-manager/types.js +16 -16
  17. package/lib/electron/sdk-helper.js +3 -3
  18. package/lib/electron/window-proxy/browser-window-proxy.js +13 -13
  19. package/lib/electron/window-proxy/main-process-handler.js +14 -14
  20. package/lib/fragments/annotation/style.css +9 -9
  21. package/lib/fragments/annotation/toolbar/components/item/style.css +45 -45
  22. package/lib/fragments/annotation/toolbar/components/panel/style.css +24 -24
  23. package/lib/fragments/annotation/toolbar/components/tips/style.css +19 -19
  24. package/lib/fragments/annotation/toolbar/style.css +55 -55
  25. package/lib/fragments/whiteboard/cursor.css +77 -77
  26. package/lib/fragments/whiteboard/style.css +4 -4
  27. package/lib/global.css +62 -62
  28. package/lib/global.d.ts +27 -27
  29. package/lib/index.js +9 -1
  30. package/lib/modules/action-bar/components/chat/index.css +88 -88
  31. package/lib/modules/action-bar/components/more/index.css +114 -114
  32. package/lib/modules/action-bar/components/notification-bar/components/interpreter/index.css +58 -58
  33. package/lib/modules/action-bar/components/notification-bar/components/virtual-image/index.css +56 -56
  34. package/lib/modules/action-bar/components/notification-bar/index.css +74 -74
  35. package/lib/modules/action-bar/components/participants/index.css +21 -21
  36. package/lib/modules/action-bar/components/record/index.css +39 -39
  37. package/lib/modules/action-bar/components/trigger-output-language/index.css +86 -86
  38. package/lib/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.css +22 -22
  39. package/lib/modules/action-bar/index.css +358 -358
  40. package/lib/modules/action-bar/main-scene/store.base.d.ts +3 -2
  41. package/lib/modules/action-bar/main-scene/store.base.js +29 -57
  42. package/lib/modules/action-bar/main-scene/view.js +3 -3
  43. package/lib/modules/audio-stream/index.js +3 -3
  44. package/lib/modules/caption/draggable-container/index.css +10 -10
  45. package/lib/modules/caption/view.css +158 -158
  46. package/lib/modules/chat/components/chat-bar/index.css +89 -89
  47. package/lib/modules/chat/components/chat-select/index.css +185 -185
  48. package/lib/modules/chat/index.css +124 -124
  49. package/lib/modules/components/apps/app-item/index.css +49 -49
  50. package/lib/modules/components/apps/index.css +9 -9
  51. package/lib/modules/components/caption-menu/index.css +58 -58
  52. package/lib/modules/components/caption-menu/steps/index.css +73 -73
  53. package/lib/modules/components/control-bar/components/loading/index.css +76 -76
  54. package/lib/modules/components/control-bar/components/progress/style.css +51 -51
  55. package/lib/modules/components/control-bar/components/switch-theme/index.css +101 -101
  56. package/lib/modules/components/control-bar/index.css +99 -99
  57. package/lib/modules/components/device-control/index.css +177 -177
  58. package/lib/modules/components/leave-meeting/components/index.css +151 -151
  59. package/lib/modules/components/leave-meeting/style.css +9 -9
  60. package/lib/modules/components/member-window/components/member-actions/store.js +22 -22
  61. package/lib/modules/components/member-window/index.css +502 -502
  62. package/lib/modules/components/security-menu/index.css +42 -42
  63. package/lib/modules/components/tab-frame/index.css +40 -40
  64. package/lib/modules/components/toolbar/components/item/style.css +94 -94
  65. package/lib/modules/components/toolbar/components/panel/style.css +86 -86
  66. package/lib/modules/components/toolbar/style.css +85 -85
  67. package/lib/modules/connection-gateway/components/computer/index.css +12 -12
  68. package/lib/modules/connection-gateway/components/phone/components/callinfo/index.css +36 -36
  69. package/lib/modules/connection-gateway/components/phone/components/calling/index.css +72 -72
  70. package/lib/modules/connection-gateway/components/phone/components/remeber/index.css +10 -10
  71. package/lib/modules/connection-gateway/components/phone/components/useing/index.css +46 -46
  72. package/lib/modules/connection-gateway/components/phone/index.css +49 -49
  73. package/lib/modules/connection-gateway/index.css +6 -6
  74. package/lib/modules/control-bar/components/meeting-details/index.css +133 -133
  75. package/lib/modules/control-bar/components/more-actions/index.css +103 -103
  76. package/lib/modules/control-bar/components/share-audio/index.css +90 -90
  77. package/lib/modules/control-bar/components/share-state-nav/index.css +79 -79
  78. package/lib/modules/control-bar/index.css +340 -340
  79. package/lib/modules/control-bar/index.js +4 -4
  80. package/lib/modules/device-pretest/index.css +123 -123
  81. package/lib/modules/dialog/components/confirm/index.css +24 -24
  82. package/lib/modules/dialog/components/dialog-container/index.css +112 -112
  83. package/lib/modules/dialog/dialogs/confirm/index.css +24 -24
  84. package/lib/modules/dialog/dialogs/connection-gateway/tabs.js +14 -12
  85. package/lib/modules/dialog/dialogs/device-setting/index.css +26 -26
  86. package/lib/modules/dialog/dialogs/interpreter/index.css +30 -30
  87. package/lib/modules/dialog/dialogs/mute-all/index.css +20 -20
  88. package/lib/modules/dialog/dialogs/system-preference/index.css +52 -52
  89. package/lib/modules/dialog/dialogs/widget/index.js +4 -4
  90. package/lib/modules/dialog/index.css +56 -56
  91. package/lib/modules/event-toast/index.css +25 -25
  92. package/lib/modules/interpreter/action/add-btn/index.css +4 -4
  93. package/lib/modules/interpreter/action/delete-btn/index.css +14 -14
  94. package/lib/modules/interpreter/action/switch-btn/index.css +3 -3
  95. package/lib/modules/interpreter/dialog-content/index.css +33 -33
  96. package/lib/modules/interpreter/footer/index.css +11 -11
  97. package/lib/modules/interpreter/index.css +4 -4
  98. package/lib/modules/interpreter/interpreter-list/index.css +8 -8
  99. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/index.css +46 -46
  100. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/index.css +46 -46
  101. package/lib/modules/interpreter/interpreter-list/interpreter-item/index.css +32 -32
  102. package/lib/modules/interpreter/loading-wrapper/index.css +53 -53
  103. package/lib/modules/invite/components/pstn-invite.js +1 -1
  104. package/lib/modules/invite/components/voip-invite.css +26 -26
  105. package/lib/modules/invite/index.css +331 -331
  106. package/lib/modules/invite/index.d.ts +4 -1
  107. package/lib/modules/invite/index.js +5 -2
  108. package/lib/modules/invite/store.d.ts +4 -0
  109. package/lib/modules/invite/store.js +48 -9
  110. package/lib/modules/invite/view.d.ts +4 -1
  111. package/lib/modules/invite/view.js +25 -10
  112. package/lib/modules/layout/components/CommonVideoRenderer.js +4 -4
  113. package/lib/modules/layout/components/index.css +653 -653
  114. package/lib/modules/layout/index.css +59 -59
  115. package/lib/modules/layout/store.base.js +5 -5
  116. package/lib/modules/layout/type.js +5 -5
  117. package/lib/modules/notification/index.css +77 -77
  118. package/lib/modules/notification/interpreter-status/index.css +76 -76
  119. package/lib/modules/participant/components/confirm-input/index.css +4 -4
  120. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +83 -83
  121. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +87 -87
  122. package/lib/modules/participant/index.css +102 -102
  123. package/lib/modules/participant/store.base.js +175 -175
  124. package/lib/modules/pc-audio-connect/index.css +12 -12
  125. package/lib/modules/pc-audio-connect/main-scene/index.d.ts +1 -1
  126. package/lib/modules/pc-audio-connect/main-scene/index.js +2 -3
  127. package/lib/modules/pc-audio-connect/main-scene/store.js +1 -0
  128. package/lib/modules/phone-audio-connect/components/callinfo/index.css +36 -36
  129. package/lib/modules/phone-audio-connect/components/calling/index.css +72 -72
  130. package/lib/modules/phone-audio-connect/components/remeber/index.css +10 -10
  131. package/lib/modules/phone-audio-connect/components/useing/index.css +46 -46
  132. package/lib/modules/phone-audio-connect/index.css +56 -56
  133. package/lib/modules/secondary-window/store.js +7 -7
  134. package/lib/modules/setting/audio-settings/index.css +195 -195
  135. package/lib/modules/setting/audio-whiteList/audio-device-adaptation.js +14 -14
  136. package/lib/modules/setting/audio-whiteList/audio-whiteList-manager.js +6 -6
  137. package/lib/modules/setting/caption_and_transcribing/index.css +88 -88
  138. package/lib/modules/setting/general-settings/index.css +41 -41
  139. package/lib/modules/setting/index.css +112 -112
  140. package/lib/modules/setting/minutes-settings/index.css +65 -65
  141. package/lib/modules/setting/state/index.css +207 -207
  142. package/lib/modules/setting/storage-settings/index.css +91 -91
  143. package/lib/modules/setting/translate-settings/index.css +47 -47
  144. package/lib/modules/setting/video-settings/index.css +357 -357
  145. package/lib/modules/share-screen/components/control-bar/index.css +75 -75
  146. package/lib/modules/share-screen/components/selection/index.css +73 -73
  147. package/lib/modules/share-screen/components/share-state-bar/index.css +76 -76
  148. package/lib/modules/share-screen/index.js +10 -10
  149. package/lib/modules/share-screen/store.base.js +2 -2
  150. package/lib/modules/state-bar/assets/fcr_grid_big.svg +3 -3
  151. package/lib/modules/state-bar/assets/fcr_listontop_big.svg +3 -3
  152. package/lib/modules/state-bar/index.css +706 -706
  153. package/lib/modules/state-bar/main-scene/store.base.js +2 -2
  154. package/lib/modules/state-bar/meeting-detail.css +137 -137
  155. package/lib/modules/state-bar/meeting-network-state.css +150 -150
  156. package/lib/modules/state-bar/waiting-scene/store.base.js +2 -2
  157. package/lib/modules/subtitles-history/components/settings/index.css +5 -5
  158. package/lib/modules/subtitles-history/index.css +129 -129
  159. package/lib/modules/video-window/components/members/index.css +51 -51
  160. package/lib/modules/video-window/components/speaking/index.css +86 -86
  161. package/lib/modules/video-window/components/topControl/index.css +35 -35
  162. package/lib/modules/video-window/index.css +21 -21
  163. package/lib/modules/video-window/popover-watcher.js +3 -3
  164. package/lib/modules/video-window/store.js +10 -10
  165. package/lib/modules/waiting-room-layout/index.css +96 -96
  166. package/lib/modules/whiteboard/components/control-bar/index.css +52 -52
  167. package/lib/modules/whiteboard/components/loading/index.css +76 -76
  168. package/lib/modules/whiteboard/components/multi-window/index.css +63 -63
  169. package/lib/modules/whiteboard/components/pagination/index.css +228 -228
  170. package/lib/modules/whiteboard/components/progress/style.css +51 -51
  171. package/lib/modules/whiteboard/components/switch-theme/index.css +99 -99
  172. package/lib/modules/whiteboard/components/toolbar/style.css +591 -591
  173. package/lib/modules/whiteboard/style.css +140 -140
  174. package/lib/modules/widget/index.css +9 -9
  175. package/lib/modules/widget/index.d.ts +1 -0
  176. package/lib/modules/widget/index.js +16 -1
  177. package/lib/modules/widget/store.base.d.ts +1 -0
  178. package/lib/modules/widget/store.base.js +12 -0
  179. package/lib/modules/widget/store.electron.js +5 -0
  180. package/lib/modules/widget/web-widget.d.ts +6 -1
  181. package/lib/modules/widget/web-widget.js +66 -22
  182. package/lib/object-manager.js +8 -8
  183. package/lib/plugins/module-dev-plugin.js +11 -11
  184. package/lib/providers/ability-provider.js +17 -17
  185. package/lib/providers/app-list-provider.d.ts +1 -1
  186. package/lib/providers/app-list-provider.js +9 -7
  187. package/lib/providers/board-share/bar-control/base.d.ts +1 -1
  188. package/lib/providers/board-share/bar-control/browser.d.ts +1 -1
  189. package/lib/providers/board-share/bar-control/electron.d.ts +1 -1
  190. package/lib/providers/board-share/struct.js +6 -6
  191. package/lib/providers/device-stream-provider.d.ts +1 -1
  192. package/lib/providers/dialog/provider.base.js +2 -2
  193. package/lib/providers/dialog/type.js +3 -3
  194. package/lib/providers/multi-display-provider.js +4 -4
  195. package/lib/providers/privilege-provider.js +7 -7
  196. package/lib/providers/screen-share/provider.base.js +23 -23
  197. package/lib/providers/screen-share/stream-state-sync.js +18 -18
  198. package/lib/providers/screen-share/struct.js +24 -24
  199. package/lib/providers/widget-provider.d.ts +13 -2
  200. package/lib/providers/widget-provider.js +60 -9
  201. package/lib/providers/window/main-window.js +2 -2
  202. package/lib/providers/window/provider.js +5 -5
  203. package/lib/providers/window/renderer-window.js +2 -2
  204. package/lib/scenes/main-scene.js +3 -1
  205. package/lib/schema.js +26 -26
  206. package/lib/shared-data/app-list-data.d.ts +0 -3
  207. package/lib/shared-data/app-list-data.js +3 -30
  208. package/lib/shared-data/meeting-time.js +8 -8
  209. package/lib/shared-data/setting.js +3 -3
  210. package/lib/shared-data/video-window.d.ts +1 -1
  211. package/lib/shared-data/video-window.js +1 -1
  212. package/lib/shared-data/widget-data.d.ts +0 -1
  213. package/lib/type.d.ts +1 -0
  214. package/lib/type.js +23 -21
  215. package/lib/ui-scene-switch.js +2 -2
  216. package/lib/utilities/constant.js +6 -6
  217. package/lib/utilities/renderer.js +8 -8
  218. package/lib/utilities/shared-storage.js +2 -2
  219. package/lib/utilities/tools.js +14 -14
  220. package/lib-es/assets/mic-loading.gif +0 -0
  221. package/lib-es/base.js +335 -0
  222. package/lib-es/creator/index.js +543 -0
  223. package/lib-es/creator/provider-initializer.browser.js +322 -0
  224. package/lib-es/creator/provider-initializer.electron.js +359 -0
  225. package/lib-es/creator/type.js +1 -0
  226. package/lib-es/electron/app.js +247 -0
  227. package/lib-es/electron/asar-validation.js +106 -0
  228. package/lib-es/electron/bootstrap-dev.js +45 -0
  229. package/lib-es/electron/bootstrap-sdk.js +198 -0
  230. package/lib-es/electron/default-options.js +18 -0
  231. package/lib-es/electron/env.js +8 -0
  232. package/lib-es/electron/exit-codes.js +20 -0
  233. package/lib-es/electron/hang-detection/index.js +2 -0
  234. package/lib-es/electron/hang-detection/manager.js +225 -0
  235. package/lib-es/electron/hang-detection/types.js +1 -0
  236. package/lib-es/electron/index.js +2 -0
  237. package/lib-es/electron/injections.js +830 -0
  238. package/lib-es/electron/ipc/ipc.js +134 -0
  239. package/lib-es/electron/ipc/type.js +22 -0
  240. package/lib-es/electron/ipc-protocol.js +58 -0
  241. package/lib-es/electron/logger.js +57 -0
  242. package/lib-es/electron/main.js +116 -0
  243. package/lib-es/electron/plugins/devtool-shortcut.js +26 -0
  244. package/lib-es/electron/plugins/meeting-state.js +32 -0
  245. package/lib-es/electron/plugins/screenshot.js +46 -0
  246. package/lib-es/electron/preload.js +42 -0
  247. package/lib-es/electron/process-manager/constants.js +1 -0
  248. package/lib-es/electron/process-manager/event-manager.js +242 -0
  249. package/lib-es/electron/process-manager/index.js +842 -0
  250. package/lib-es/electron/process-manager/state-manager.js +354 -0
  251. package/lib-es/electron/process-manager/types.js +78 -0
  252. package/lib-es/electron/sdk-helper.js +305 -0
  253. package/lib-es/electron/struct.js +21 -0
  254. package/lib-es/electron/until.js +64 -0
  255. package/lib-es/electron/window-proxy/browser-window-proxy.js +720 -0
  256. package/lib-es/electron/window-proxy/main-process-handler.js +441 -0
  257. package/lib-es/electron/window.js +91 -0
  258. package/lib-es/fragments/annotation/index.js +130 -0
  259. package/lib-es/fragments/annotation/libs.js +86 -0
  260. package/lib-es/fragments/annotation/store.js +866 -0
  261. package/lib-es/fragments/annotation/style.css +9 -0
  262. package/lib-es/fragments/annotation/toolbar/components/color-tool/color-panel/index.js +40 -0
  263. package/lib-es/fragments/annotation/toolbar/components/color-tool/index.js +48 -0
  264. package/lib-es/fragments/annotation/toolbar/components/graphic-tool/graphic-panel/index.js +55 -0
  265. package/lib-es/fragments/annotation/toolbar/components/graphic-tool/graphic-panel/libs.js +57 -0
  266. package/lib-es/fragments/annotation/toolbar/components/graphic-tool/index.js +62 -0
  267. package/lib-es/fragments/annotation/toolbar/components/item/item.js +106 -0
  268. package/lib-es/fragments/annotation/toolbar/components/item/style.css +45 -0
  269. package/lib-es/fragments/annotation/toolbar/components/panel/index.js +15 -0
  270. package/lib-es/fragments/annotation/toolbar/components/panel/style.css +24 -0
  271. package/lib-es/fragments/annotation/toolbar/components/pen-tool/index.js +54 -0
  272. package/lib-es/fragments/annotation/toolbar/components/pen-tool/pen-panel/index.js +28 -0
  273. package/lib-es/fragments/annotation/toolbar/components/tips/index.js +18 -0
  274. package/lib-es/fragments/annotation/toolbar/components/tips/style.css +19 -0
  275. package/lib-es/fragments/annotation/toolbar/store.js +292 -0
  276. package/lib-es/fragments/annotation/toolbar/style.css +55 -0
  277. package/lib-es/fragments/annotation/toolbar/view.js +140 -0
  278. package/lib-es/fragments/annotation/utils.js +20 -0
  279. package/lib-es/fragments/annotation/view.js +59 -0
  280. package/lib-es/fragments/base.js +40 -0
  281. package/lib-es/fragments/whiteboard/cursor.css +77 -0
  282. package/lib-es/fragments/whiteboard/index.js +80 -0
  283. package/lib-es/fragments/whiteboard/store.js +487 -0
  284. package/lib-es/fragments/whiteboard/style.css +4 -0
  285. package/lib-es/fragments/whiteboard/view.js +24 -0
  286. package/lib-es/global.css +62 -0
  287. package/lib-es/global.d.ts +27 -0
  288. package/lib-es/hooks/i18n.js +10 -0
  289. package/lib-es/index.js +38 -0
  290. package/lib-es/modules/action-bar/components/apps/index.js +43 -0
  291. package/lib-es/modules/action-bar/components/board/index.js +25 -0
  292. package/lib-es/modules/action-bar/components/breakout-room/index.js +23 -0
  293. package/lib-es/modules/action-bar/components/chat/index.css +88 -0
  294. package/lib-es/modules/action-bar/components/chat/index.js +126 -0
  295. package/lib-es/modules/action-bar/components/collapse/index.js +203 -0
  296. package/lib-es/modules/action-bar/components/confirm-leave-meeting/index.js +70 -0
  297. package/lib-es/modules/action-bar/components/interpreter/index.js +34 -0
  298. package/lib-es/modules/action-bar/components/item/index.js +158 -0
  299. package/lib-es/modules/action-bar/components/leave/index.js +118 -0
  300. package/lib-es/modules/action-bar/components/live-streaming/index.js +32 -0
  301. package/lib-es/modules/action-bar/components/more/index.css +114 -0
  302. package/lib-es/modules/action-bar/components/more/index.js +79 -0
  303. package/lib-es/modules/action-bar/components/more/poppover-content.js +410 -0
  304. package/lib-es/modules/action-bar/components/notification-bar/assets/dome.png +0 -0
  305. package/lib-es/modules/action-bar/components/notification-bar/assets/fcr_translateswitch.png +0 -0
  306. package/lib-es/modules/action-bar/components/notification-bar/components/interpreter/index.css +58 -0
  307. package/lib-es/modules/action-bar/components/notification-bar/components/interpreter/index.js +93 -0
  308. package/lib-es/modules/action-bar/components/notification-bar/components/virtual-image/index.css +56 -0
  309. package/lib-es/modules/action-bar/components/notification-bar/components/virtual-image/index.js +25 -0
  310. package/lib-es/modules/action-bar/components/notification-bar/index.css +74 -0
  311. package/lib-es/modules/action-bar/components/notification-bar/index.js +96 -0
  312. package/lib-es/modules/action-bar/components/participants/index.css +21 -0
  313. package/lib-es/modules/action-bar/components/participants/index.js +52 -0
  314. package/lib-es/modules/action-bar/components/placement/index.js +10 -0
  315. package/lib-es/modules/action-bar/components/record/index.css +39 -0
  316. package/lib-es/modules/action-bar/components/record/index.js +89 -0
  317. package/lib-es/modules/action-bar/components/record/popover.js +50 -0
  318. package/lib-es/modules/action-bar/components/record/stop-record-dialog.js +41 -0
  319. package/lib-es/modules/action-bar/components/respond/index.js +25 -0
  320. package/lib-es/modules/action-bar/components/screen-share/index.browser.js +61 -0
  321. package/lib-es/modules/action-bar/components/screen-share/index.electron.js +78 -0
  322. package/lib-es/modules/action-bar/components/screen-share/index.js +4 -0
  323. package/lib-es/modules/action-bar/components/screen-share/submenu.js +219 -0
  324. package/lib-es/modules/action-bar/components/security/index.js +42 -0
  325. package/lib-es/modules/action-bar/components/settings/index.js +29 -0
  326. package/lib-es/modules/action-bar/components/smaller/index.js +45 -0
  327. package/lib-es/modules/action-bar/components/trigger-output-language/fcr_translateswitch.png +0 -0
  328. package/lib-es/modules/action-bar/components/trigger-output-language/index.css +86 -0
  329. package/lib-es/modules/action-bar/components/trigger-output-language/index.js +228 -0
  330. package/lib-es/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.css +22 -0
  331. package/lib-es/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.js +62 -0
  332. package/lib-es/modules/action-bar/components/trigger-subscribe-language/index.js +216 -0
  333. package/lib-es/modules/action-bar/constants.js +1 -0
  334. package/lib-es/modules/action-bar/enums.js +28 -0
  335. package/lib-es/modules/action-bar/index.css +358 -0
  336. package/lib-es/modules/action-bar/main-scene/index.js +123 -0
  337. package/lib-es/modules/action-bar/main-scene/store.base.js +1486 -0
  338. package/lib-es/modules/action-bar/main-scene/store.browser.js +105 -0
  339. package/lib-es/modules/action-bar/main-scene/store.electron.js +94 -0
  340. package/lib-es/modules/action-bar/main-scene/view.js +105 -0
  341. package/lib-es/modules/action-bar/type.js +6 -0
  342. package/lib-es/modules/action-bar/waiting-scene/index.js +94 -0
  343. package/lib-es/modules/action-bar/waiting-scene/store.base.js +88 -0
  344. package/lib-es/modules/action-bar/waiting-scene/store.browser.js +17 -0
  345. package/lib-es/modules/action-bar/waiting-scene/store.electron.js +37 -0
  346. package/lib-es/modules/action-bar/waiting-scene/view.js +116 -0
  347. package/lib-es/modules/audio-stream/index.js +393 -0
  348. package/lib-es/modules/caption/draggable-container/index.css +10 -0
  349. package/lib-es/modules/caption/draggable-container/index.js +159 -0
  350. package/lib-es/modules/caption/index.js +117 -0
  351. package/lib-es/modules/caption/store.js +352 -0
  352. package/lib-es/modules/caption/type.js +7 -0
  353. package/lib-es/modules/caption/view.css +158 -0
  354. package/lib-es/modules/caption/view.js +266 -0
  355. package/lib-es/modules/chat/chat-room-store.js +923 -0
  356. package/lib-es/modules/chat/components/chat-action/index.js +21 -0
  357. package/lib-es/modules/chat/components/chat-bar/index.css +89 -0
  358. package/lib-es/modules/chat/components/chat-bar/index.js +141 -0
  359. package/lib-es/modules/chat/components/chat-select/index.css +185 -0
  360. package/lib-es/modules/chat/components/chat-select/index.js +100 -0
  361. package/lib-es/modules/chat/components/chat-select/select-input/index.js +27 -0
  362. package/lib-es/modules/chat/components/chat-select/select-item/index.js +150 -0
  363. package/lib-es/modules/chat/components/chat-tabs/index.js +53 -0
  364. package/lib-es/modules/chat/components/message-list/chat-empty/index.js +18 -0
  365. package/lib-es/modules/chat/components/message-list/history-unread-message-button/index.js +48 -0
  366. package/lib-es/modules/chat/components/message-list/index.js +327 -0
  367. package/lib-es/modules/chat/components/message-list/message-item/index.js +343 -0
  368. package/lib-es/modules/chat/components/message-list/scroll-bottom-button/index.js +60 -0
  369. package/lib-es/modules/chat/index.css +124 -0
  370. package/lib-es/modules/chat/index.dev.js +71 -0
  371. package/lib-es/modules/chat/index.js +168 -0
  372. package/lib-es/modules/chat/mock.js +276 -0
  373. package/lib-es/modules/chat/store.js +359 -0
  374. package/lib-es/modules/chat/types.js +12 -0
  375. package/lib-es/modules/chat/util.js +63 -0
  376. package/lib-es/modules/chat/view.js +312 -0
  377. package/lib-es/modules/components/annotation-menu/index.js +104 -0
  378. package/lib-es/modules/components/apps/app-item/index.css +49 -0
  379. package/lib-es/modules/components/apps/app-item/index.js +130 -0
  380. package/lib-es/modules/components/apps/app-list.js +49 -0
  381. package/lib-es/modules/components/apps/index.css +9 -0
  382. package/lib-es/modules/components/apps/types.js +1 -0
  383. package/lib-es/modules/components/caption-menu/index.css +58 -0
  384. package/lib-es/modules/components/caption-menu/index.js +108 -0
  385. package/lib-es/modules/components/caption-menu/participants-privilege-control-options.js +65 -0
  386. package/lib-es/modules/components/caption-menu/steps/index.css +73 -0
  387. package/lib-es/modules/components/caption-menu/steps/index.js +49 -0
  388. package/lib-es/modules/components/caption-menu/translation-setting-options.js +180 -0
  389. package/lib-es/modules/components/control-bar/components/loading/index.css +76 -0
  390. package/lib-es/modules/components/control-bar/components/loading/index.js +56 -0
  391. package/lib-es/modules/components/control-bar/components/loading/loading.png +0 -0
  392. package/lib-es/modules/components/control-bar/components/progress/index.js +36 -0
  393. package/lib-es/modules/components/control-bar/components/progress/style.css +51 -0
  394. package/lib-es/modules/components/control-bar/components/switch-theme/index.css +101 -0
  395. package/lib-es/modules/components/control-bar/components/switch-theme/index.js +86 -0
  396. package/lib-es/modules/components/control-bar/components/switch-theme/item.js +46 -0
  397. package/lib-es/modules/components/control-bar/components/switch-theme/libs.js +24 -0
  398. package/lib-es/modules/components/control-bar/index.css +99 -0
  399. package/lib-es/modules/components/control-bar/index.js +357 -0
  400. package/lib-es/modules/components/device-control/components/audio-menu/index.js +167 -0
  401. package/lib-es/modules/components/device-control/components/carmera/index.js +108 -0
  402. package/lib-es/modules/components/device-control/components/microphone/index.js +182 -0
  403. package/lib-es/modules/components/device-control/components/none-menu/index.js +61 -0
  404. package/lib-es/modules/components/device-control/components/phone-menu/index.js +54 -0
  405. package/lib-es/modules/components/device-control/components/video-menu/index.js +105 -0
  406. package/lib-es/modules/components/device-control/hooks/index.js +34 -0
  407. package/lib-es/modules/components/device-control/index.css +177 -0
  408. package/lib-es/modules/components/device-control/index.js +14 -0
  409. package/lib-es/modules/components/device-control/main-scene/store.js +88 -0
  410. package/lib-es/modules/components/device-control/store.base.js +242 -0
  411. package/lib-es/modules/components/device-control/type.js +1 -0
  412. package/lib-es/modules/components/device-control/waiting-scene/store.js +84 -0
  413. package/lib-es/modules/components/leave-meeting/components/assign-host.js +101 -0
  414. package/lib-es/modules/components/leave-meeting/components/index.css +151 -0
  415. package/lib-es/modules/components/leave-meeting/index.js +148 -0
  416. package/lib-es/modules/components/leave-meeting/main-scene/store.js +107 -0
  417. package/lib-es/modules/components/leave-meeting/portal.js +22 -0
  418. package/lib-es/modules/components/leave-meeting/store.base.js +299 -0
  419. package/lib-es/modules/components/leave-meeting/style.css +9 -0
  420. package/lib-es/modules/components/leave-meeting/type.js +1 -0
  421. package/lib-es/modules/components/leave-meeting/waiting-scene/store.js +98 -0
  422. package/lib-es/modules/components/member-window/components/member-actions/components/audio-control.js +35 -0
  423. package/lib-es/modules/components/member-window/components/member-actions/components/icon-buttons/index.js +162 -0
  424. package/lib-es/modules/components/member-window/components/member-actions/components/icon-status.js +80 -0
  425. package/lib-es/modules/components/member-window/components/member-actions/components/layout/index.js +23 -0
  426. package/lib-es/modules/components/member-window/components/member-actions/components/more-actions.js +128 -0
  427. package/lib-es/modules/components/member-window/components/member-actions/components/share-status.js +34 -0
  428. package/lib-es/modules/components/member-window/components/member-actions/components/user-info.js +105 -0
  429. package/lib-es/modules/components/member-window/components/member-actions/components/user-tag.js +51 -0
  430. package/lib-es/modules/components/member-window/components/member-actions/index.js +98 -0
  431. package/lib-es/modules/components/member-window/components/member-actions/libs/index.js +14 -0
  432. package/lib-es/modules/components/member-window/components/member-actions/provider.js +70 -0
  433. package/lib-es/modules/components/member-window/components/member-actions/store.js +430 -0
  434. package/lib-es/modules/components/member-window/components/mic-volume.js +16 -0
  435. package/lib-es/modules/components/member-window/components/video-player/components/local-video-player-with-zoom.js +104 -0
  436. package/lib-es/modules/components/member-window/components/video-player/components/local-video-player.js +1 -0
  437. package/lib-es/modules/components/member-window/components/video-player/components/remote-video-player-with-zoom.js +60 -0
  438. package/lib-es/modules/components/member-window/components/video-player/components/remote-video-player.js +1 -0
  439. package/lib-es/modules/components/member-window/components/video-player/components/zoomable-container.js +223 -0
  440. package/lib-es/modules/components/member-window/components/video-player/index.js +37 -0
  441. package/lib-es/modules/components/member-window/index.css +502 -0
  442. package/lib-es/modules/components/member-window/index.js +179 -0
  443. package/lib-es/modules/components/member-window/types.js +1 -0
  444. package/lib-es/modules/components/security-menu/index.css +42 -0
  445. package/lib-es/modules/components/security-menu/index.js +472 -0
  446. package/lib-es/modules/components/security-menu/store.js +388 -0
  447. package/lib-es/modules/components/security-menu/type.js +1 -0
  448. package/lib-es/modules/components/tab-frame/index.css +40 -0
  449. package/lib-es/modules/components/tab-frame/index.js +51 -0
  450. package/lib-es/modules/components/toolbar/components/capture-tool/index.js +58 -0
  451. package/lib-es/modules/components/toolbar/components/clean-tool/index.js +63 -0
  452. package/lib-es/modules/components/toolbar/components/color-tool/color-panel/index.js +70 -0
  453. package/lib-es/modules/components/toolbar/components/color-tool/index.js +58 -0
  454. package/lib-es/modules/components/toolbar/components/graphic-tool/graphic-panel/index.js +57 -0
  455. package/lib-es/modules/components/toolbar/components/graphic-tool/graphic-panel/libs.js +57 -0
  456. package/lib-es/modules/components/toolbar/components/graphic-tool/index.js +72 -0
  457. package/lib-es/modules/components/toolbar/components/group-tool/index.js +35 -0
  458. package/lib-es/modules/components/toolbar/components/icons/fold-icon.js +33 -0
  459. package/lib-es/modules/components/toolbar/components/icons/move-icon.js +59 -0
  460. package/lib-es/modules/components/toolbar/components/item/index.js +157 -0
  461. package/lib-es/modules/components/toolbar/components/item/style.css +94 -0
  462. package/lib-es/modules/components/toolbar/components/multiple-color-tool/index.js +67 -0
  463. package/lib-es/modules/components/toolbar/components/panel/index.js +21 -0
  464. package/lib-es/modules/components/toolbar/components/panel/style.css +86 -0
  465. package/lib-es/modules/components/toolbar/components/pen-tool/index.js +54 -0
  466. package/lib-es/modules/components/toolbar/components/pen-tool/pen-panel/index.js +32 -0
  467. package/lib-es/modules/components/toolbar/components/save-draft/index.js +51 -0
  468. package/lib-es/modules/components/toolbar/components/vertical-frame/index.js +176 -0
  469. package/lib-es/modules/components/toolbar/hooks/use-resize-visible.js +64 -0
  470. package/lib-es/modules/components/toolbar/index.js +235 -0
  471. package/lib-es/modules/components/toolbar/style.css +85 -0
  472. package/lib-es/modules/components/toolbar/types.js +1 -0
  473. package/lib-es/modules/connection-gateway/components/computer/index.css +12 -0
  474. package/lib-es/modules/connection-gateway/components/computer/index.js +59 -0
  475. package/lib-es/modules/connection-gateway/components/phone/components/callinfo/index.css +36 -0
  476. package/lib-es/modules/connection-gateway/components/phone/components/callinfo/index.js +71 -0
  477. package/lib-es/modules/connection-gateway/components/phone/components/calling/index.css +72 -0
  478. package/lib-es/modules/connection-gateway/components/phone/components/calling/index.js +51 -0
  479. package/lib-es/modules/connection-gateway/components/phone/components/remeber/index.css +10 -0
  480. package/lib-es/modules/connection-gateway/components/phone/components/remeber/index.js +17 -0
  481. package/lib-es/modules/connection-gateway/components/phone/components/useing/index.css +46 -0
  482. package/lib-es/modules/connection-gateway/components/phone/components/useing/index.js +29 -0
  483. package/lib-es/modules/connection-gateway/components/phone/index.css +49 -0
  484. package/lib-es/modules/connection-gateway/components/phone/index.js +177 -0
  485. package/lib-es/modules/connection-gateway/enums.js +5 -0
  486. package/lib-es/modules/connection-gateway/index.css +6 -0
  487. package/lib-es/modules/connection-gateway/index.js +60 -0
  488. package/lib-es/modules/connection-gateway/store.js +709 -0
  489. package/lib-es/modules/connection-gateway/types.js +1 -0
  490. package/lib-es/modules/connection-gateway/view.js +31 -0
  491. package/lib-es/modules/control-bar/components/apps-popover/index.js +34 -0
  492. package/lib-es/modules/control-bar/components/boundary-detector.js +49 -0
  493. package/lib-es/modules/control-bar/components/carmera/index.js +107 -0
  494. package/lib-es/modules/control-bar/components/cloud-recording-buttons.js +109 -0
  495. package/lib-es/modules/control-bar/components/meeting-details/index.css +133 -0
  496. package/lib-es/modules/control-bar/components/meeting-details/index.js +230 -0
  497. package/lib-es/modules/control-bar/components/microphone/index.js +185 -0
  498. package/lib-es/modules/control-bar/components/more-actions/index.css +103 -0
  499. package/lib-es/modules/control-bar/components/more-actions/index.js +158 -0
  500. package/lib-es/modules/control-bar/components/share-audio/index.css +90 -0
  501. package/lib-es/modules/control-bar/components/share-audio/index.js +142 -0
  502. package/lib-es/modules/control-bar/components/share-state-nav/index.css +79 -0
  503. package/lib-es/modules/control-bar/components/share-state-nav/index.js +122 -0
  504. package/lib-es/modules/control-bar/components/stop-live-streaming/index.js +29 -0
  505. package/lib-es/modules/control-bar/components/stop-live-streaming/stop-button.js +28 -0
  506. package/lib-es/modules/control-bar/components/transfer-position-icon/index.js +34 -0
  507. package/lib-es/modules/control-bar/context.js +5 -0
  508. package/lib-es/modules/control-bar/enums.js +27 -0
  509. package/lib-es/modules/control-bar/hooks.js +168 -0
  510. package/lib-es/modules/control-bar/index.css +340 -0
  511. package/lib-es/modules/control-bar/index.dev.js +37 -0
  512. package/lib-es/modules/control-bar/index.js +144 -0
  513. package/lib-es/modules/control-bar/store.js +781 -0
  514. package/lib-es/modules/control-bar/type.js +1 -0
  515. package/lib-es/modules/control-bar/view.js +663 -0
  516. package/lib-es/modules/device-pretest/assets/virtual-backdound-resources.js +14 -0
  517. package/lib-es/modules/device-pretest/audio-preview/microphone-detection.js +64 -0
  518. package/lib-es/modules/device-pretest/audio-preview/speaker-control.js +58 -0
  519. package/lib-es/modules/device-pretest/audio-preview/speaker-detection.js +63 -0
  520. package/lib-es/modules/device-pretest/index.css +123 -0
  521. package/lib-es/modules/device-pretest/index.js +234 -0
  522. package/lib-es/modules/device-pretest/settings/beauty.js +107 -0
  523. package/lib-es/modules/device-pretest/settings/camera-select.js +45 -0
  524. package/lib-es/modules/device-pretest/settings/video-effect.js +43 -0
  525. package/lib-es/modules/device-pretest/settings/video-settings-basic.js +137 -0
  526. package/lib-es/modules/device-pretest/settings/virtual-background-setting.js +94 -0
  527. package/lib-es/modules/device-pretest/store.js +437 -0
  528. package/lib-es/modules/dialog/components/confirm/index.css +24 -0
  529. package/lib-es/modules/dialog/components/confirm/index.js +154 -0
  530. package/lib-es/modules/dialog/components/dialog-container/component/body.js +103 -0
  531. package/lib-es/modules/dialog/components/dialog-container/index.css +112 -0
  532. package/lib-es/modules/dialog/components/dialog-container/index.js +135 -0
  533. package/lib-es/modules/dialog/components/host-area-container/index.js +146 -0
  534. package/lib-es/modules/dialog/components/normal-window/index.js +53 -0
  535. package/lib-es/modules/dialog/dialogs/annotation-tool/index.js +47 -0
  536. package/lib-es/modules/dialog/dialogs/caption/index.js +35 -0
  537. package/lib-es/modules/dialog/dialogs/chat/components/actions.js +36 -0
  538. package/lib-es/modules/dialog/dialogs/chat/index.js +74 -0
  539. package/lib-es/modules/dialog/dialogs/confirm/index.css +24 -0
  540. package/lib-es/modules/dialog/dialogs/confirm/index.js +51 -0
  541. package/lib-es/modules/dialog/dialogs/confirm-leave-meeting/index.js +38 -0
  542. package/lib-es/modules/dialog/dialogs/connection-gateway/index.js +40 -0
  543. package/lib-es/modules/dialog/dialogs/connection-gateway/tabs.js +40 -0
  544. package/lib-es/modules/dialog/dialogs/control-bar/index.js +29 -0
  545. package/lib-es/modules/dialog/dialogs/control-bar-leave-meeting/index.js +33 -0
  546. package/lib-es/modules/dialog/dialogs/device-setting/index.css +26 -0
  547. package/lib-es/modules/dialog/dialogs/device-setting/index.js +36 -0
  548. package/lib-es/modules/dialog/dialogs/end-meeting/index.js +48 -0
  549. package/lib-es/modules/dialog/dialogs/interpreter/index.css +30 -0
  550. package/lib-es/modules/dialog/dialogs/interpreter/index.js +38 -0
  551. package/lib-es/modules/dialog/dialogs/invite/index.js +51 -0
  552. package/lib-es/modules/dialog/dialogs/live-streaming/index.js +30 -0
  553. package/lib-es/modules/dialog/dialogs/mute-all/index.css +20 -0
  554. package/lib-es/modules/dialog/dialogs/mute-all/index.js +42 -0
  555. package/lib-es/modules/dialog/dialogs/participant/components/actions.js +23 -0
  556. package/lib-es/modules/dialog/dialogs/participant/components/title.js +9 -0
  557. package/lib-es/modules/dialog/dialogs/participant/index.js +52 -0
  558. package/lib-es/modules/dialog/dialogs/rename/index.js +43 -0
  559. package/lib-es/modules/dialog/dialogs/sample-dialog/index.js +48 -0
  560. package/lib-es/modules/dialog/dialogs/share-screen-selection/index.js +32 -0
  561. package/lib-es/modules/dialog/dialogs/sub-window/index.js +31 -0
  562. package/lib-es/modules/dialog/dialogs/subtitles-history/index.js +44 -0
  563. package/lib-es/modules/dialog/dialogs/system-preference/assets/bg1.png +0 -0
  564. package/lib-es/modules/dialog/dialogs/system-preference/assets/bg2.png +0 -0
  565. package/lib-es/modules/dialog/dialogs/system-preference/assets/fcr_png_host.png +0 -0
  566. package/lib-es/modules/dialog/dialogs/system-preference/electron.js +31 -0
  567. package/lib-es/modules/dialog/dialogs/system-preference/index.css +52 -0
  568. package/lib-es/modules/dialog/dialogs/system-preference/index.js +130 -0
  569. package/lib-es/modules/dialog/dialogs/toast/index.js +28 -0
  570. package/lib-es/modules/dialog/dialogs/video-window/index.js +55 -0
  571. package/lib-es/modules/dialog/dialogs/whiteboard/index.js +60 -0
  572. package/lib-es/modules/dialog/dialogs/widget/index.js +40 -0
  573. package/lib-es/modules/dialog/hooks/use-web-drag.js +64 -0
  574. package/lib-es/modules/dialog/index.css +56 -0
  575. package/lib-es/modules/dialog/index.js +70 -0
  576. package/lib-es/modules/dialog/level-config.js +11 -0
  577. package/lib-es/modules/dialog/store.base.js +272 -0
  578. package/lib-es/modules/dialog/store.browser.js +135 -0
  579. package/lib-es/modules/dialog/store.electron.js +284 -0
  580. package/lib-es/modules/dialog/type.js +1 -0
  581. package/lib-es/modules/dialog/view.js +28 -0
  582. package/lib-es/modules/event-sound/enum.js +13 -0
  583. package/lib-es/modules/event-sound/index.js +49 -0
  584. package/lib-es/modules/event-sound/sound-effect-player.js +49 -0
  585. package/lib-es/modules/event-sound/store.js +275 -0
  586. package/lib-es/modules/event-sound/type.js +1 -0
  587. package/lib-es/modules/event-toast/index.css +25 -0
  588. package/lib-es/modules/event-toast/index.js +82 -0
  589. package/lib-es/modules/event-toast/store.base.js +193 -0
  590. package/lib-es/modules/event-toast/store.browser.js +23 -0
  591. package/lib-es/modules/event-toast/store.electron.js +138 -0
  592. package/lib-es/modules/event-toast/type.js +1 -0
  593. package/lib-es/modules/event-toast/view.js +37 -0
  594. package/lib-es/modules/interpreter/action/add-btn/index.css +4 -0
  595. package/lib-es/modules/interpreter/action/add-btn/index.js +35 -0
  596. package/lib-es/modules/interpreter/action/delete-btn/index.css +14 -0
  597. package/lib-es/modules/interpreter/action/delete-btn/index.js +31 -0
  598. package/lib-es/modules/interpreter/action/edit-btn/index.js +39 -0
  599. package/lib-es/modules/interpreter/action/switch-btn/index.css +3 -0
  600. package/lib-es/modules/interpreter/action/switch-btn/index.js +44 -0
  601. package/lib-es/modules/interpreter/dialog-content/index.css +33 -0
  602. package/lib-es/modules/interpreter/dialog-content/index.js +30 -0
  603. package/lib-es/modules/interpreter/footer/index.css +11 -0
  604. package/lib-es/modules/interpreter/footer/index.js +18 -0
  605. package/lib-es/modules/interpreter/index.css +4 -0
  606. package/lib-es/modules/interpreter/index.js +109 -0
  607. package/lib-es/modules/interpreter/interpreter-list/index.css +8 -0
  608. package/lib-es/modules/interpreter/interpreter-list/index.js +30 -0
  609. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/index.css +46 -0
  610. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/index.js +173 -0
  611. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ar.png +0 -0
  612. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_cn.png +0 -0
  613. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_de.png +0 -0
  614. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_en.png +0 -0
  615. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_es.png +0 -0
  616. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_fr.png +0 -0
  617. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_hi.png +0 -0
  618. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_id.png +0 -0
  619. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_it.png +0 -0
  620. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_jp.png +0 -0
  621. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ko.png +0 -0
  622. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ms.png +0 -0
  623. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_pt.png +0 -0
  624. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_ru.png +0 -0
  625. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_th.png +0 -0
  626. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_tr.png +0 -0
  627. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/images/fcr_vi.png +0 -0
  628. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.js +169 -0
  629. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/index.css +46 -0
  630. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/index.js +120 -0
  631. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/option-Item.js +51 -0
  632. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/index.css +32 -0
  633. package/lib-es/modules/interpreter/interpreter-list/interpreter-item/index.js +40 -0
  634. package/lib-es/modules/interpreter/loading-wrapper/index.css +53 -0
  635. package/lib-es/modules/interpreter/loading-wrapper/index.js +20 -0
  636. package/lib-es/modules/interpreter/store.js +614 -0
  637. package/lib-es/modules/interpreter/tooltip-wrapper/index.js +23 -0
  638. package/lib-es/modules/interpreter/type.js +5 -0
  639. package/lib-es/modules/interpreter/utils.js +54 -0
  640. package/lib-es/modules/interpreter/view.js +62 -0
  641. package/lib-es/modules/invite/components/error-tips.js +11 -0
  642. package/lib-es/modules/invite/components/pstn-invite.js +245 -0
  643. package/lib-es/modules/invite/components/voip-invite.css +26 -0
  644. package/lib-es/modules/invite/components/voip-invite.js +265 -0
  645. package/lib-es/modules/invite/enums.js +27 -0
  646. package/lib-es/modules/invite/index.css +331 -0
  647. package/lib-es/modules/invite/index.js +64 -0
  648. package/lib-es/modules/invite/store.js +578 -0
  649. package/lib-es/modules/invite/types.js +1 -0
  650. package/lib-es/modules/invite/view.js +46 -0
  651. package/lib-es/modules/layout/components/Aside.js +208 -0
  652. package/lib-es/modules/layout/components/Carousel.js +192 -0
  653. package/lib-es/modules/layout/components/CommonVideoRenderer.js +265 -0
  654. package/lib-es/modules/layout/components/Gallery.js +256 -0
  655. package/lib-es/modules/layout/components/index.css +653 -0
  656. package/lib-es/modules/layout/components/index.js +5 -0
  657. package/lib-es/modules/layout/components/utils.js +3 -0
  658. package/lib-es/modules/layout/components/who-is-speaking.js +49 -0
  659. package/lib-es/modules/layout/index.css +59 -0
  660. package/lib-es/modules/layout/index.dev.js +313 -0
  661. package/lib-es/modules/layout/index.js +74 -0
  662. package/lib-es/modules/layout/store.base.js +1468 -0
  663. package/lib-es/modules/layout/store.browser.js +49 -0
  664. package/lib-es/modules/layout/store.electron.js +175 -0
  665. package/lib-es/modules/layout/type.js +59 -0
  666. package/lib-es/modules/layout/view.js +149 -0
  667. package/lib-es/modules/live-streaming/index.css +0 -0
  668. package/lib-es/modules/live-streaming/index.dev.js +56 -0
  669. package/lib-es/modules/live-streaming/index.js +60 -0
  670. package/lib-es/modules/live-streaming/store.js +246 -0
  671. package/lib-es/modules/live-streaming/type.js +1 -0
  672. package/lib-es/modules/live-streaming/view.js +26 -0
  673. package/lib-es/modules/notification/index.css +77 -0
  674. package/lib-es/modules/notification/index.js +59 -0
  675. package/lib-es/modules/notification/interpreter-status/index.css +76 -0
  676. package/lib-es/modules/notification/interpreter-status/index.js +55 -0
  677. package/lib-es/modules/notification/store.js +122 -0
  678. package/lib-es/modules/notification/type.js +1 -0
  679. package/lib-es/modules/notification/view.js +127 -0
  680. package/lib-es/modules/offscreen-pulling/index.js +122 -0
  681. package/lib-es/modules/participant/components/can-moveable/index.js +59 -0
  682. package/lib-es/modules/participant/components/confirm-input/index.css +4 -0
  683. package/lib-es/modules/participant/components/confirm-input/index.js +112 -0
  684. package/lib-es/modules/participant/components/mute-all/index.js +67 -0
  685. package/lib-es/modules/participant/components/operate-waitingroom-member/index.js +40 -0
  686. package/lib-es/modules/participant/components/participants/components/footer/components/buttons.js +45 -0
  687. package/lib-es/modules/participant/components/participants/components/footer/components/drop-menu/index.css +83 -0
  688. package/lib-es/modules/participant/components/participants/components/footer/components/drop-menu/index.js +156 -0
  689. package/lib-es/modules/participant/components/participants/components/footer/components/drop-menu/util.js +21 -0
  690. package/lib-es/modules/participant/components/participants/components/footer/index.js +42 -0
  691. package/lib-es/modules/participant/components/participants/components/merge/index.js +40 -0
  692. package/lib-es/modules/participant/components/participants/components/render-tab/index.js +42 -0
  693. package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.js +40 -0
  694. package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.js +21 -0
  695. package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.js +32 -0
  696. package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/index.css +87 -0
  697. package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/index.js +138 -0
  698. package/lib-es/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.js +25 -0
  699. package/lib-es/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.js +70 -0
  700. package/lib-es/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.js +20 -0
  701. package/lib-es/modules/participant/components/participants/components/render-user/components/user-action/index.js +70 -0
  702. package/lib-es/modules/participant/components/participants/components/render-user/index.js +16 -0
  703. package/lib-es/modules/participant/components/participants/index.js +71 -0
  704. package/lib-es/modules/participant/index.css +102 -0
  705. package/lib-es/modules/participant/index.dev.js +87 -0
  706. package/lib-es/modules/participant/index.js +137 -0
  707. package/lib-es/modules/participant/member-list-data-source.js +297 -0
  708. package/lib-es/modules/participant/store.base.js +2354 -0
  709. package/lib-es/modules/participant/store.browser.js +117 -0
  710. package/lib-es/modules/participant/store.electron.js +124 -0
  711. package/lib-es/modules/participant/struct.js +55 -0
  712. package/lib-es/modules/participant/type.js +7 -0
  713. package/lib-es/modules/participant/view.js +18 -0
  714. package/lib-es/modules/pc-audio-connect/index.css +12 -0
  715. package/lib-es/modules/pc-audio-connect/main-scene/index.js +67 -0
  716. package/lib-es/modules/pc-audio-connect/main-scene/store.js +313 -0
  717. package/lib-es/modules/pc-audio-connect/types.js +1 -0
  718. package/lib-es/modules/pc-audio-connect/view.js +60 -0
  719. package/lib-es/modules/pc-audio-connect/waiting-scene/index.js +61 -0
  720. package/lib-es/modules/pc-audio-connect/waiting-scene/store.js +293 -0
  721. package/lib-es/modules/phone-audio-connect/components/callinfo/index.css +36 -0
  722. package/lib-es/modules/phone-audio-connect/components/callinfo/index.js +71 -0
  723. package/lib-es/modules/phone-audio-connect/components/calling/index.css +72 -0
  724. package/lib-es/modules/phone-audio-connect/components/calling/index.js +51 -0
  725. package/lib-es/modules/phone-audio-connect/components/remeber/index.css +10 -0
  726. package/lib-es/modules/phone-audio-connect/components/remeber/index.js +17 -0
  727. package/lib-es/modules/phone-audio-connect/components/useing/index.css +46 -0
  728. package/lib-es/modules/phone-audio-connect/components/useing/index.js +29 -0
  729. package/lib-es/modules/phone-audio-connect/enums.js +5 -0
  730. package/lib-es/modules/phone-audio-connect/index.css +56 -0
  731. package/lib-es/modules/phone-audio-connect/index.js +52 -0
  732. package/lib-es/modules/phone-audio-connect/store.js +317 -0
  733. package/lib-es/modules/phone-audio-connect/types.js +1 -0
  734. package/lib-es/modules/phone-audio-connect/view.js +177 -0
  735. package/lib-es/modules/secondary-window/index.js +147 -0
  736. package/lib-es/modules/secondary-window/store.js +502 -0
  737. package/lib-es/modules/secondary-window/type.js +28 -0
  738. package/lib-es/modules/secondary-window/view.js +281 -0
  739. package/lib-es/modules/setting/audio-settings/audio-settings.js +292 -0
  740. package/lib-es/modules/setting/audio-settings/index.css +195 -0
  741. package/lib-es/modules/setting/audio-whiteList/audio-device-adaptation.js +62 -0
  742. package/lib-es/modules/setting/audio-whiteList/audio-whiteList-manager.js +368 -0
  743. package/lib-es/modules/setting/caption_and_transcribing/index.css +88 -0
  744. package/lib-es/modules/setting/caption_and_transcribing/index.js +89 -0
  745. package/lib-es/modules/setting/general-settings/general-settings.js +148 -0
  746. package/lib-es/modules/setting/general-settings/index.css +41 -0
  747. package/lib-es/modules/setting/index.css +112 -0
  748. package/lib-es/modules/setting/index.dev.js +120 -0
  749. package/lib-es/modules/setting/index.js +145 -0
  750. package/lib-es/modules/setting/minutes-settings/index.css +65 -0
  751. package/lib-es/modules/setting/minutes-settings/minutes-settings.js +146 -0
  752. package/lib-es/modules/setting/state/index.css +207 -0
  753. package/lib-es/modules/setting/state/index.js +322 -0
  754. package/lib-es/modules/setting/storage-settings/index.css +91 -0
  755. package/lib-es/modules/setting/storage-settings/storage-settings.js +65 -0
  756. package/lib-es/modules/setting/store.base.js +1440 -0
  757. package/lib-es/modules/setting/store.browser.js +43 -0
  758. package/lib-es/modules/setting/store.electron.js +168 -0
  759. package/lib-es/modules/setting/translate-settings/index.css +47 -0
  760. package/lib-es/modules/setting/translate-settings/language-select.js +40 -0
  761. package/lib-es/modules/setting/translate-settings/translate-settings.js +131 -0
  762. package/lib-es/modules/setting/type.js +14 -0
  763. package/lib-es/modules/setting/video-settings/index.css +357 -0
  764. package/lib-es/modules/setting/video-settings/video-settings-basic.js +131 -0
  765. package/lib-es/modules/setting/video-settings/video-settings.js +167 -0
  766. package/lib-es/modules/setting/view.js +147 -0
  767. package/lib-es/modules/share-screen/components/control-bar/index.css +75 -0
  768. package/lib-es/modules/share-screen/components/control-bar/index.js +92 -0
  769. package/lib-es/modules/share-screen/components/control-bar/items/annotation-edit-btn/index.js +38 -0
  770. package/lib-es/modules/share-screen/components/control-bar/items/full-container-btn/index.js +25 -0
  771. package/lib-es/modules/share-screen/components/control-bar/items/original-size-btn/index.js +25 -0
  772. package/lib-es/modules/share-screen/components/control-bar/items/zoom-in-btn/index.js +25 -0
  773. package/lib-es/modules/share-screen/components/control-bar/items/zoom-out-btn/index.js +25 -0
  774. package/lib-es/modules/share-screen/components/selection/index.css +73 -0
  775. package/lib-es/modules/share-screen/components/selection/index.js +220 -0
  776. package/lib-es/modules/share-screen/components/share-scenario/index.js +40 -0
  777. package/lib-es/modules/share-screen/components/share-state-bar/index.css +76 -0
  778. package/lib-es/modules/share-screen/components/share-state-bar/index.js +90 -0
  779. package/lib-es/modules/share-screen/index.css +0 -0
  780. package/lib-es/modules/share-screen/index.dev.js +90 -0
  781. package/lib-es/modules/share-screen/index.js +99 -0
  782. package/lib-es/modules/share-screen/store.base.js +464 -0
  783. package/lib-es/modules/share-screen/store.browser.js +36 -0
  784. package/lib-es/modules/share-screen/store.electron.js +429 -0
  785. package/lib-es/modules/share-screen/type.js +8 -0
  786. package/lib-es/modules/share-screen/view.js +24 -0
  787. package/lib-es/modules/state-bar/assets/fcr_grid_big.svg +3 -0
  788. package/lib-es/modules/state-bar/assets/fcr_listontop_big.svg +3 -0
  789. package/lib-es/modules/state-bar/assets/live-streaming.gif +0 -0
  790. package/lib-es/modules/state-bar/index.css +706 -0
  791. package/lib-es/modules/state-bar/index.dev.js +78 -0
  792. package/lib-es/modules/state-bar/index.js +41 -0
  793. package/lib-es/modules/state-bar/layout-config.js +168 -0
  794. package/lib-es/modules/state-bar/live-streaming-state.js +169 -0
  795. package/lib-es/modules/state-bar/main-scene/index.js +39 -0
  796. package/lib-es/modules/state-bar/main-scene/store.base.js +137 -0
  797. package/lib-es/modules/state-bar/main-scene/store.browser.js +80 -0
  798. package/lib-es/modules/state-bar/main-scene/store.electron.js +107 -0
  799. package/lib-es/modules/state-bar/meeting-detail.css +137 -0
  800. package/lib-es/modules/state-bar/meeting-details.js +219 -0
  801. package/lib-es/modules/state-bar/meeting-network-state.css +150 -0
  802. package/lib-es/modules/state-bar/meeting-network-state.js +107 -0
  803. package/lib-es/modules/state-bar/meeting-time.js +25 -0
  804. package/lib-es/modules/state-bar/network-quality.js +26 -0
  805. package/lib-es/modules/state-bar/recording.js +103 -0
  806. package/lib-es/modules/state-bar/store.base.electron.js +108 -0
  807. package/lib-es/modules/state-bar/store.base.js +616 -0
  808. package/lib-es/modules/state-bar/subtitles-history-state.js +101 -0
  809. package/lib-es/modules/state-bar/type.js +1 -0
  810. package/lib-es/modules/state-bar/view.js +241 -0
  811. package/lib-es/modules/state-bar/waiting-scene/index.js +39 -0
  812. package/lib-es/modules/state-bar/waiting-scene/store.base.js +48 -0
  813. package/lib-es/modules/state-bar/waiting-scene/store.browser.js +80 -0
  814. package/lib-es/modules/state-bar/waiting-scene/store.electron.js +99 -0
  815. package/lib-es/modules/subtitles-history/components/actions.js +29 -0
  816. package/lib-es/modules/subtitles-history/components/list-item.js +95 -0
  817. package/lib-es/modules/subtitles-history/components/list.js +175 -0
  818. package/lib-es/modules/subtitles-history/components/respond-dialog-content.js +36 -0
  819. package/lib-es/modules/subtitles-history/components/settings/index.css +5 -0
  820. package/lib-es/modules/subtitles-history/components/settings/index.js +46 -0
  821. package/lib-es/modules/subtitles-history/components/timer.js +36 -0
  822. package/lib-es/modules/subtitles-history/components/title.js +8 -0
  823. package/lib-es/modules/subtitles-history/empty.js +14 -0
  824. package/lib-es/modules/subtitles-history/index.css +129 -0
  825. package/lib-es/modules/subtitles-history/index.js +89 -0
  826. package/lib-es/modules/subtitles-history/store.base.js +790 -0
  827. package/lib-es/modules/subtitles-history/store.electron.js +148 -0
  828. package/lib-es/modules/subtitles-history/type.js +1 -0
  829. package/lib-es/modules/subtitles-history/view.js +96 -0
  830. package/lib-es/modules/video-window/components/deviceState/index.js +68 -0
  831. package/lib-es/modules/video-window/components/members/index.css +51 -0
  832. package/lib-es/modules/video-window/components/members/index.js +116 -0
  833. package/lib-es/modules/video-window/components/speaking/index.css +86 -0
  834. package/lib-es/modules/video-window/components/speaking/index.js +40 -0
  835. package/lib-es/modules/video-window/components/topControl/index.css +35 -0
  836. package/lib-es/modules/video-window/components/topControl/index.js +68 -0
  837. package/lib-es/modules/video-window/index.css +21 -0
  838. package/lib-es/modules/video-window/index.js +82 -0
  839. package/lib-es/modules/video-window/popover-watcher.js +69 -0
  840. package/lib-es/modules/video-window/store.js +512 -0
  841. package/lib-es/modules/video-window/type.js +19 -0
  842. package/lib-es/modules/video-window/view.js +107 -0
  843. package/lib-es/modules/waiting-room-layout/index.css +96 -0
  844. package/lib-es/modules/waiting-room-layout/index.js +67 -0
  845. package/lib-es/modules/waiting-room-layout/store.js +231 -0
  846. package/lib-es/modules/waiting-room-layout/view.js +87 -0
  847. package/lib-es/modules/whiteboard/components/control-bar/index.css +52 -0
  848. package/lib-es/modules/whiteboard/components/control-bar/index.js +151 -0
  849. package/lib-es/modules/whiteboard/components/control-bar/store.js +298 -0
  850. package/lib-es/modules/whiteboard/components/loading/index.css +76 -0
  851. package/lib-es/modules/whiteboard/components/loading/index.js +57 -0
  852. package/lib-es/modules/whiteboard/components/loading/loading.png +0 -0
  853. package/lib-es/modules/whiteboard/components/multi-window/index.css +63 -0
  854. package/lib-es/modules/whiteboard/components/multi-window/index.js +31 -0
  855. package/lib-es/modules/whiteboard/components/pagination/index.css +228 -0
  856. package/lib-es/modules/whiteboard/components/pagination/index.js +155 -0
  857. package/lib-es/modules/whiteboard/components/pagination/store.js +10 -0
  858. package/lib-es/modules/whiteboard/components/progress/index.js +36 -0
  859. package/lib-es/modules/whiteboard/components/progress/style.css +51 -0
  860. package/lib-es/modules/whiteboard/components/scene-pagination.js +23 -0
  861. package/lib-es/modules/whiteboard/components/switch-theme/index.css +99 -0
  862. package/lib-es/modules/whiteboard/components/switch-theme/index.js +89 -0
  863. package/lib-es/modules/whiteboard/components/switch-theme/item.js +46 -0
  864. package/lib-es/modules/whiteboard/components/switch-theme/libs.js +24 -0
  865. package/lib-es/modules/whiteboard/components/toolbar/components/color-picker/components/color.js +30 -0
  866. package/lib-es/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +101 -0
  867. package/lib-es/modules/whiteboard/components/toolbar/components/color-picker/components/picker.js +67 -0
  868. package/lib-es/modules/whiteboard/components/toolbar/components/color-picker/index.js +40 -0
  869. package/lib-es/modules/whiteboard/components/toolbar/components/eraser-picker.js +136 -0
  870. package/lib-es/modules/whiteboard/components/toolbar/components/expansion/index.js +85 -0
  871. package/lib-es/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +46 -0
  872. package/lib-es/modules/whiteboard/components/toolbar/components/history.js +70 -0
  873. package/lib-es/modules/whiteboard/components/toolbar/components/icons/fold-icon.js +33 -0
  874. package/lib-es/modules/whiteboard/components/toolbar/components/icons/move-icon.js +59 -0
  875. package/lib-es/modules/whiteboard/components/toolbar/components/item/index.js +35 -0
  876. package/lib-es/modules/whiteboard/components/toolbar/components/move-handle.js +127 -0
  877. package/lib-es/modules/whiteboard/components/toolbar/components/pen-picker.js +147 -0
  878. package/lib-es/modules/whiteboard/components/toolbar/components/screen-capture-picker.js +78 -0
  879. package/lib-es/modules/whiteboard/components/toolbar/components/shape-picker.js +202 -0
  880. package/lib-es/modules/whiteboard/components/toolbar/hooks/index.js +285 -0
  881. package/lib-es/modules/whiteboard/components/toolbar/index.js +72 -0
  882. package/lib-es/modules/whiteboard/components/toolbar/store.js +484 -0
  883. package/lib-es/modules/whiteboard/components/toolbar/style.css +591 -0
  884. package/lib-es/modules/whiteboard/context.js +28 -0
  885. package/lib-es/modules/whiteboard/index.js +67 -0
  886. package/lib-es/modules/whiteboard/libs/theme.js +24 -0
  887. package/lib-es/modules/whiteboard/store.browser.js +20 -0
  888. package/lib-es/modules/whiteboard/store.electron.js +163 -0
  889. package/lib-es/modules/whiteboard/store.js +457 -0
  890. package/lib-es/modules/whiteboard/style.css +140 -0
  891. package/lib-es/modules/whiteboard/type.js +52 -0
  892. package/lib-es/modules/whiteboard/utils.js +29 -0
  893. package/lib-es/modules/whiteboard/view.js +105 -0
  894. package/lib-es/modules/widget/index.css +9 -0
  895. package/lib-es/modules/widget/index.js +129 -0
  896. package/lib-es/modules/widget/store.base.js +35 -0
  897. package/lib-es/modules/widget/store.browser.js +74 -0
  898. package/lib-es/modules/widget/store.electron.js +127 -0
  899. package/lib-es/modules/widget/type.js +1 -0
  900. package/lib-es/modules/widget/view.js +49 -0
  901. package/lib-es/modules/widget/web-widget.js +263 -0
  902. package/lib-es/object-manager.js +194 -0
  903. package/lib-es/plugins/browser-runtime-plugin.js +0 -0
  904. package/lib-es/plugins/css-preset-plugin.js +18 -0
  905. package/lib-es/plugins/electron-rtc-plugin.js +3 -0
  906. package/lib-es/plugins/module-dev-plugin.js +162 -0
  907. package/lib-es/plugins/multi-lang-plugin.js +18 -0
  908. package/lib-es/plugins/rtm-plugin.js +3 -0
  909. package/lib-es/plugins/web-rtc-plugin.js +3 -0
  910. package/lib-es/providers/ability-provider.js +76 -0
  911. package/lib-es/providers/annotation/provider.js +61 -0
  912. package/lib-es/providers/annotation/type.js +1 -0
  913. package/lib-es/providers/app-list-provider.js +392 -0
  914. package/lib-es/providers/board-share/bar-control/base.js +318 -0
  915. package/lib-es/providers/board-share/bar-control/browser.js +34 -0
  916. package/lib-es/providers/board-share/bar-control/electron.js +211 -0
  917. package/lib-es/providers/board-share/provider.base.js +406 -0
  918. package/lib-es/providers/board-share/provider.browser.js +147 -0
  919. package/lib-es/providers/board-share/provider.electron.js +162 -0
  920. package/lib-es/providers/board-share/struct.js +16 -0
  921. package/lib-es/providers/board-share/type.js +1 -0
  922. package/lib-es/providers/chat-provider.js +166 -0
  923. package/lib-es/providers/device-privilege-provider.js +402 -0
  924. package/lib-es/providers/device-provider.js +2148 -0
  925. package/lib-es/providers/device-stream-provider.js +418 -0
  926. package/lib-es/providers/dialog/provider.base.js +282 -0
  927. package/lib-es/providers/dialog/provider.browser.js +160 -0
  928. package/lib-es/providers/dialog/provider.electron.js +273 -0
  929. package/lib-es/providers/dialog/type.js +8 -0
  930. package/lib-es/providers/event-provider.js +50 -0
  931. package/lib-es/providers/facility/provider.base.js +152 -0
  932. package/lib-es/providers/facility/provider.browser.js +67 -0
  933. package/lib-es/providers/facility/provider.electron.js +83 -0
  934. package/lib-es/providers/facility/struct.js +6 -0
  935. package/lib-es/providers/facility/type.js +1 -0
  936. package/lib-es/providers/interpreter-provider.js +955 -0
  937. package/lib-es/providers/local-storage-provider.js +37 -0
  938. package/lib-es/providers/message/provider.js +97 -0
  939. package/lib-es/providers/message/struct.js +5 -0
  940. package/lib-es/providers/message/type.js +1 -0
  941. package/lib-es/providers/monitor-provider.js +22 -0
  942. package/lib-es/providers/mouse-detect/provider.js +312 -0
  943. package/lib-es/providers/mouse-detect/struct.js +5 -0
  944. package/lib-es/providers/mouse-detect/type.js +1 -0
  945. package/lib-es/providers/multi-display-provider.js +603 -0
  946. package/lib-es/providers/phone-audio-provider.js +512 -0
  947. package/lib-es/providers/privilege-provider.js +1158 -0
  948. package/lib-es/providers/renderer-provider.js +310 -0
  949. package/lib-es/providers/room-provider/room-provider.js +730 -0
  950. package/lib-es/providers/room-provider/waiting-room-control-manager.js +224 -0
  951. package/lib-es/providers/screen-share/constant.js +1 -0
  952. package/lib-es/providers/screen-share/provider.base.js +511 -0
  953. package/lib-es/providers/screen-share/provider.browser.js +290 -0
  954. package/lib-es/providers/screen-share/provider.electron.js +486 -0
  955. package/lib-es/providers/screen-share/strategy/browser.js +306 -0
  956. package/lib-es/providers/screen-share/strategy/electron.js +364 -0
  957. package/lib-es/providers/screen-share/strategy/type.js +31 -0
  958. package/lib-es/providers/screen-share/stream-state-sync.js +312 -0
  959. package/lib-es/providers/screen-share/struct.js +60 -0
  960. package/lib-es/providers/screen-share/type.js +1 -0
  961. package/lib-es/providers/session-provider.js +42 -0
  962. package/lib-es/providers/setting-storage/provider.base.js +6 -0
  963. package/lib-es/providers/setting-storage/provider.browser.js +57 -0
  964. package/lib-es/providers/setting-storage/provider.electron.js +55 -0
  965. package/lib-es/providers/setting-storage/type.js +1 -0
  966. package/lib-es/providers/stt-provider/stt-provider.js +1000 -0
  967. package/lib-es/providers/stt-provider/type.js +14 -0
  968. package/lib-es/providers/widget-provider.js +236 -0
  969. package/lib-es/providers/window/main-window.js +259 -0
  970. package/lib-es/providers/window/provider.js +158 -0
  971. package/lib-es/providers/window/renderer-window.js +576 -0
  972. package/lib-es/providers/window/type.js +1 -0
  973. package/lib-es/runtime.js +1 -0
  974. package/lib-es/scenes/main-scene.js +696 -0
  975. package/lib-es/scenes/type.js +1 -0
  976. package/lib-es/scenes/waiting-scene.js +155 -0
  977. package/lib-es/schema.js +88 -0
  978. package/lib-es/shared-context/board-context.js +7 -0
  979. package/lib-es/shared-context/dialog-context.js +3 -0
  980. package/lib-es/shared-context/video-track-render-context.js +2 -0
  981. package/lib-es/shared-data/app-list-data.js +122 -0
  982. package/lib-es/shared-data/chat-data.js +135 -0
  983. package/lib-es/shared-data/config.js +38 -0
  984. package/lib-es/shared-data/confirm-data.js +195 -0
  985. package/lib-es/shared-data/device-privilege-data.js +18 -0
  986. package/lib-es/shared-data/interpreter.js +235 -0
  987. package/lib-es/shared-data/layout-data.js +211 -0
  988. package/lib-es/shared-data/meeting-time.js +409 -0
  989. package/lib-es/shared-data/member-data.js +482 -0
  990. package/lib-es/shared-data/pin-data.js +107 -0
  991. package/lib-es/shared-data/screen-share/index.js +188 -0
  992. package/lib-es/shared-data/screen-share/type.js +1 -0
  993. package/lib-es/shared-data/security-data.js +153 -0
  994. package/lib-es/shared-data/setting.js +244 -0
  995. package/lib-es/shared-data/speaker-spotlight.js +11 -0
  996. package/lib-es/shared-data/stt-setting.ts/constant.js +27 -0
  997. package/lib-es/shared-data/stt-setting.ts/index.js +195 -0
  998. package/lib-es/shared-data/stt-setting.ts/type.js +7 -0
  999. package/lib-es/shared-data/video-window.js +1248 -0
  1000. package/lib-es/shared-data/waiting-room.js +216 -0
  1001. package/lib-es/shared-data/widget-data.js +42 -0
  1002. package/lib-es/translations/enUS.js +2075 -0
  1003. package/lib-es/translations/zhCN.js +2073 -0
  1004. package/lib-es/type.js +149 -0
  1005. package/lib-es/ui-manager.js +213 -0
  1006. package/lib-es/ui-scene-switch.js +572 -0
  1007. package/lib-es/utilities/browser-api.js +74 -0
  1008. package/lib-es/utilities/constant.js +190 -0
  1009. package/lib-es/utilities/debug.js +33 -0
  1010. package/lib-es/utilities/default-config.js +89 -0
  1011. package/lib-es/utilities/dialog-utils.js +210 -0
  1012. package/lib-es/utilities/focus-helper.js +26 -0
  1013. package/lib-es/utilities/hooks.js +82 -0
  1014. package/lib-es/utilities/i18n-common-data.js +7 -0
  1015. package/lib-es/utilities/logger.js +48 -0
  1016. package/lib-es/utilities/meeting-detail.js +74 -0
  1017. package/lib-es/utilities/mute-action.js +41 -0
  1018. package/lib-es/utilities/package-info.js +7 -0
  1019. package/lib-es/utilities/parameters.js +47 -0
  1020. package/lib-es/utilities/platform.js +7 -0
  1021. package/lib-es/utilities/privilege.js +21 -0
  1022. package/lib-es/utilities/regex.js +7 -0
  1023. package/lib-es/utilities/renderer.js +430 -0
  1024. package/lib-es/utilities/shared-storage.js +56 -0
  1025. package/lib-es/utilities/tools.js +252 -0
  1026. package/lib-es/utilities/ui-resources.js +84 -0
  1027. package/lib-es/utilities/useNamespace.js +59 -0
  1028. package/lib-es/utilities/validate-params.js +9 -0
  1029. package/package.json +85 -79
  1030. package/public/assets/fcr_chat_reddot.svg +5 -5
  1031. package/public/assets/fcr_grid_big.svg +3 -3
  1032. package/public/assets/fcr_leave2.svg +58 -58
  1033. package/public/assets/fcr_listontop_big.svg +3 -3
  1034. package/public/assets/step-gradient.svg +10 -10
  1035. package/public/fragment.html +10 -10
  1036. package/public/index.html +107 -183
  1037. package/public/index.vite.html +109 -0
  1038. package/public/js/init.js +75 -0
  1039. package/public/{meeting-manager.js → js/meeting-manager.js} +405 -405
@@ -0,0 +1,2073 @@
1
+ export var zhCn = {
2
+ fmt_role_host: '主持人',
3
+ //****************** ls ******************
4
+ fmt_role_participant: '参会者',
5
+ fmt_role_cohost: '联席主持人',
6
+ fmt_participants_label_participants: '成员列表',
7
+ fmt_participants_label_popUp: '弹出',
8
+ fmt_participants_window_title: '与会者{reason1}',
9
+ fmt_participants_button_muteAll: '全员静音',
10
+ fmt_participants_button_unmuteAll: '解除全员静音',
11
+ fmt_participants_button_meetingManagement: '会议管理',
12
+ fmt_participants_button_invite: '邀请',
13
+ fmt_participants_member_button_mute: '静音',
14
+ fmt_participants_member_button_unmute: '解除静音',
15
+ fmt_participants_member_button_more: '更多',
16
+ //****************** 参会者 ******************
17
+ fmt_attendies_options_muteall: '将所有当前会议室的参会者静音',
18
+ fmt_attendies_button_muteall: '全体静音',
19
+ fmt_participants_window_mute_interpreter: '您正在禁言翻译官,是否要继续?',
20
+ fmt_participants_button_mute_interpreter_sure: '确定',
21
+ fmt_participants_button_mute_interpreter_cancel: '取消',
22
+ fmt_attendies_button_cancel: '取消',
23
+ fmt_attendies_options_muteuponjoin: '所有参会者加入时静音',
24
+ fmt_attendies_options_allowunmute: '允许参会者自我解除静音',
25
+ fmt_attendies_options_applyunmute: '申请解除静音',
26
+ fmt_attendies_button_request: '请求',
27
+ fmt_attendies_button_handsdown: '放下手',
28
+ fmt_attendies_label_privatechat: '私聊',
29
+ fmt_attendies_options_setfocus: '设为焦点视频',
30
+ fmt_attendies_options_replacefixed: '替换固定视窗',
31
+ fmt_attendies_options_fixfirst: '固定视窗到第 1 位',
32
+ fmt_attendies_options_cancelfixed: '取消固定视窗',
33
+ fmt_attendies_options_sethost: '设为主持人',
34
+ fmt_attendies_options_revokecohost: '撤销联席主持人',
35
+ fmt_attendies_options_setcohost: '设为联席主持人',
36
+ fmt_attendies_toast_cant_sethost: '该成员的参会设备不能成为主持人',
37
+ fmt_attendies_toast_cant_setcohost: '该成员的参会设备不能成为联席主持人',
38
+ fmt_attendies_button_revokehost_error: '已收回您的主持人权限,设置失败',
39
+ fmt_attendies_toast_cohost_upper_limit: '联席主持人人数已达上限,无法设置更多联席主持人',
40
+ fmt_attendies_button_rename: '重命名',
41
+ fmt_attendies_options_allowlocalrecord: '允许录制本地视频',
42
+ fmt_attendies_options_putinwaitingroom: '放进等候室',
43
+ fmt_attendies_button_remove: '移出',
44
+ fmt_participants_options_allunmute: '允许全体成员自我解除静音',
45
+ fmt_participants_options_allmute: '开启全员静音',
46
+ fmt_modules_tips_mergevideo: '与视频合并...',
47
+ fmt_participant_label_Me: '我',
48
+ fmt_attendies_button_serach: '搜索...',
49
+ fmt_attendies_tips_nopermission: '对方是{reason1},你不可操作',
50
+ fmt_attendies_tab_meetingroom: '会议室',
51
+ fmt_attendies_tab_waitingroom: '等候室',
52
+ fmt_attendies_host_permission: '收起主持人权限',
53
+ fmt_attendies_option_apply_all_audio: '解除全体静音',
54
+ fmt_attendies_status_item_ringing: '正在响铃…',
55
+ fmt_attendies_labels_setting_mine: '(我)',
56
+ fmt_attendies_tips_setting_title: '成员设置',
57
+ fmt_attendies_tips_setting_media_co_host_unable: '对方是联席主持人,你不可操作',
58
+ fmt_attendies_tips_setting_media_host_unable: '对方是主持人,你不可操作',
59
+ fmt_attendies_tips_setting_make_host_info: '是否将 {reason1} 设为会议的主持人?',
60
+ fmt_attendies_tips_setting_make_co_host_info: '是否将 {reason1} 设为会议的联席主持人?',
61
+ fmt_attendies_tips_setting_require_unmute: '要求所有人解除静音',
62
+ fmt_attendies_label_no_data: '无数据',
63
+ fmt_attendies_tips_send_mute_all_on: '你已开启了全体静音',
64
+ fmt_attendies_tips_mute_all_off: '全员可以自由开启麦克风',
65
+ fmt_attendies_tips_chat_off: '主持人禁止私聊',
66
+ fmt_attendies_tips_apply_audio_title: '{reason1}向你申请解除静音',
67
+ fmt_attendies_tips_apply_audio_info: '同意解除后,你的麦克风将打开。',
68
+ fmt_attendies_label_apply_audio_cancel: '保持静音',
69
+ fmt_attendies_tips_apply_video_title: '{reason1}向你申请开启摄像头',
70
+ fmt_attendies_tips_apply_video_info: '同意解除后,你的摄像头将打开。',
71
+ fmt_attendies_label_apply_video_cancel: '保持关闭',
72
+ fmt_attendies_tips_receive_mute_all: '{reason1}开启了全员静音',
73
+ fmt_attendies_tips_receive_mute_you: '{reason1}已将你静音',
74
+ fmt_attendies_tips_receive_video_off_you: '{reason1}已将你摄像头关闭',
75
+ fmt_attendies_tips_mine_new_host: '{reason1}(我)成为新主持人',
76
+ fmt_attendies_tips_new_host: '{reason1}成为新主持人',
77
+ fmt_attendies_tips_mine_new_co_host: '你被设为联席主持人',
78
+ fmt_attendies_tips_new_co_host: '{reason1} 现在成为联席主持人',
79
+ fmt_attendies_tips_invoke_co_host: '已撤销 {reason1} 的联席主持人身份',
80
+ fmt_attendies_tips_revoke_co_host: '你的联席主持人身份已收回',
81
+ fmt_attendies_tips_not_co_host: '{reason1} 不再是联席主持人',
82
+ fmt_attendies_tips_operation_success: '操作成功',
83
+ fmt_attendies_tips_operation_failed: '操作失效',
84
+ fmt_attendies_tips_forbid_close: '主持人禁止关闭',
85
+ fmt_attendies_tips_request_send: '你已发送请求',
86
+ fmt_additional_tips_cohostbeenrevoke: '你的联席主持人身份已收回',
87
+ fmt_additional_tips_cohostrevoke: '已撤销 {reason1} 的联席主持人身份',
88
+ fmt_additional_tips_nolongercohost: '{reason1}不再是联席主持人',
89
+ fmt_additional_option_rename_in_meeting: '修改昵称',
90
+ fmt_additional_label_attendee_permission: '与会者权限',
91
+ fmt_additional_label_meet_view_own: '我自己的视图',
92
+ fmt_additional_label_meet_view_all: '所有人的会议视图',
93
+ fmt_additional_label_change_name_self: '自己改名',
94
+ fmt_additional_tips_nickname_change_success: '昵称修改成功',
95
+ fmt_additional_popup_label_enter_nickname: '请输入昵称',
96
+ fmt_additional_popup_label_enter_nickname_ok: 'OK',
97
+ fmt_additional_label_toast_rename_off: '会议管理员已关闭改名功能',
98
+ fmt_attendies_toast_host_enabled_mute: '主持人开启了入会静音',
99
+ fmt_attendies_toast_host_turned_off_video: '主持人开启了入会关闭视频',
100
+ fmt_attendies_toast_cohost_full: '当前连麦人数已满,请稍后再试',
101
+ fmt_actionbar_tips_leavemeeting: '你确定现在要离开会议吗?',
102
+ fmt_actionbar_tips_locked: '会议已被主持人加锁',
103
+ fmt_actionbar_tips_recheckleave: '离开会议之后不能再加入;你确定现在要离开会议吗?',
104
+ fmt_aside_status_connecting: '连接中...',
105
+ fmt_actionbar_labels_endmeeting: '你确定现在要结束会议吗?',
106
+ fmt_actionbar__button_leaveyes: '是的',
107
+ fmt_actionbar__button_leaveno: '否',
108
+ fmt_actionbar_options_utoadjust: '自动调整扬声器音量',
109
+ fmt_actionbar_options_micautoadjust: '自动调整麦克风音量',
110
+ fmt_actionbar_label_reducenoise: '降低背景噪音',
111
+ fmt_actionbar_tips_cameraturnon: '接受邀请后,你的摄像头将打开。',
112
+ fmt_actionbar_button_accept: '接受',
113
+ fmt_actionbar_button_refuse: '拒绝',
114
+ fmt_actionbar_tips_unmute: '主持人希望你“解除静音”',
115
+ fmt_actionbar_tips_agreeturnon: '同意解除后,你的麦克风将打开。',
116
+ fmt_actionbar_options_Keepsilent: '保持静音',
117
+ fmt_statusbar_label_fullscreen: '全屏',
118
+ fmt_statusbar_label_exitfullscreen: '退出全屏',
119
+ fmt_statusbar_label_switchlayout: '切换布局',
120
+ fmt_statusbar_label_durationtime: '会议持续时间(会议预定时长{reason1}{reason2})',
121
+ fmt_statusbar_label_layout: '布局',
122
+ fmt_statusbar_label_layoutsetting: '布局设置',
123
+ fmt_statusbar_hover_unable_switch_grid_view: '屏幕共享时无法切换成宫格视图',
124
+ fmt_statusbar_opions_listontop: '排在顶部',
125
+ fmt_statusbar_label_grid: '网格({reason1}格)',
126
+ fmt_statusbar_label_customwating: '在自定义直播服务器上观看直播',
127
+ fmt_statusbar_status_coppied: '已复制在粘贴板',
128
+ fmt_statusbar_tips_copyfailed: '复制失败',
129
+ fmt_statusbar_tips_onstreaming: '会议正在自定义直播服务上直播',
130
+ fmt_statusbar_label_hour: '小时',
131
+ fmt_statusbar_label_minutes: '分钟',
132
+ fmt_statusbar_label_cloudrecordingpaused: '云录制暂停中',
133
+ fmt_statusbar_label_networkpaused: '网络状态',
134
+ fmt_statusbar_label_unknown: '未知',
135
+ fmt_statusbar_label_millisecond: '毫秒',
136
+ fmt_toolbar_tips_expand: '展开工具栏',
137
+ fmt_toolbar_label_connectaudio: '连接音频',
138
+ fmt_toolbar_label_nodevice: '无设备',
139
+ fmt_toolbar_label_camera: '摄像头',
140
+ fmt_toolbar_options_enablecamera: '启用摄像头',
141
+ fmt_toolbar_tips_nodevice: '无可用设备',
142
+ fmt_toolbar_button_audioaccess: '选择音频接入方式',
143
+ fmt_toolbar_options_pcaudio: '连接到电脑音频…',
144
+ fmt_toolbar_options_phoneaudio: '连接到电话音频…',
145
+ fmt_toolbar_options_switchaccessmode: '切换音频接入模式...',
146
+ fmt_toolbar_button_assignnewhost: '分配新的主持人',
147
+ fmt_toolbar_button_assignleave: '分配后离开',
148
+ fmt_toolbar_button_end: '结束',
149
+ fmt_toolbar_button_leave: '离开',
150
+ fmt_toolbar_button_cancel: '取消',
151
+ fmt_popup_tips_endplenarymeeting: '现在结束全体会议吗?',
152
+ fmt_popup_button_endmeeting: '结束会议',
153
+ fmt_popup_button_leavemeeting: '离开会议',
154
+ fmt_popup_button_cancel: '取消',
155
+ fmt_meetingroom_status_abnormal: '会议异常',
156
+ fmt_meetingroom_tips_disconnected: '会议连接中断,请重新加入',
157
+ fmt_meetingroom_join_fail: '加入失败',
158
+ fmt_meetingroom_tips_rejoin: '请重新加入',
159
+ fmt_meetingroom_button_sure: '确定',
160
+ fmt_popup_tips_leavenow: '确定现在离开会议吗?',
161
+ fmt_popup_label_expression: '表情',
162
+ fmt_popup_tips_alreadycopied: '已复制在粘贴板',
163
+ fmt_popup_button_meetinginfor: '复制全部信息',
164
+ fmt_popup_button_activatewaitingroom: '启用等候室',
165
+ fmt_popup_button_openvideo: '开启视频',
166
+ fmt_popup_button_drag: '拖动',
167
+ fmt_popup_label_muted: '已静音',
168
+ fmt_popup_label_turnedon: '已开麦',
169
+ fmt_popup_label_meetingduration: '会议时长{reason1}分钟',
170
+ fmt_leave_tips_removetip: '你被请出这个会议,点击按钮后将退出会议',
171
+ fmt_leave_tips_classover: '会议已结束,请点击按钮离开会议室。',
172
+ fmt_toolbar_label_receiver: '听筒',
173
+ fmt_toolbar_label_me: '我',
174
+ fmt_toolbar_label_ear_phone: '耳机',
175
+ fmt_toolbar_label_confirm: '确定',
176
+ fmt_toolbar_label_open: '打开',
177
+ fmt_toolbar_label_unlock: '解锁',
178
+ fmt_toolbar_tips_microphone_open: '麦克风开启',
179
+ fmt_toolbar_tips_microphone_close: '麦克风关闭',
180
+ fmt_toolbar_tips_camera_open: '摄像头开启',
181
+ fmt_toolbar_tips_camera_close: '摄像头关闭',
182
+ fmt_toolbar_tips_host_forbid_open_mic: '主持人不允许解除静音',
183
+ fmt_toolbar_tips_host_forbid_open_camera: '主持人不允许开启视频',
184
+ fmt_toolbar_details_info_locked: '(锁定)',
185
+ fmt_toolbar_details_room_locked: '会议锁定中',
186
+ fmt_toolbar_details_room_locked_tip: '任何参会者不能进会',
187
+ fmt_toolbar_tips_details_unlock_meeting: '你已解锁会议,新参会者可以加入',
188
+ fmt_toolbar_tips_actions_route_earphone: '已切换到耳机模式',
189
+ fmt_toolbar_tips_actions_route_receiver: '已切换到听筒模式',
190
+ fmt_toolbar_tips_actions_route_speaker: '已切换到扬声器模式',
191
+ fmt_toolbar_tips_leave_room_lock_title: '会议已被主持人加锁',
192
+ fmt_toolbar_tips_leave_room_lock_info: '离开会议之后不能再加入,确认离开吗?',
193
+ fmt_toolbar_leave_room_end_submit: '确认结束',
194
+ fmt_toolbar_tips_leave_room_end_cancel: '暂时不结束会议',
195
+ fmt_toolbar_tips_leave_host_select_submit_tips: '请指定新的主持人',
196
+ fmt_toolbar_leave_confirm_dialog_kick_title: '离开会议',
197
+ fmt_toolbar_tips_leave_confirm_dialog_kick_info: '你已被主持人移出会议',
198
+ fmt_toolbar_tips_leave_confirm_dialog_kick_info_content: '确定将{reason1}移出会议?',
199
+ fmt_toolbar_leave_confirm_dialog_submit: '知道了',
200
+ fmt_toolbar_tips_leave_confirm_dialog_end_title: '会议已结束',
201
+ fmt_toolbar_tips_leave_confirm_dialog_end_info: '会议已结束,请点击按钮离开会议。',
202
+ fmt_additional_tips_cameraturnon: '接受邀请后,你的摄像头将打开。',
203
+ fmt_additional_button_accept: '接受',
204
+ fmt_additional_button_refuse: '拒绝',
205
+ fmt_additional_tips_unmute: '主持人希望你“解除静音”',
206
+ fmt_additional_tips_agreeturnon: '同意解除后,你的麦克风将打开。',
207
+ fmt_additional_options_Keepsilent: '保持静音',
208
+ fmt_actionbar_button_enable: '启用',
209
+ fmt_actionbar_button_disable: '停止',
210
+ fmt_actionbar_tips_cloudrecording_already: '云录制已{reason1}',
211
+ fmt_actionbar_tips_joinroom_noaudio: '确认在无音频情况下继续加会?',
212
+ fmt_actionbar_tips_canthear: '你听不到其他参会者的声音,他们也无法听到你。',
213
+ fmt_actionbar_button_continue: '继续',
214
+ fmt_actionbar_option_connectaudio: '连接语音',
215
+ fmt_actionbar_label_dialsip: '拨打h.323/sip会议室系统',
216
+ fmt_driver_installation_v_sound_card: '音频驱动已安装完毕,将在重启会议后生效',
217
+ fmt_camera_popup_label_restricted: '摄像头权限受限制',
218
+ fmt_camera_popup_label_system_change: '请到系统设置中修改摄像头权限',
219
+ fmt_camera_popup_button_system_change: '去系统设置修改',
220
+ fmt_camera_popup_button_cancel: '取消',
221
+ fmt_audio_popup_label_restricted: '麦克风权限受限制',
222
+ fmt_audio_popup_label_system_change: '请到系统设置中修改麦克风权限',
223
+ fmt_audio_popup_button_system_change: '去系统设置修改',
224
+ fmt_audio_popup_button_cancel: '取消',
225
+ fmt_audio_popup_button_turning_on: '开启中...',
226
+ fmt_popup_copywrite_stopstreamingnow: '是否停止直播?',
227
+ fmt_popup_options_confirmstop: '确定停止直播',
228
+ fmt_popup_options_placedbottom: '置于底部',
229
+ fmt_popup_options_placedtop: '置于顶部',
230
+ fmt_broadcast_tips_righturl: '请输入正确的直播页面地址',
231
+ fmt_broadcast_tips_anyonewatch: '所有使用这个链接的人都可以收看直播',
232
+ fmt_broadcast_tips_streamingwebpage: '请输入直播流网页的网址',
233
+ fmt_broadcast_tips_rightstreamingwebpage: '请输入正确的直播网页的网址',
234
+ fmt_broadcast_tips_initiatefailed: '发起失败',
235
+ fmt_broadcast_tips_alreadybroadcasting: '你目前已发起直播服务,需停止后才能发起新直播',
236
+ fmt_additional_tips_startstreamingfailed: '启动直播失败,请稍后再试',
237
+ fmt_additional_tips_updatelayoutfailed: '更新直播流布局失败',
238
+ fmt_additional_tips_stoplivefailed: '停止直播失败,请稍后再试',
239
+ fmt_actionbar_livestreaming_option_livenow: '现在就开始自定义直播',
240
+ fmt_actionbar_livestreaming_option_customlive: '自定义直播服务中',
241
+ fmt_actionbar_livestreaming_button_stoplive: '停止直播',
242
+ fmt_actionbar__livestreaming_labels_live: '直播',
243
+ fmt_broadcast_text_copyurl: '该会议在其它平台直播中,你可复制直播链接给他人',
244
+ fmt_broadcast_livestream_stopped: '直播已停止',
245
+ fmt_broadcast_livestream_merge: '将与{reason1}合并',
246
+ fmt_broadcast_livestream_hand_over_relive: '移交主持人完成,直播停止,请重新开启直播',
247
+ fmt_broadcast_livestream_tips_hand_over_pc_to_mobile: '新主持人正在使用移动端参会,暂不支持直播功能,直播已暂停',
248
+ fmt_broadcast_livestream_tips_hand_over_mobile: '您正在使用移动端参会,暂不支持直播功能,直播已暂停',
249
+ fmt_broadcast_livestream_label_stop_pc_only: '只能在电脑端停止直播,但你可复制直播链接给他人',
250
+ fmt_broadcast_livestream_button_hide: '隐藏',
251
+ fmt_broadcast_livestream_button_show: '显示',
252
+ fmt_livestream_window_label_start_live_now: '是否开启直播',
253
+ fmt_livestream_window_button_not_now: '暂不开始',
254
+ fmt_livestream_window_button_start_now: '立即开始',
255
+ fmt_livestream_toast_live_now: '直播已开启',
256
+ fmt_livestream_window_button_keep: '暂不停止',
257
+ fmt_livestream_window_button_end_stream: '立即停止',
258
+ fmt_livestream_toast_live_link_copied: '直播链接已复制到粘贴版',
259
+ fmt_livestream_unable_switch_grid_view: '直播时无法切换成宫格视图',
260
+ //****************** 设备检测&管理 ******************
261
+ fmt_device_label_audio_mute: '静音',
262
+ fmt_device_label_audio_unmute: '解除静音',
263
+ fmt_device_label_video_start: '开启摄像头',
264
+ fmt_device_label_video_stop: '关闭摄像头',
265
+ fmt_device_label_audio_list_selectMicrophone: '选择麦克风...',
266
+ fmt_device_label_audio_list_selectSpeaker: '选择扬声器...',
267
+ fmt_device_label_audio_list_leaveComputerAudio: '停用电脑音频',
268
+ fmt_device_label_audio_list_switchToPhoneCall: '切换到电话音频...',
269
+ fmt_device_label_audio_list_testAudioDevice: '测试麦克风和扬声器...',
270
+ fmt_device_label_audio_list_moreAudioSettings: '更多音频设置...',
271
+ fmt_device_label_video_list_selectCamera: '选择摄像头...',
272
+ fmt_device_label_video_list_selectVirtualBackground: '选择虚拟背景...',
273
+ fmt_device_label_video_list_selectVideoFilter: '选择视频滤镜...',
274
+ fmt_device_label_video_list_moreVideoSettings: '更多视频设置...',
275
+ fmt_modules_tips_notapplicate: '不应用',
276
+ fmt_device_button_signout: '退出',
277
+ fmt_device_statues_opend: '已开启',
278
+ fmt_device_statues_closed: '已关闭',
279
+ fmt_device_options_whitening: '美白',
280
+ fmt_device_options_effects_enable: '点击开启特效背景',
281
+ fmt_device_options_effects_disable: '点击关闭特效背景',
282
+ fmt_device_options_smoother: '磨皮',
283
+ fmt_device_options_brighter: '提亮',
284
+ fmt_device_tips_videoeffectson: '如果开启了摄像头,视频特效将实时变化',
285
+ fmt_device_labels_specialeffects: '特效',
286
+ fmt_device_options_videojoin: '视频入会',
287
+ fmt_modules_labels_devicesettings: '设备设置',
288
+ fmt_status_label_Qualitystatistics: '质量统计',
289
+ fmt_status_label_saysomething: '说点什么',
290
+ fmt_status_label_stoprecord: '停止录制',
291
+ fmt_status_label_rotation: '反转镜头',
292
+ //****************** 入会检测 ******************
293
+ fmt_sip_button_unmute: '申请解除静音',
294
+ fmt_sip_button_opencamera: '请求开启摄像头',
295
+ fmt_sip_button_topup: '置顶',
296
+ fmt_sip_button_rename: '重命名',
297
+ fmt_sip_button_remove: '移出会议',
298
+ fmt_security_options_allowunmute: '允许参会者自我解除静音',
299
+ fmt_device_label_inspection_user_name: '{reason1} (你)',
300
+ fmt_device_label_inspection_mirror_mode: '镜像模式',
301
+ fmt_device_inspection_camera_on: '摄像头已开',
302
+ fmt_device_inspection_turn_on_camera: '打开摄像头',
303
+ fmt_device_label_inspection_switch_camera: '翻转',
304
+ fmt_device_label_inspection_speaker_on: '扬声器已开',
305
+ fmt_device_label_speaker_follow_system: '跟随系统 - {reason1}',
306
+ fmt_device_label_speaker_default: '默认',
307
+ fmt_device_inspection_turn_on_speaker: '打开扬声器',
308
+ fmt_device_inspection_start_meeting: '加入会议',
309
+ fmt_device_label_inspection_audio_route_speaker: '麦克风',
310
+ fmt_device_label_inspection_audio_route_receiver: '听筒',
311
+ fmt_device_inspection_audio_route_headset: '头戴',
312
+ fmt_device_inspection_audio_route_mute: '静音',
313
+ fmt_device_enabled: '已启用',
314
+ fmt_device_disable: '已启用',
315
+ fmt_device_lightening: '美白',
316
+ fmt_device_smoothness: '磨皮',
317
+ fmt_device_redness: '红润',
318
+ fmt_device_reset: '重置',
319
+ fmt_device_beauty_camera_open_remind: '如果开启了摄像头,视频特效将实时变化',
320
+ fmt_device_other_watch_me: '别人看我',
321
+ fmt_device_i_watch_self: '我看自己',
322
+ fmt_device_enable_beauty_filter: '已开启美颜',
323
+ fmt_device_disable_beauty_filter: '已关闭美颜',
324
+ fmt_device_beauty_turnoff: '不应用',
325
+ fmt_device_remind_property_title: '设备性能过低,不建议使用特效',
326
+ fmt_device_remind_property_content: '你的设备性能评分低于最佳体验的要求,如果启用当前功能可能会导致设备发热和卡顿。您是否确定要继续开启该功能?',
327
+ fmt_device_remind_beauty_open_camera_title: '你设置的效果将生效,是否打开摄像头?',
328
+ fmt_device_remind_beauty_open_camera_content: '如果不打开摄像头,退出时美颜不生效',
329
+ fmt_device_confirm_enable: '确定开启',
330
+ fmt_device_mirroring_enable: '开启镜像',
331
+ fmt_device_not_yet: '暂不',
332
+ fmt_device_beauty_on: '开启',
333
+ fmt_device_options_redness: '红润',
334
+ fmt_device_toast_switch_device: '您的音频设备已切换,建议检查音量,避免错过会议内容',
335
+ fmt_device_toast_enable_microphone_maximum: '当前会议连麦人数已达上限,无法帮您打开麦克风,请稍后再试',
336
+ fmt_device_toast_enable_video_maximum: '当前会议视频连接数已达上限,无法帮您打开摄像头,请稍后再试',
337
+ fmt_layout_label_speaker: '演讲者视图',
338
+ fmt_layout_label_gallery: '画廊视图',
339
+ fmt_uimanager_labels_roomname: '房间名称',
340
+ fmt_uimanager_labels_blank: '---',
341
+ fmt_uimanager_labels_Switchview: '切换视图',
342
+ fmt_uimanager_labels_sharing: '正在共享',
343
+ fmt_uimanager_button_returntocontent: '返回共享内容',
344
+ fmt_uimanager_labels_screen: '屏幕',
345
+ fmt_uimanager_labels_whiteboard: '白板',
346
+ fmt_uimanager_tips_passwordcopied: '会议密码已复制到剪贴板',
347
+ fmt_uimanager_labels_wirednetwork: '有线网络',
348
+ fmt_uimanager_option_flipleaf: '向左翻转',
349
+ fmt_uimanager_option_Reset: '重置',
350
+ fmt_uimanager_option_Cameraview: '别人看我',
351
+ fmt_uimanager_option_Selfieview: '我看自己',
352
+ fmt_uimanager_tips_urmuted: '主持人已将你静音',
353
+ fmt_uimanager_tips_urturnedoff: '您已经被主持人关闭摄像头',
354
+ fmt_uimanager_tips_inviteturnon: '主持人邀请你打开摄像头',
355
+ fmt_uimanager_tips_Remove: '移出{reason2}吗',
356
+ fmt_uimanager_tips_designedas: '是否将{reason1}设为会议的 {reason2}?',
357
+ fmt_uimanager_tips_userleaft: '用户已离会',
358
+ fmt_uimanager_labels_Setas: '设为{reason1}',
359
+ fmt_uimanager_tips_allmuted: '你已开启了全体静音',
360
+ fmt_uimanager_tips_meetingunlocked: '你已解锁会议,新参会者可以加入',
361
+ fmt_uimanager_labels_designate: '你被设为',
362
+ fmt_uimanager_labels_Becoming: '{reason2} 成为 {reason1}',
363
+ fmt_uimanager_tips_exceed: '超过限制',
364
+ fmt_uimanager_labels_Clickselect: '点击选择',
365
+ fmt_uimanager_button_determine: '确定',
366
+ fmt_uimanager_button_Meetnow: '进入会议',
367
+ fmt_uimanager_option_dualchannel: '共享双声道',
368
+ fmt_uimanager_option_Sharedmono: '共享单声道',
369
+ fmt_uimanager_option_Monochannel: '单声道',
370
+ fmt_uimanager_option_Stereo: '立体声(高保真)',
371
+ fmt_uimanager_option_Improvefluency: '提高视频流畅度',
372
+ fmt_uimanager_option_Fluencypriority: '视频流畅度优先',
373
+ fmt_uimanager_option_Movebottom: '移动到底部',
374
+ fmt_uimanager_option_Movetop: '移动到顶部',
375
+ fmt_uimanager_labels_Application: '应用',
376
+ fmt_uimanager_tips_ilock: '主持人锁定了会议,其他人不可入会',
377
+ fmt_uimanager_button_close: '关闭',
378
+ fmt_uimanager_option_popwindow: '弹出独立窗口',
379
+ fmt_uimanager_option_mergeview: '合并到视图右侧',
380
+ fmt_uimanager_labels_deviceselect: '请选择设备...',
381
+ fmt_uimanager_labels_mirror: '镜像',
382
+ fmt_modules_labels_speaking: '正在讲话:',
383
+ fmt_modules_status_nowspeaking: '{reason1}正在说话...',
384
+ fmt_uimanager_window_un_pin: '取消固定',
385
+ fmt_uimanager_window_pin_success: '画面已锁定,点击右下角取消锁定',
386
+ fmt_uimanager_window_un_pin_success: '画面已解除锁定',
387
+ fmt_uimanager_window_pin_error_hide_no_video: '你开启了“隐藏非视频参会者”功能,固定视窗无法生效',
388
+ fmt_uimanager_follow_pc: '模拟跟随主持人的电脑视图',
389
+ fmt_chat_label_chat: '聊天',
390
+ fmt_chat_window_title: '聊天',
391
+ fmt_chat_setting_privilege: '参会者可以与以下人员聊天:',
392
+ fmt_chat_setting_privilege_list_no: '无',
393
+ fmt_chat_setting_privilege_list_everyone: '所有人',
394
+ fmt_chat_window_position_popup: '独立弹出',
395
+ fmt_chat_window_position_merge: '合并到主窗口',
396
+ fmt_chat_tips_exceedlimit: '超出字数限制,请先删除再发送',
397
+ fmt_chat_button_muteall: '全体禁言',
398
+ fmt_chat_tips_Networkconnect: '网络连接中...暂不能发送',
399
+ fmt_chat_tips_selectchat: '请选择要聊天的用户',
400
+ fmt_chat_tips_permissionchange: '主持人已更改权限, 请重新选择',
401
+ fmt_chat_option_onlypublic: '仅允许公开聊天',
402
+ fmt_chat_option_onlyprivate: '仅允许私聊主持人和联席主持人',
403
+ fmt_chat_tips_newmessage: '{reason1} 新消息',
404
+ fmt_chat_button_latestlocation: '回到最新位置',
405
+ fmt_chat_tips_freechat: '已开启自由聊天权限',
406
+ fmt_chat_tips_onlypublic: '聊天室权限变更为仅允许公开聊天',
407
+ fmt_chat_tips_muteroom: '已开启了聊天室禁言',
408
+ fmt_chat_labels_sendto: '发送到',
409
+ fmt_chat_option_all: '所有人',
410
+ fmt_chat_tips_selecthost: '请选择主持人或联席主持人',
411
+ fmt_chat_tips_nodata: '暂无数据',
412
+ fmt_chats_label_from: '来自',
413
+ fmt_chats_label_privatechat: '私聊',
414
+ fmt_chat_options_Freechat: '自由聊天',
415
+ fmt_chat_options_Forbidchat: '禁止聊天',
416
+ fmt_chat_options_Notapplicable: '不应用',
417
+ fmt_chat_label_Chatmanagement: '聊天管理',
418
+ fmt_chat_button_MultipleChoice: '多选',
419
+ fmt_chat_tips_otherpartyleave: '该对象可能已离会无法接收消息,请重新选择聊天对象',
420
+ fmt_chat_options_onlyprivatechat: '仅私聊主持人和联席主持人',
421
+ fmt_chat_tips_chatpermissionchange: '聊天室权限变更为仅允许私聊主持人和联席主持人',
422
+ fmt_pairicipant_tips_cohostbeenrevoke: '你的联席主持人身份已收回',
423
+ fmt_pairicipant_tips_cohostrevoke: '已撤销 {reason1} 的联席主持人身份',
424
+ fmt_pairicipant_tips_nolongercohost: '{reason1}不再是联席主持人',
425
+ fmt_pairicipant_label_Now: '现在',
426
+ fmt_pairicipant_tips_notempty: '角色类型不能为空',
427
+ fmt_chat_to_label_to: '向',
428
+ fmt_chat_label_bubbletip: '聊天提示气泡',
429
+ fmt_attendies_label_chatpermisson: '参会者在会议中的聊天权限',
430
+ fmt_chate_tips_leave: '{reason1}可能已离会无法接收消息,请重新选择聊天对象',
431
+ fmt_chat_label_meetingchat: '会议聊天',
432
+ fmt_chate_tips_wordoutrange: '超出字数限制,请调整字数后再发送',
433
+ fmt_chat_txt_max_number: '超出字数限制,请调整字数后再发送',
434
+ fmt_chat_private_tips: '可能已离会无法接收消息,请重新选择聊天对象',
435
+ fmt_chat_send_to: '发送给',
436
+ fmt_chat_copy_to_clipboard: '复制到剪贴板',
437
+ fmt_chat_private_hosts: '请选择要聊天的用户',
438
+ fmt_chat_private_permission_changes: '主持人已经更改权限,请重新选择',
439
+ fmt_chat_status_call_in: '正在语音接入',
440
+ fmt_chat_room_chat_limit: '当前禁言中,无法发送消息',
441
+ fmt_chat_private_to_me: '我',
442
+ fmt_chat_enable_limit: '当前禁言中',
443
+ fmt_chat_say_something: '说点什么',
444
+ fmt_chat_send_cohost: '主持人/联席主持',
445
+ fmt_chat_setting_value: '聊天权限',
446
+ fmt_chat_send_open: '允许自由聊天',
447
+ fmt_chat_send_only_open: '仅允许公开聊天',
448
+ fmt_chat_send_only_cohost: '仅允许私聊主持人和联席主持人',
449
+ fmt_chat_send_limit: '全体参会者禁言',
450
+ fmt_chat_to_me: '发给自己',
451
+ fmt_chat_sending_to: '发给',
452
+ fmt_chat_to_you: '你',
453
+ fmt_send_msg_max_length: '复制到剪贴板(上限{reason1}条)',
454
+ fmt_networkstatus_state_disconnect: '网络连接中...暂不能发送',
455
+ fmt_open_chat_permission: '开启了自由聊天权限',
456
+ fmt_chat_rooms_are_enable: '启用了聊天室',
457
+ fmt_chat_room_mute_is_enabled: '开启了聊天室禁言',
458
+ fmt_chat_only_open: '聊天室权限变更为仅允许公开聊天',
459
+ fmt_chat_only_host_cohost: '聊天室权限变更为仅允许私聊主持人和联席主持',
460
+ fmt_allow_white_board_label_edit: '可编辑白板',
461
+ fmt_chat_copy_me_to: '我对{reason1}说(%2$s):\n %3$s',
462
+ fmt_chat_copy_from_to: '{reason1}对%2$s说(%3$s):\n %4$s',
463
+ fmt_chat_copy_me_to_all: '我对所有人说({reason1}):\n %2$s',
464
+ fmt_chat_copy_from_to_all: '{reason1}对所有人说(%2$s):\n %3$s',
465
+ fmt_chat_back_to_the_latest_location: '回到最新位置',
466
+ fmt_chat_new_unread_messages: '%1$d 新的未读消息',
467
+ fmt_chat_unread_messages: '%1$d 未读消息',
468
+ fmt_chat_private_to_user: 'to {reason1}',
469
+ fmt_chat_network_connect: '连接中%1$s',
470
+ fmt_chat_setting_title: '聊天设置',
471
+ fmt_chat_setting_bubble_tips: '聊天气泡提示',
472
+ fmt_chat_big_bubble: '大气泡',
473
+ fmt_chat_small_bubble: '小气泡',
474
+ fmt_chat_label_enter_message: '请输入文字',
475
+ fmt_chat_label_show_bubble_tips: '展示聊天气泡',
476
+ fmt_chat_label_am: '上午',
477
+ fmt_chat_label_pm: '下午',
478
+ fmt_chat_toast_select_more_error: '最多只能选择50条聊天记录',
479
+ fmt_chat_toast_infraction_error: '聊天内容违规,无法发送',
480
+ fmt_screenshare_window_tab_basic: '基础',
481
+ fmt_screenshare_window_tab_advanced: '高级',
482
+ fmt_screenshare_window_button_start: '开始共享',
483
+ fmt_screenshare_window_checkbox_shareAudio: '共享声音',
484
+ fmt_screenshare_controlbar_button_stop: '停止共享',
485
+ fmt_screenshare_controlbar_button_microphone: '麦克风',
486
+ fmt_screenshare_controlbar_button_camera: '摄像头',
487
+ fmt_screenshare_controlbar_button_security: '安全',
488
+ fmt_screenshare_controlbar_button_participant: '成员列表',
489
+ fmt_screenshare_controlbar_button_newScreenshare: '新的共享',
490
+ fmt_screenshare_controlbar_button_more: '更多',
491
+ fmt_screenshare_controlbar_button_more_chat: '聊天',
492
+ fmt_screenshare_controlbar_button_more_cloudRecord: '云录制',
493
+ fmt_screenshare_controlbar_button_more_live: '直播',
494
+ fmt_screenshare_controlbar_button_more_setting: '设置',
495
+ fmt_screenshare_controlbar_status_sharing: '你正在共享屏幕',
496
+ fmt_screenshare_controlbar_security_list_lock: '锁定会议',
497
+ fmt_screenshare_controlbar_security_list_participant_screenshare: '共享屏幕',
498
+ fmt_screenshare_controlbar_security_list_participant_chat: '聊天',
499
+ fmt_screenshare_controlbar_security_list_participant_unmute: '自我解除静音',
500
+ fmt_screenshare_controlbar_security_list_participant_startVideo: '自我开启视频',
501
+ fmt_screenshare_controlbar_security_list_participant_changeName: '改名',
502
+ fmt_screenshare_controlbar_security_list_participantManagement: '允许参会者',
503
+ fmt_screenshare_button_chosecontent: '选择共享内容',
504
+ fmt_screenshare_tips_newsharing: '发起新的屏幕共享',
505
+ fmt_screenshare_button_sharewhiteboard: '共享白板',
506
+ fmt_screenshare_options_alreadyopend: '共享白板(其他人已开启)',
507
+ fmt_screenshare_options_allow: '允许参会者',
508
+ fmt_screenshare_options_editable: '可标注和编辑白板',
509
+ fmt_screenshare_button_disableshare: '停用{reason1}的共享',
510
+ fmt_screenshare_label_application: '应用',
511
+ fmt_screenshare_tips_imsharing: '我在共享白板中',
512
+ fmt_screenshare_tips_smonesharing: '有人在共享白板中',
513
+ fmt_screenshare_tips_alreadyopened: '已有人开启白板',
514
+ fmt_screenshare_button_stopshare: '停用',
515
+ fmt_screenshare_button_localrecordingmiss: '本地录制',
516
+ fmt_screenshare_tips_hostprohibits: '主持人禁止屏幕共享, 可联系会议管理员开启',
517
+ fmt_screenshare_tips_enablecollection: '屏幕共享开启采集中,请稍后再试',
518
+ fmt_screenshare_tips_hostprohibitssharing: '主持人禁止屏幕共享',
519
+ fmt_screenshare_tips_faild_reselect: '屏幕共享失败, 请重新选择窗口',
520
+ fmt_screenshare_tips_faild_screenselect: '屏幕共享失败, 请重新选择要共享的屏幕',
521
+ fmt_screenshare_tips_faild_restrict: '屏幕共享受限',
522
+ fmt_screenshare_tips_faild_alreadysharing: '已经有人在进行屏幕分享,您暂时不能操作。',
523
+ fmt_screenshare_options_allowshare: '允许会议共享屏幕',
524
+ fmt_screenshare_tips_notavailable: '请前往「系统偏好设置」-「安全与隐私」-「隐私」-「屏幕录制」中勾选会议应用(如已勾选,先取消后再次勾选),修改屏幕录制权限后需重启会议才可生效',
525
+ fmt_screenshare_whiteboard_button_exitdrawing: '退出绘制',
526
+ fmt_screenshare_options_enableedit: '启用白板编辑',
527
+ fmt_actionbar_screenshare_option_selectcontent: '选择共享内容',
528
+ fmt_actionbar_screenshare_labels_others: '他人',
529
+ fmt_modules_labels_sharing: '你正在共享',
530
+ fmt_share_tips_othsersharing: '有其他参会者正在共享',
531
+ fmt_share_tips_stopothersharing: '现在发起共享,将停止{reason1}的共享,是否继续?',
532
+ fmt_share_buttons_contiueshare: '继续共享',
533
+ fmt_share_tips_otherssharing: '有其他参会者正在共享',
534
+ fmt_share_tips_sharingdisabled: '你的共享被停止',
535
+ fmt_share_tips_sharingprohibit_byhost: '主持人{reason1}已停止你的共享',
536
+ fmt_share_tips_sharingprohibit_bycohost: '联席主持人{reason1}已停止你的共享',
537
+ fmt_share_tips_sharingprohibit_gotit: '知道了',
538
+ fmt_share_tips_othersharingboard: '有其他参会者正在共享白板',
539
+ fmt_share_tips_boardonly: '一场会议仅能由一人发起云端白板',
540
+ fmt_share_tips_sharingscreen: '你正在共享屏幕',
541
+ fmt_share_tips_willstopsharingscreen: '现在发起白板共享,将停止你的屏幕共享,是否继续?',
542
+ fmt_share_label_saysomething: '说点什么',
543
+ fmt_share_label_canttalk: '当前禁言中',
544
+ fmt_screenshare_screen_and_board: '共享屏幕和白板',
545
+ fmt_screenshare_editable_board: '可编辑白板',
546
+ fmt_screenshare: '共享',
547
+ fmt_screenshare_button_newshare: '新的分享',
548
+ fmt_screenshare_button_stopsharing: '结束分享',
549
+ fmt_screenshare_status_sharing: '正在屏幕共享',
550
+ fmt_screenshare_button_replace: '替换',
551
+ fmt_screenshare_button_start: '开始',
552
+ fmt_screenshare_button_stop: '停止',
553
+ fmt_screenshare_stop_share_board: '停止共享白板',
554
+ fmt_screenshare_stop_share_screen: '停止共享屏幕',
555
+ fmt_screenshare_no_permission_open_board: '无打开白板权限',
556
+ fmt_screenshare_no_permission_close_board: '无关闭白板权限',
557
+ fmt_screenshare_clash_board_remind_title: '有其他参会者正在共享白板',
558
+ fmt_screenshare_clash_board_remind_content: '会议中的云白板,仅支持一个人发起。',
559
+ fmt_screenshare_clash_screen_share_remind_title: '有其他参会者正在共享',
560
+ fmt_screenshare_clash_screen_share_remind_content: '现在发起共享,将停止{reason1}的屏幕共享,是否继续?',
561
+ fmt_screenshare_clash_screen_share_remind_content_stop_board: '现在发起共享,将停止{reason1}的白板共享,是否继续?',
562
+ fmt_screenshare_opposite_side: '对方',
563
+ fmt_screenshare_continue_share: '继续发起共享',
564
+ fmt_screenshare_cohost_can_not_share_remind: '共享失败,当前只允许主持人发起共享',
565
+ fmt_screenshare_only_host_sharing: '当前只允许主持人发起共享',
566
+ fmt_screenshare_pop_more: '多选',
567
+ fmt_screenshare_room_new_screen_share: '{reason1}正在共享屏幕...',
568
+ fmt_screenshare_room_speaker_spotlight_username: '正在说话:{reason1}',
569
+ fmt_screenshare_stop_other_screen_share: '停止他人的屏幕共享',
570
+ fmt_screenshare_not_open_yet: '暂未开放',
571
+ fmt_screenshare_audio_des: '共享设备音频:',
572
+ fmt_screenshare_audio_on: '开',
573
+ fmt_screenshare_audio_off: '关',
574
+ fmt_screenshare_stop_screen_share: '停止屏幕共享',
575
+ fmt_screenshare_disablelayout_while_share: '共享屏幕或白板时,将禁用大小视窗',
576
+ fmt_screenshare_start: '发起共享',
577
+ fmt_screenshare_stop_your_share: '已停止您的共享',
578
+ fmt_screenshare_tips_share_audio_micon: '需开启麦克风才能播放共享音频',
579
+ fmt_screenshare_tips_share_audio_turnonmic: '你现在想使用共享音频,是否开启麦克风?',
580
+ fmt_screenshare_button_giveup_shareaudio: '放弃共享音频',
581
+ fmt_screenshare_button_confirm_shareaudio: '开启麦克风',
582
+ fmt_screenshare_tips_sharing_audio_keep_on: '共享音频时需保持麦克风打开以保障设备音频正常播放,是否开启麦克风',
583
+ fmt_screenshare_tips_sharing_audio_cancel: '停止音频',
584
+ fmt_screenshare_tips_sharing_audio_confirm: '保持开启',
585
+ fmt_screenshare_tips_sharing_disabled_tocontact: '{reason1}禁止共享, 可联系会议管理员开启',
586
+ fmt_screenshare_toast_network_error_unable_start_screen_share: '网络异常,无法发起屏幕共享,请检查网络设置',
587
+ fmt_screenshare_controlbar_button_annotations: '批注',
588
+ fmt_screenshare_controlbar_annotations_options_attendees_annotate: '允许其他成员添加互动批注',
589
+ fmt_screenshare_controlbar_annotations_options_show_name: '显示批注者名称',
590
+ fmt_screenshare_toast_host_enabled_annotations: '主持人或分享者已开启互动批注',
591
+ fmt_screenshare_toast_host_disabled_annotations: '主持人或分享者已关闭互动批注',
592
+ fmt_screenshare_controlbar_options_clear_all: '清空所有批注',
593
+ fmt_screenshare_toast_annotations_visible_participants: '参会者可以看到你的标注内容',
594
+ fmt_screenshare_controlbar_button_settings: '设置',
595
+ fmt_screenshare_controlbar_settings_label_share_audio_settings: '共享音频设置',
596
+ fmt_screenshare_controlbar_settings_options_enable_share_audio: '开启共享音频',
597
+ fmt_screenshare_controlbar_settings_label_annotation_settings: '互动批注设置',
598
+ fmt_screenshare_controlbar_settings_label_annotation_controls: '互动批注操作',
599
+ fmt_screenshare_toast_annotation_controls_screen_sharing_disabled: '屏幕共享已关闭',
600
+ fmt_screenshare_tips_host_not_enabled_annotations: '主持人或分享者未开启互动批注',
601
+ fmt_screenshare_tips_share_pc_sound: '共享屏幕的同时,参会成员将听到您电脑上的声音',
602
+ fmt_screenshare_tips_video_smoothness: '减少性能占用,提高共享画面的帧率',
603
+ fmt_screenshare_button_share_icloud: '共享iCloud文档',
604
+ fmt_screenshare_button_stop_share_icloud: '停止共享iCloud文档',
605
+ fmt_screenshare_toast_file_type_not_support: '不支持共享该文件类型',
606
+ fmt_screenshare_icloud_button_audio_on: '音频:开',
607
+ fmt_screenshare_icloud_button_audio_off: '音频:关',
608
+ fmt_screenshare_icloud_button_stop_sharing: '停止共享',
609
+ fmt_screenshare_toolbar_label_reconnecting: '网络已断开,正在重连...',
610
+ fmt_screenshare_toast_icloud_file_audio_active: '已共享设备声音,当前设备上所有声音都会被共享',
611
+ fmt_screenshare_tips_unenabled: '会议管理员未开放白板编辑功能',
612
+ fmt_screenshare_whiteboard_options_changetheme: '更改白板主题',
613
+ fmt_screenshare_tips_alreadyoriginalsize: '已是“原始尺寸”',
614
+ fmt_screenshare_lables_originalsize: '原始尺寸',
615
+ fmt_screenshare_whiteboard_tips_alreadyadaptionsize: '已是“适应窗口”',
616
+ fmt_screenshare_lables_adaptionlsize: '适应窗口',
617
+ fmt_screenshare_whiteboard_tips_alreadymaximumsize: '已达最大尺寸',
618
+ fmt_screenshare_whiteboard_button_enlarge: '放大',
619
+ fmt_screenshare_whiteboard_tips_alreadyminumumsize: '已达最小尺寸',
620
+ fmt_screenshare_whiteboard_button_narrow: '缩小',
621
+ fmt_screenshare_whiteboard_tips_someonesharing: '{reason1}正在共享白板',
622
+ fmt_screenshare_whiteboard_tips_reconnecting: '正在为您重新连接白板',
623
+ fmt_screenshare_whiteboard_tips_reconnectinghold: '正在为您重新连接白板,请稍等',
624
+ fmt_screenshare_whiteboard_tips_couldreopen: '如果您长时间不连接白板,可暂时关闭白板',
625
+ fmt_screenshare_whiteboard_tips_reopening: '正在打开白板',
626
+ fmt_screenshare_whiteboard_tips_continuewaiting: '继续等待....',
627
+ fmt_screenshare_whiteboard_button_dontwait: '不等了',
628
+ fmt_screenshare_whiteboard_tips_defaultwhiteboard: '白板(默认)',
629
+ fmt_screenshare_whiteboard_tips_blackboard: '黑板',
630
+ fmt_screenshare_whiteboard_lables_wallpoaster: '粉笔墙报',
631
+ fmt_screenshare_whiteboard_tips_righclick: '右键可以设为常驻色',
632
+ fmt_screenshare_whiteboard_button_setcolor: '设为常驻色',
633
+ fmt_screenshare_whiteboard_button_eraser: '橡皮擦',
634
+ fmt_screenshare_whiteboard_button_empty: '清空',
635
+ fmt_screenshare_whiteboard_button_additionaltools: '附加工具',
636
+ fmt_screenshare_whiteboard_button_withdrwa: '撤回',
637
+ fmt_screenshare_whiteboard_button_forward: '前进',
638
+ fmt_screenshare_whiteboard_button_paintbrush: '画笔',
639
+ fmt_screenshare_whiteboard_button_cutting: '裁切',
640
+ fmt_screenshare_whiteboard_button_screenshot: '截屏',
641
+ fmt_screenshare_whiteboard_options_hideshot: '隐藏房间截屏',
642
+ fmt_screenshare_whiteboard_button_shape: '形状',
643
+ fmt_screenshare_whiteboard_button_laserpen: '激光笔',
644
+ fmt_screenshare_whiteboard_button_boxselection: '框选',
645
+ fmt_screenshare_whiteboard_button_text: '文字',
646
+ fmt_screenshare_whiteboard_button_dragdrop: '拖拽',
647
+ fmt_screenshare_whiteboard_button_savescript: '保存板书',
648
+ fmt_screenshare_whiteboard_button_spread: '展开',
649
+ fmt_screenshare_whiteboard_tips_choose_pen_first: '请先选择形状或画笔',
650
+ fmt_screenshare_whiteboard_tips_downloading: '板书正在下载中',
651
+ fmt_screenshare_whiteboard_tips_savedsuccessfully: '板书保存成功',
652
+ fmt_screenshare_whiteboard_tips_failed: '板书保存失败',
653
+ fmt_screenshare_whiteboard_tips_stoppedboard: '你的共享被停止',
654
+ fmt_screenshare_whiteboard_lables_newshare: '发起新的共享',
655
+ fmt_screenshare_whiteboard_button_gotit: '知道了',
656
+ fmt_screenshare_whiteboard_tips_stopped: '共享已停止',
657
+ fmt_screenshare_whiteboard_tips_cannotjoin: '无法加入房间',
658
+ fmt_screenshare_whiteboard_tips_alreadyopend: '白板已打开',
659
+ fmt_screenshare_whiteboard_tips_stop_continue: '现在发起屏幕共享,将停止你的白板,是否继续?',
660
+ fmt_whiteboard_labels_colour: '颜色',
661
+ fmt_share_options_smallpen: '小号笔触',
662
+ fmt_share_options_midpen: '中号笔触',
663
+ fmt_share_options_bigpen: '大号笔触',
664
+ fmt_share_options_yellow: '黄色',
665
+ fmt_share_options_blue: '蓝色',
666
+ fmt_share_options_purple: '紫色',
667
+ fmt_share_options_green: '绿色',
668
+ fmt_share_options_whiteboard: '白板',
669
+ fmt_share_options_red: '红色',
670
+ fmt_whiteboard_save_success: '图片存储成功',
671
+ fmt_whiteboard_save_failure: '图片下载失败',
672
+ fmt_whiteboard_tips_two_finger_move: '双指移动白板',
673
+ fmt_whiteboard_tips_expanded: '竖屏最大化,可以双指横行移动画布',
674
+ fmt_whiteboard_tips_collapsed: '已适应窗口大小',
675
+ fmt_whiteboard_tips_selector: '可选择内容进行编辑',
676
+ fmt_whiteboard_tips_text: '请输入文字',
677
+ fmt_whiteboard_tips_rectangle: '方形',
678
+ fmt_whiteboard_tips_triangle: '三角形',
679
+ fmt_whiteboard_tips_circle: '圆形',
680
+ fmt_whiteboard_label_pentagon: '五角形',
681
+ fmt_whiteboard_label_prismatic: '棱形',
682
+ fmt_whiteboard_tips_straight: '直线',
683
+ fmt_whiteboard_tips_arrow: '箭头',
684
+ fmt_whiteboard_tips_change_color: '更改颜色和笔触大小',
685
+ fmt_whiteboard_tips_change_bg: '更换选择白板底色',
686
+ fmt_whiteboard_tips_change_bg_white: '已选择白色板',
687
+ fmt_whiteboard_tips_change_bg_black: '已选择黑色板',
688
+ fmt_whiteboard_tips_change_bg_green: '已选择粉笔绿板',
689
+ fmt_whiteboard_tips_stop_share: '停止白板中…',
690
+ fmt_whiteboard_tips_start_share: '开启白板中…',
691
+ fmt_whiteboard_tips_share_failed: '白板共享失败',
692
+ fmt_whiteboard_tips_stop_share_failed: '停止白板共享失败',
693
+ fmt_whiteboard_tips_start_share_failed: '开启白板共享失败',
694
+ fmt_whiteboard_tips_download_permission_denied: '下载板书需要存储权限',
695
+ fmt_whiteboard_dialog_share_stopped_message_host: '主持人({reason1})已停止您的共享',
696
+ fmt_whiteboard_dialog_share_stopped_message_cohost: '联席主持人({reason1})已停止你的共享',
697
+ fmt_whiteboard_dialog_reconnecting_whiteboard: '我们正在重连白板,请稍等... 如果等待时间过长,你可以尝试关闭白板再试。',
698
+ fmt_whiteboard_button_wait: '继续等待',
699
+ fmt_whiteboard_button_close: '关闭白板',
700
+ fmt_whiteboard_tips_wb_connect: '白板连接中...',
701
+ fmt_whiteboard_tips_label_connect: '标注连接中...',
702
+ fmt_whiteboard_tips_share_nick: '{reason1} 的屏幕共享',
703
+ fmt_screenshare_whiteboard_option_disablesharing: '禁用共享屏幕或白板',
704
+ fmt_share_options_blackboard: '黑板',
705
+ fmt_share_options_chalkboard: '粉笔板',
706
+ fmt_share_label_shareboard: '{reason1}的白板共享',
707
+ fmt_information_label_clicktocopy: '点击复制会议 id 号',
708
+ fmt_information_tips_beencopied: '会议号已复制到剪贴板',
709
+ fmt_information_tips_numbercopyfailed: '会议号复制失败',
710
+ fmt_information_options_sharedetail: '分享会议详情或会议链接',
711
+ fmt_meetingInfo_label: '会议详情',
712
+ fmt_meetingInfo_window_title: '分享会议',
713
+ fmt_meetingInfo_window_info_meetingID: '会议号',
714
+ fmt_meetingInfo_window_info_meetingID_copy: '复制',
715
+ fmt_sharing_button_download: '下载灵动会议',
716
+ fmt_invitation_tips_invitationfailed: '邀请链接复制失败',
717
+ fmt_invitation_tips_invitation: '邀请链接已复制到剪贴板',
718
+ fmt_meetinginfo_tips_lockedroom: '会议锁定中',
719
+ fmt_meetinginfo_tips_nobycanjoin: '任何参会者不能进会',
720
+ fmt_meetinginfo_label_code: '密码',
721
+ fmt_meetinginfo_details_code_none: '未设置',
722
+ fmt_meetinginfo_my_name_label: '我的名字',
723
+ fmt_meetinginfo_room_topic: '会议主题',
724
+ fmt_meetinginfo_duration_reservation: '持续时间/预约时间',
725
+ fmt_meetinginfo_dialog_title_meeting_info: '会议详情',
726
+ fmt_meetinginfo_duration_1: '%1$d分钟',
727
+ fmt_meetinginfo_duration_2: '%1$d小时%2$d分钟',
728
+ fmt_meetinginfo_duration_2_no_min: '%1$d小时',
729
+ //标签
730
+ fmt_information_label_lockmeeting: '会议锁定',
731
+ //提示
732
+ fmt_information_tips_lockedbyhost: '{reason1}锁定了会议,其他人不可入会',
733
+ //提示
734
+ fmt_information_tips_copysuccess: '复制成功(?)',
735
+ //提示
736
+ fmt_information_tips_copyfailed: '复制失败(?)',
737
+ //标签
738
+ fmt_information_label_sharemeetingnumber: '分享会议号或邀请链接',
739
+ //提示
740
+ fmt_additional_tips_invitationfailed: '邀请链接复制失败',
741
+ //提示
742
+ fmt_additional_tips_invitation: '邀请链接已复制到剪贴板',
743
+ fmt_sharing_button_copydetailed: '复制全部信息',
744
+ fmt_sharing_label_invitationlink: '邀请链接',
745
+ fmt_sharing_tips_copyto_clipboard: '邀请信息已复制到剪贴板',
746
+ fmt_sharing_tips_copyfull_failed: '邀请信息复制失败 ',
747
+ fmt_sharing_label_invitationdetailed: '{reason1} 邀请你加入会议,会议主题:{reason2},会议时间:{reason3},会议链接:{reason4}',
748
+ //通知
749
+ fmt_information_tips_meeting_inprogress: '会议进行中',
750
+ //通知
751
+ fmt_information_tips_click_return_meeting: '点击返回会议界面',
752
+ fmt_information_label_s_fast_meeting: '的快速会议',
753
+ fmt_networkstatus_window_title: '网络连接',
754
+ fmt_networkstatus_window_rate_good: '好',
755
+ fmt_networkstatus_window_rate_medium: '中',
756
+ fmt_networkstatus_window_rate_bad: '差',
757
+ fmt_networkstatus_window_latency: '网络延迟',
758
+ fmt_networkstatus_window_loss: '丢包率',
759
+ fmt_networkstatus_window_moreData: '更多指标',
760
+ fmt_modules_labels_qualitystatistics: '质量统计',
761
+ fmt_meetinginfo_label_time: '参会时长/预约时长',
762
+ fmt_meetinginfo_label_myname: '我的名字',
763
+ fmt_meetinginfo_label_lockedmeeting: '会议信息(锁定)',
764
+ fmt_networkstatus_up_link: '网络带宽上行',
765
+ fmt_networkstatus_down_link: '网络带宽下行',
766
+ fmt_networkstatus_down_loss: '下行丢包率',
767
+ fmt_networkstatus_up_loss: '上行丢包率',
768
+ fmt_security_options_restract: '收回主持人',
769
+ fmt_security_options_removemultiple: '一键移出多个参会者',
770
+ fmt_security_options_openvideo: '开启视频',
771
+ fmt_security_options_stopvideo: '关闭视频',
772
+ fmt_security_options_openaudio: '开启音频',
773
+ fmt_security_options_stopaudio: '关闭音频',
774
+ fmt_security_options_activatewaitingroom: '启用等候室',
775
+ fmt_security_options_playnotification: '有人加入或离开会议时播放提示音',
776
+ fmt_security_options_silence: '所有人加入会议时静音',
777
+ fmt_security_buttons_allhandsdown: '全体手放下',
778
+ fmt_security_options_muteall: '将所有当前会议室的参会者静音',
779
+ fmt_security_buttons_muteall: '全体静音',
780
+ fmt_security_buttons_cancel: '取消',
781
+ fmt_security_waiting_room: '等候室',
782
+ fmt_security_start_video: '开启视频',
783
+ fmt_security_pause_all: '暂停参会者活动',
784
+ fmt_security_remove_all: '移出参会者',
785
+ fmt_security_tips_lock_meeting_on: '你已锁定会议,其它任何人都无法加入',
786
+ fmt_security_tips_lock_meeting_off: '你已解锁会议,新参会者可以加入',
787
+ fmt_security_tips_waiting_room_on: '你已启用等候室',
788
+ fmt_security_tips_waiting_room_off: '你已关闭等候室',
789
+ fmt_security_tips_join_mute_on: '你已开启全员入会静音',
790
+ fmt_security_tips_join_mute_off: '你已关闭全员入会静音',
791
+ fmt_security_tips_share_screen_on: '你已禁用了参会者的屏幕共享',
792
+ fmt_security_tips_share_screen_off: '你已启用了参会者的屏幕共享',
793
+ fmt_security_tips_start_audio_on: '您已允许自我解除静音',
794
+ fmt_security_tips_start_audio_off: '您已禁止自我解除静音',
795
+ fmt_security_tips_start_video_on: '您已允许开启视频',
796
+ fmt_security_tips_start_video_off: '您已禁止开启视频',
797
+ fmt_security_tips_host_start_video_on: '{reason1}已允许开启视频',
798
+ fmt_security_tips_host_start_video_off: '{reason1}已取消开启视频',
799
+ fmt_security_chat_with_hosts: '主持人和联席',
800
+ fmt_security_tips_allow_write_board: '您已允许编辑白板',
801
+ fmt_security_tips_disallow_write_board: '您已禁止编辑白板',
802
+ fmt_failure_popup_label_startup_fail: '启动失败',
803
+ fmt_failure_popup_label_startup_check: '请优先检查启动参数与网络设置',
804
+ fmt_failure_popup_button_i_know: '我已知悉',
805
+ fmt_failure_popup_label_crash: '应用出现异常',
806
+ fmt_failure_popup_label_crash_tips: '应用出现异常,请关闭应用重试',
807
+ fmt_failure_popup_button_close_app: '关闭应用',
808
+ fmt_failure_popup_button_refresh: '刷新',
809
+ fmt_qualitystatistics_label_video: '视频',
810
+ fmt_qualitystatistics_label_audio: '音频',
811
+ fmt_qualitystatistics_label_audio_bit: '码率',
812
+ fmt_qualitystatistics_label_audio_mic: '麦克风',
813
+ fmt_qualitystatistics_label_audio_speaker: '扬声器',
814
+ //****************** 设置 ******************
815
+ fmt_settings_option_setting: '设置',
816
+ fmt_settings_option_general: '常规设置',
817
+ fmt_settings_option_about_us: '关于我们',
818
+ fmt_settings_option_about_videoset: '视频设置',
819
+ fmt_settings_option_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: '开发',
825
+ fmt_settings_option_enviroment_Test: '测试',
826
+ fmt_settings_option_enviroment_Pre: '预生产',
827
+ fmt_settings_option_enviroment_Pro: '生产',
828
+ fmt_settings_label_region: '区域设置',
829
+ fmt_settings_label_about_us_about_us: '关于我们',
830
+ fmt_settings_label_aboutus_ver: '灵动会议版本',
831
+ fmt_settings_label_aboutus_declaration: '本页面为在线会议平台演示Demo ,仅做功能演示,并非正式线上产品',
832
+ fmt_settings_label_video_resolution: '摄像头分辨率',
833
+ fmt_settings_label_video_bitrate_frame: '摄像头码率/帧率',
834
+ fmt_settings_label_video_resolution_small: '摄像头分辨率(小流)',
835
+ fmt_settings_label_video_bitrate_frame_small: '摄像头码率/帧率(小流)',
836
+ fmt_settings_label_video_screenshare_resolution: '屏幕共享分辨率',
837
+ fmt_settings_label_video_screenshare_bitrate_frame: '屏幕共享码率/帧率',
838
+ fmt_settings_link_about_us_user_agreement: '用户协议',
839
+ fmt_settings_link_about_us_privacy_policy: '隐私条例',
840
+ fmt_settings_label_aboutus_slogan: '声网灵动会议',
841
+ fmt_settings_button_logout: '退出登录',
842
+ fmt_setting_label_setting: '设置',
843
+ fmt_setting_option_Voice: '语音设置',
844
+ fmt_setting_option_Video: '视频设置',
845
+ fmt_setting_label_Speaker: '扬声器',
846
+ fmt_setting_label_oututlevel: '输出级别',
847
+ fmt_setting_button_Speaker_pause: '暂停播放',
848
+ fmt_setting_label_volume: '输出音量',
849
+ fmt_setting_option_volumeadjust: '自动调整{reason1}音量',
850
+ fmt_setting_label_Mic: '麦克风',
851
+ fmt_setting_button_Mic: '检测麦克风',
852
+ fmt_setting_button_Speaker_recording: '暂停录制',
853
+ fmt_setting_label_3a: '降低背景噪声',
854
+ fmt_setting_option_3alow: '低',
855
+ fmt_setting_option_3amoderate: '适中',
856
+ fmt_setting_option_3ahigh: '高',
857
+ fmt_setting_label_professional: '音乐和专业音频',
858
+ fmt_setting_option_orinalvoise: '显示会议中选项,以通过麦克风“打开原声”',
859
+ fmt_setting_tips_speaker: '点击测试扬声器',
860
+ fmt_setting_tips_mic: '请对着你的麦克风说话。如果你无法听到自己的声音,请更换麦克风',
861
+ fmt_setting_tips_speaker_unwork: '如果你无法听到测试音,请更换扬声器',
862
+ fmt_setting_tips_mic_unwork: '如果你无法听到测试音,请更换麦克风',
863
+ fmt_setting_label_preview: '效果预览',
864
+ fmt_setting_option_preview_highdefinition: '高清',
865
+ fmt_setting_option_basics: '基础',
866
+ fmt_setting_option_backgrounds: '背景',
867
+ fmt_setting_option_beauty: '美颜',
868
+ fmt_setting_option_high_definition: '视频高清',
869
+ fmt_setting_option_joinmeeting: '入会开启摄像头',
870
+ fmt_setting_option_joinmeeting_preview: '加入视频会议时适中显示视频预览框',
871
+ fmt_setting_option_hidenonvideo: '隐藏非视频参会者',
872
+ fmt_setting_label_maxattendees: '画廊视图下单屏显示的最大参会者人数',
873
+ fmt_setting_label_maxattendees_16: '16名参会者',
874
+ fmt_setting_label_maxattendees_25: '25名参会者',
875
+ fmt_modules_labels_Videobackground: '视频背景',
876
+ fmt_modules_tips_Imagebackground: '图片背景',
877
+ fmt_internalsetting_label_generalsetting: '常规设置',
878
+ fmt_internalsetting_label_inputlevel: '输入级别',
879
+ fmt_internalsetting_label_inputvolume: '输入音量',
880
+ fmt_internalsetting_label_automatic: '自动',
881
+ fmt_internalsetting_tips_backgroundsound: '(有微弱的背景音时使用)',
882
+ fmt_internalsetting_tips_fanpan: '(有电脑风扇声、敲笔声时使用)',
883
+ fmt_internalsetting_tips_dogbarking: '(环境较嘈杂时使用)',
884
+ fmt_internalsetting_label_senior: '高级',
885
+ fmt_internalsetting_button_detectspeaker: '检测扬声器',
886
+ fmt_internalsetting_status_recording: '录制中',
887
+ fmt_internalsetting_status_nodevice: '无设备',
888
+ fmt_internalsetting_labels_enableoptions: '开启原声时启用这些选项',
889
+ fmt_internalsetting_options_highqualitymusic: '高保真音乐模式',
890
+ fmt_internalsetting_options_echocancell: '回声消除',
891
+ fmt_internalsetting_options_stereo: '立体声',
892
+ fmt_internalsetting_labels_audiostereoencode: '此选项允许对音频进行立体声编码。需要使用具有立体声效果的麦克风或音频接口。此选项会增加CPU使用率,占用更多网络带宽。',
893
+ fmt_internalsetting_tips_preventechoes: '防止捕获或产生回声以提高音质。如果你未使用耳机或弹奏乐器,则建议启用此选项。',
894
+ fmt_internalsetting_tips_optiomizeaudio: '可优化音频以提供最高品质的音效。此功能会增加CPU使用率,占用更多网络带宽。为获得最佳效果,强烈推荐连接以太网而非wifi。',
895
+ fmt_internalsetting_tips_speakerpriority: '启语音激励后,会优先显示正在说话的与会成员。',
896
+ fmt_internalsetting_labels_voicestimulation: '语音激励',
897
+ fmt_internalsetting_options_hidenonvideo: '隐藏非视频参会者',
898
+ fmt_internalsetting_options_adjustlowlight: '调整以使用弱光补偿',
899
+ fmt_internalsetting_options_closevideojoin: '加入会议时关闭我的视频',
900
+ fmt_internalsetting_options_alwaysbox: '加入视频会议时始终显示视频预览对话框',
901
+ fmt_internalsetting_labels_advancedsetting: '高级设置',
902
+ fmt_internalsetting_options_videonoisereduction: '通过降噪优化视频质量',
903
+ fmt_internalsetting_options_hardwareacceleration: '为视频接收使用硬件加速',
904
+ fmt_internalsetting_tips_nocamerajoin: '未选择开启摄像头入会,当前只是视频特效预览画面',
905
+ fmt_internalsetting_options_mirromyvideo: '镜像我的视频',
906
+ fmt_internalsetting_tips_optimizevideo: '勾选后,基于软件的噪声消除将优化视频画质',
907
+ fmt_internalsetting_tips_reducevideo: '勾选后,硬件编解码器将降低视频编解码对CPU的消耗',
908
+ fmt_internalsetting_labels_currency: '通用',
909
+ fmt_internalsetting_labels_audiovisual: '音视频',
910
+ fmt_internalsetting_labels_application: '本应用',
911
+ fmt_internalsetting_labels_other: '其他',
912
+ fmt_internalsetting_labels_bandwidth: '带宽',
913
+ fmt_internalsetting_labels_Network: '网络',
914
+ fmt_internalsetting_labels_Networktype: '网络类型',
915
+ fmt_internalsetting_labels_Maximumresolution: '最大分辨率',
916
+ fmt_internalsetting_labels_Framerate: '帧率',
917
+ fmt_internalsetting_labels_Bitrate: '码率',
918
+ fmt_internalsetting_labels_resolvingpower: '分辨率',
919
+ fmt_internalsetting_labels_bitrate2: '码率',
920
+ fmt_internalsetting_labels_mic: '麦克风',
921
+ fmt_internalsetting_labels_speaker: '扬声器',
922
+ fmt_internalsetting_labels_Memory: '内存',
923
+ fmt_settings_button_unlockroom: '解锁',
924
+ fmt_internalsetting_beauty_background: '背景和美颜',
925
+ fmt_internalsetting_sites: '备用地址',
926
+ fmt_internalsetting_mini_meeting: '最小化会议',
927
+ fmt_internalsetting_raise_hand: '举手',
928
+ fmt_internalsetting_disconnect_audio: '断开音频',
929
+ fmt_internalsetting_select_audio: '选择音频',
930
+ fmt_internalsetting_other_join: '入会设置',
931
+ fmt_internalsetting_other_personal: '个人设置(只对本人视图有效)',
932
+ fmt_internalsetting_other_join_mute: '成员入会时静音',
933
+ fmt_internalsetting_other_join_sound: '参会者加入和离开时有声音提示',
934
+ fmt_internalsetting_other_join_name: '参会者加入时显示名称',
935
+ fmt_internalsetting_other_hide_no_video_toast: '已在本端隐藏未开视频的用户视窗',
936
+ fmt_internalsetting_other_hide_no_video_pin_cancelled: '你开启了“隐藏非视频窗口功能”,固定视窗被取消。',
937
+ fmt_internalsetting_other_hide_my_window_pin_cancelled: '你开启了“隐藏我的视频功能”,固定视窗被取消。',
938
+ fmt_internalsetting_other_hide_me: '隐藏我的视频',
939
+ fmt_internalsetting_other_hide_me_toast: '其他成员入会或开启视频流后,将在本机隐藏你的视频窗',
940
+ fmt_internalsetting_other_spot_light: '语音激励',
941
+ fmt_internalsetting_other_spot_light_desc: '开启语音激励后,会优先显示正在说话的与会成员。',
942
+ fmt_internalsetting_room_window_top: '上下视窗布局',
943
+ fmt_internalsetting_room_window_big: '大小视窗布局',
944
+ fmt_internalsetting_room_window_left: '左右视窗布局',
945
+ fmt_internalsetting_room_window_tip: '共享屏幕共享和白板时禁用大小视窗',
946
+ fmt_internalsetting_room_window_switched: '切换为{reason1}',
947
+ fmt_internalsetting_labels_Network_type: '网络类型',
948
+ fmt_internalsetting_labels_resolving_power: '分辨率',
949
+ fmt_internalsetting_options_play_prompt: '入会播放提示音',
950
+ fmt_internalsetting_labels_audio: '音频',
951
+ fmt_internalsetting_labels_hide_video_off: '勾选后,你将在会中看不到未开摄像头的视图(其他人依旧能看到)',
952
+ fmt_internalsetting_labels_hide_my_video: '勾选后,你将在会中看不到自己的视图(其他人依旧能看到你的视图)',
953
+ fmt_settings_labels_virtual_background: '虚拟背景',
954
+ fmt_settings_labels_prompt_tone: '提示音',
955
+ fmt_settings_options_video_on: '入会开启摄像头',
956
+ fmt_settings_options_audio_on: '入会开启麦克风',
957
+ fmt_settings_general_label_dual_display: '启用双显示器模式',
958
+ fmt_settings_tips_dual_display: '在不同的屏幕上分别显示参会者的视频和屏幕共享内容',
959
+ fmt_premeeting_setting_label_join_with_prompt_sound: '入会播放提示音',
960
+ //****************** 会控设置 ******************
961
+ fmt_meeting_setting_button_meeting_settings: '会控设置',
962
+ fmt_meeting_setting_labels_audio_video_settings: '音视频选项(进入会议时)',
963
+ fmt_meeting_setting_options_mute_participants: '参会者入会时静音',
964
+ fmt_meeting_setting_options_disable_video: '参会者入会时关闭视频',
965
+ fmt_meeting_setting_labels_Security: '会议安全',
966
+ fmt_meeting_setting_options_enable_waiting_room: '开启等候室',
967
+ fmt_meeting_setting_options_jbh: '允许参会者在主持人入会前加入会议',
968
+ fmt_meeting_setting_options_show_time: '显示会议时间',
969
+ fmt_meeting_setting_options_show_duration: '显示参会时长',
970
+ fmt_meeting_setting_options_show_information: '显示会议信息',
971
+ fmt_meeting_setting_labels_advanced: '高级功能',
972
+ fmt_meeting_setting_options_enable_live_streaming: '允许使用直播',
973
+ fmt_meeting_setting_options_enable_interpretation: '允许使用同声传译',
974
+ fmt_meeting_setting_options_generate_meeting_minutes: '创建AI会议纪要',
975
+ fmt_meeting_setting_toast_enabled_mute: '你已开启入会静音',
976
+ fmt_meeting_setting_toast_turned_off_video: '你已开启入会关闭视频',
977
+ fmt_meeting_setting_toast_disabled_mute: '你已关闭入会静音',
978
+ fmt_meeting_setting_toast_turned_on_video: '你已关闭入会关闭视频',
979
+ //****************** 设置提示部分 ******************
980
+ fmt_settings_labels_sidebar: '侧边栏',
981
+ fmt_settings_labels_fold: '折叠',
982
+ fmt_settings_labels_theme: '主题',
983
+ fmt_settings_tips_sharingprohibited: '主持人禁止共享,可联系会议管理员开启',
984
+ fmt_settings_tips_videoenabled: '主持人已允许开启视频',
985
+ fmt_settings_tips_disabledvideo: '主持人已禁止开启视频',
986
+ fmt_settings_tips_allowedScreensharing: '主持人已允许屏幕共享',
987
+ fmt_settings_tips_disabledScreensharing: '主持人已禁止屏幕共享',
988
+ fmt_settings_tips_allowedchat: '主持人已允许聊天',
989
+ fmt_settings_tips_banedchat: '主持人已禁止聊天',
990
+ fmt_settings_tips_allowedselfunmuting: '主持人已允许自我解除静音',
991
+ fmt_settings_tips_disabledselfunmuting: '主持人不允许自我解除静音',
992
+ fmt_settings_tips_muteallwhilejoin: '主持人已设置所有参会者加入会议时静音',
993
+ fmt_settings_labels_you: '你',
994
+ fmt_settings_tips_Blockallchat: "'全部禁言'",
995
+ fmt_settings_tips_groupchatonly: "'仅限群组聊天'",
996
+ fmt_settings_tips_hostchatonly: "'仅主持人与联席主持人可以聊天'",
997
+ fmt_settings_tips_confirmactivate: '确定开启',
998
+ fmt_settings_tips_passwordcopyfailed: '会议密码复制失败',
999
+ fmt_settings_tips_sharing: '你正在屏幕共享',
1000
+ fmt_settings_labels_miniutes: '{reason1}分钟',
1001
+ fmt_settings_options_enableoptions: '开启原声时启用这些选项',
1002
+ fmt_settings_options_highquality: '高保真音乐模式',
1003
+ fmt_settings_options_echocancel: '回声消除',
1004
+ fmt_settings_options_stereo: '立体声',
1005
+ fmt_settings_options_toolbarcollapse: '收起工具栏',
1006
+ fmt_settings_tips_screenlocked: '画面已锁定,点击视窗左上角可以取消固定',
1007
+ fmt_settings_tips_screenunlock: '已解除画面锁定',
1008
+ fmt_settings_options_pausecloudrecording: '暂停云录制',
1009
+ fmt_settings_popup_disable_while_microphone_detected: '麦克风在检测时,此功能禁用',
1010
+ fmt_settings_popup_disable_while_speaker_detected: '扬声器在检测时,此功能禁用',
1011
+ fmt_settings_popup_label_use_phone_audio: '使用手机音频',
1012
+ fmt_settings_popup_label_link_audio_to_hear_others: '为了听见其他用户的声音,请使用手机音频加入会议',
1013
+ fmt_settings_popup_label_select_audio: '选择音频',
1014
+ fmt_settings_popup_label_audio_not_connect_click_select: '未接入声音,请点击选择',
1015
+ //****************** 直播 ******************
1016
+ fmt_live_label_thirdplatform: '直播至第三方平台',
1017
+ fmt_live_label_videostreamingurl: '视频流地址',
1018
+ fmt_live_inputtips_videostreamingurl: '请输入视频流URL',
1019
+ fmt_live_label_videostreamingkey: '视频流秘钥',
1020
+ fmt_live_inputtips_videostreamingkey: '请输入视频流秘钥',
1021
+ fmt_live_label_ivepage: '直播页面',
1022
+ fmt_tips_label_Livepage: '所有获取到链接的人都能收看直播',
1023
+ fmt_tips_inputlabel_Livepage: '请输入直播流网页网址',
1024
+ fmt_tips_button_Golive: '发起直播',
1025
+ fmt_tips_button_Stopolive: '停止直播',
1026
+ fmt_live_tips_alreadylive: '你目前已发起直播服务,需要听之后才能再次发起直播',
1027
+ fmt_live_tips_livestreaming: '直播中',
1028
+ fmt_live_label_customizedlive: '自定义直播服务',
1029
+ fmt_live_label_watchcustomizedlive: '在自定义直播服务上观看直播',
1030
+ fmt_live_label_copylink: '复制直播链接',
1031
+ fmt_tips_button_Stopsteaming: '停止直播',
1032
+ fmt_live_label_push_platform: '将会议推送到指定的直播平台',
1033
+ //****************** 录制 ******************
1034
+ fmt_record_button_Cloudrecording: '云录制',
1035
+ fmt_record_button_Localrecording: '本地录制',
1036
+ fmt_record_button_pauserecording: '暂停',
1037
+ fmt_record_tips_Localrecording_Start: '本地录制启动中',
1038
+ fmt_record_tips_Cloudrecording_Start: '云录制启动中',
1039
+ fmt_record_tips_recording: '录制中',
1040
+ fmt_record_tips_Cloudrecording: '云录制中',
1041
+ fmt_record_button_Cloudrecording_restore: '恢复云录制',
1042
+ fmt_record_button_Localrecording_restore: '恢复本地录制',
1043
+ fmt_record_button_Cloudrecording_stop: '停止云录制',
1044
+ fmt_record_button_Localrecording_stop: '停止本地录制',
1045
+ fmt_record_tips_recordingpaused: '录制暂停',
1046
+ fmt_record_tips_recordingrestored: '录制恢复',
1047
+ fmt_record_tips_Cloudrecording_inprogress: '会议云录制中',
1048
+ fmt_record_tips_Localrecording_inprogress: '会议本地录制中',
1049
+ fmt_recording_button_rrecording: '录制',
1050
+ fmt_actionbar_record_tips_stoprecord: '确定现在停止录制吗?',
1051
+ fmt_actionbar_record_option_stoprecord: '确定停止录制',
1052
+ fmt_modules_labels_localrecord: '本地录制保存在',
1053
+ fmt_modules_labels_notset: '未设置',
1054
+ fmt_modules_button_change: '更改',
1055
+ fmt_modules_button_open: '打开',
1056
+ fmt_modules_labels_surplus: '剩余',
1057
+ fmt_record_scene_meeting_rec: '录制',
1058
+ fmt_record_tip_share_scaling: '双指可以缩放屏幕共享内容',
1059
+ fmt_record_gallery_guide_toast: '长按宫格视窗可以唤起“更多”',
1060
+ fmt_record_share_nick: '{reason1} 的屏幕共享',
1061
+ fmt_record_share_board_nick: '{reason1} 的白板共享',
1062
+ fmt_record_new_sharing_stream_tip: '{reason1}正在共享屏幕...',
1063
+ fmt_record_record_starting2: '启动中',
1064
+ fmt_record_record_pause_for_more: '云录制暂停',
1065
+ fmt_record_record_start_fail: '云录制启动失败',
1066
+ fmt_record_record_resume_fail: '云录制恢复失败',
1067
+ fmt_record_record_stop_fail: '云录制停止失败',
1068
+ fmt_record_record_pause_fail: '云录制暂停失败',
1069
+ fmt_record_record_stoped: '云录制已停止',
1070
+ fmt_record_record_started: '云录制已开始',
1071
+ fmt_record_record_stop_ask: '确定现在停止录制吗?',
1072
+ fmt_record_record_stop_confirm: '确定停止录制',
1073
+ fmt_record_toast_record_paused: '云录制已暂停',
1074
+ fmt_record_toast_record_resumed: '云录制已恢复',
1075
+ fmt_pstn_label_accessmethod: '选择音频接入方式',
1076
+ fmt_pstn_options_PCaudioconnet: '连接到电脑音频',
1077
+ fmt_pstn_options_phoneaudioconnet: '连接到电话音频',
1078
+ fmt_pstn_options_audio_setting: '音频设置',
1079
+ fmt_pstn_options_PCaudio: '麦克风接入',
1080
+ fmt_pstn_options_phoneaudio: '电话接入',
1081
+ fmt_pstn_label_connected: '电话接入-已接入',
1082
+ fmt_pstn_label_accessmethodPC: '通过电脑音频接入',
1083
+ fmt_pstn_button_devicetest: '测试扬声器和麦克风',
1084
+ fmt_pstn_label_micselect: '选择麦克风',
1085
+ fmt_pstn_button_PCaudiostop: '停止电脑音频接入',
1086
+ fmt_pstn_label_alreadyin: '已通过电话参加会议?请按#{reason1}#',
1087
+ fmt_pstn_options_rememberphone: '在本机上记住该号码',
1088
+ fmt_pstn_button_callme: '呼叫我',
1089
+ fmt_pstn_label_dialinphone: '或用电话拨入',
1090
+ fmt_pstn_label_countryregion: '国家/地区',
1091
+ fmt_pstn_label_dial: '拨号',
1092
+ fmt_pstn_label_meetingid: '会议ID',
1093
+ fmt_pstn_label_participantid: '参会者ID',
1094
+ fmt_pstn_label_viaphone: '正在使用电话连接语音',
1095
+ fmt_pstn_status_unconnectted: '未连接',
1096
+ fmt_pstn_tips_alreadyphone: '已通过电话音频接入,请挂断电话后再进行音频切换',
1097
+ fmt_pstn_status_calling: '正在呼叫',
1098
+ fmt_pstn_button_hangupphone: '挂断电话',
1099
+ fmt_pstn_label_merge: '将{reason1}电话号码)合并',
1100
+ fmt_pstn_button_merge: '合并',
1101
+ fmt_pstn_button_cancel: '取消',
1102
+ fmt_pstn_label_phonecall: '电话呼叫',
1103
+ fmt_pstn_inputtips_name: '参会者名称,名字将会在会议中显示',
1104
+ fmt_pstn_button_phonecall: '电话呼叫',
1105
+ fmt_pstn_label_or: '或',
1106
+ fmt_pstn_label_copylink: '复制会议链接',
1107
+ fmt_pstn_status_ringing: '响铃中',
1108
+ fmt_pstn_status_Answered: '已接听',
1109
+ fmt_pstn_status_failed: '失败',
1110
+ fmt_pstn_status_hungup: '对方挂断电话',
1111
+ fmt_pstn_status_maitain: '保持电话连接',
1112
+ fmt_PSTN_status_connected: '已接入',
1113
+ fmt_PSTN_label_pcaudio: '电脑音频',
1114
+ fmt_PSTN_status_hangup: '已挂断',
1115
+ fmt_PSTN_status_china: '中国',
1116
+ fmt_PSTN_status_usa: '美国',
1117
+ fmt_PSTN_tips_unempty: '不能为空',
1118
+ fmt_PSTN_tips_formaterror: '格式有误',
1119
+ fmt_PSTN_status_voiceconnected: '已连接语音',
1120
+ fmt_PSTN_status_hungup: '已挂断电话',
1121
+ fmt_pstn_tips_errorformat: '格式错误',
1122
+ fmt_gateway_tips_nodata: '你已连接电脑音频',
1123
+ fmt_PSTN_toast_merged: '已与{reason1}合并',
1124
+ fmt_sip_options_callout: '呼出',
1125
+ fmt_sip_options_callin: '呼入',
1126
+ fmt_sip_inputtips_sip_323: '请输入IP地址或E.164号码',
1127
+ fmt_sip_options_H323: 'H323',
1128
+ fmt_sip_options_SIP: 'SIP',
1129
+ fmt_sip_button_call: '呼叫',
1130
+ fmt_sip_button_Hangup: '挂断',
1131
+ fmt_sip_label_dialviasip: '在H.323/SIP会议室系统中拨号',
1132
+ fmt_sip_label_dial: '拨号',
1133
+ fmt_sip_label_inputid: '输入会议ID',
1134
+ fmt_sip_label_password: '密码',
1135
+ fmt_pstn_status_dialling: '正在拨号',
1136
+ fmt_pstn_status_raining: '响铃中',
1137
+ fmt_SIP323_copywrite_phonenumber: '手机号码(必填)',
1138
+ fmt_SIP323_options_detailedinfor: '复制详细会议信息',
1139
+ fmt_SIP323_tips_alreadycopied: '已复制在粘贴板',
1140
+ fmt_localrecord_labels_record: '录制',
1141
+ fmt_localrecord_labels_savingto: '本地录制保存在',
1142
+ fmt_localrecord_button_savingto: '更改',
1143
+ fmt_localrecord_button_open: '打开',
1144
+ fmt_localrecord_labels_remaining_storage: '剩余{reason1}G',
1145
+ fmt_localrecord_options_videorecord_whileshare: '屏幕共享期间同时录制视频窗口',
1146
+ fmt_localrecord_options_temporaryfiles_saved: '保留临时录制文件',
1147
+ fmt_localrecord_options_localrecoding_onlyadmin: '仅主持人与联席主持人可以发起录制 ',
1148
+ fmt_localrecord_tips_origialfiles_save: '保留原始文件,以便在出现问题时帮助会议提供方进行故障排除',
1149
+ fmt_localrecord_tips_change_storage: '更改存储地址',
1150
+ fmt_localrecord_tips_ensufficient_storage: '本地磁盘空间不足',
1151
+ fmt_localrecord_tips_: '该磁盘空间不足2G,会影响录制文件存储,建议更换文件保存位置',
1152
+ fmt_localrecord_button_cancel: '取消',
1153
+ fmt_localrecord_button_confirm: '确定',
1154
+ fmt_localrecord_options_local_recording: '本地录制',
1155
+ fmt_localrecord_labels_permissions_localrecording: '本地录制权限',
1156
+ fmt_localrecord_options_onlyadmin_record: '仅会议管理员可录制',
1157
+ fmt_localrecord_options_allmember_canrecord: '全体成员可录制',
1158
+ fmt_localrecord_options_setting_recording: '录制设置',
1159
+ fmt_localrecord_options_localrecording_onlyuse: '本地录制(仅限使用)',
1160
+ fmt_localrecord_popup_enable_local_recording: '是否开启本地录制',
1161
+ fmt_localrecord_popup_record_audiovideo: '开启后,将录制会议中的音视频画面与共享屏幕内容,并告知所有参会成员',
1162
+ fmt_localrecord_popup_start_local_recording: '是否开启云录制',
1163
+ fmt_localrecord_popup_remind_afterstart: '开启后,所有参会成员将受到录制开始提醒',
1164
+ fmt_localrecord_popup_invite_start_recoding: '邀请会议管理员开启云录制',
1165
+ fmt_localrecord_popup_onlyadmin_recording: '只有主持人和联席主持人可以启用云录制功能,你是否向他们发起云录制邀请',
1166
+ fmt_localrecord_popup_open_recording: '开启',
1167
+ fmt_localrecord_popup_cancel_recording: '取消',
1168
+ fmt_localrecord_popup_invite: '发起邀请',
1169
+ fmt_localrecord_popup_cancel_invite: '取消',
1170
+ fmt_localrecord_tips_already_start: '云录制已启用',
1171
+ fmt_localrecord_tips_geturl: '云录制已启用,你可以在会议结束后获取链接',
1172
+ fmt_localrecord_tips_getfiles: '云录制已启用,你可以在会议结束后联系会议管理员获取链接。',
1173
+ fmt_localrecord_tips_someone_record: '有人启用了录制功能',
1174
+ fmt_localrecord_tips_view_recorded: '会议中有人启用了本地录制,你的音视频画面,要共享的内容将被录制',
1175
+ fmt_localrecord_options_beauty_record: '录制&美颜',
1176
+ fmt_localrecord_popup_stop_recording: '确定现在停止录制吗?',
1177
+ fmt_localrecord_button_stop_recording: '确定停止录制',
1178
+ fmt_localrecord_button_cancel_recording: '取消',
1179
+ fmt_localrecord_popup_in_recording: '此会议正在录制中',
1180
+ fmt_localrecord_popup_someone_recording: '有会议成员在他们的设备上开启了本地录制,他们可以将本地录制文件分享给其他成员',
1181
+ fmt_localrecord_button_leavemeeting: '离开会议',
1182
+ fmt_localrecord_button_got_it: '知道了',
1183
+ fmt_localrecord_tips_pause_localrecording: '暂停本地录制',
1184
+ fmt_localrecord_tips_stop_localrecording: '停止本地录制',
1185
+ fmt_waitingroom_setting_option_enable_waitingroom: '启用等候室',
1186
+ fmt_waitingroom_setting_option_disable_waitingroom: '关闭等候室',
1187
+ fmt_waitingroom_setting_popup_close_waitingroom: '关闭等候室',
1188
+ fmt_waitingroom_setting_tips_choose: '{reason1}名成员仍在等候室内,将他们移出会议室还是准入到会议室?',
1189
+ fmt_waitingroom_setting_button_admit_all: '准入全部等候室成员',
1190
+ fmt_waitingroom_setting_button_remove_all: '移出全部等候室成员',
1191
+ fmt_waitingroom_setting_button_cancel: '取消',
1192
+ fmt_waitingroom_sidebar_button_move_to_waitingroom: '移出到等候室',
1193
+ fmt_waitingroom_sidebar_label_waiting: '等候室{reason1}人',
1194
+ fmt_waitingroom_sidebar_label_search: '搜索',
1195
+ fmt_waitingroom_sidebar_button_invite: '邀请成员',
1196
+ fmt_waitingroom_sidebar_button_admit: '准入',
1197
+ fmt_waitingroom_sidebar_button_more: '更多',
1198
+ fmt_waitingroom_sidebar_button_private: '私聊',
1199
+ fmt_waitingroom_sidebar_button_remove: '移出',
1200
+ fmt_waitingroom_sidebar_button_removeall: '全部移出',
1201
+ fmt_waitingroom_sidebar_button_admitall: '全部准入',
1202
+ fmt_waitingroom_sidebar_popup_removeall: '移出等候成员',
1203
+ fmt_waitingroom_sidebar_popup_label_remove: '将{reason1}从等候室里移出?',
1204
+ fmt_waitingroom_sidebar_popup_option_notagain: '不允许用户再次加入该会议',
1205
+ fmt_waitingroom_sidebar_popup_button_cancel: '取消',
1206
+ fmt_waitingroom_sidebar_popup_button_remove: '移出',
1207
+ fmt_waitingroom_sidebar_popup_popup_admit: '全部准入等候成员',
1208
+ fmt_waitingroom_sidebar_popup_label_admitall: '是否允许等候室所有成员加入会议',
1209
+ fmt_waitingroom_sidebar_popup_button_admitall: '全部准入',
1210
+ fmt_waitingroom_attendie_popup_label_removed: '你已被移出会议,加入会议失败',
1211
+ fmt_waitingroom_attendie_popup_button_gotit: '我知道了',
1212
+ fmt_waitingroom_sidebar_chat_label_waiting: '等候室{reason1}',
1213
+ fmt_waitingroom_sidebar_chat_label_meeting: '会议中',
1214
+ fmt_waitingroom_sidebar_chat_label_notsend: '在等候室的用户不能发送消息,只能接收会议管理员的消息',
1215
+ fmt_waitingroom_sidebar_chat_label_all_attendees: '等候室所有人',
1216
+ fmt_waitingroom_mainwindow_popup_label_waitingroom: '等候室',
1217
+ fmt_waitingroom_mainwindow_popup_label_waiting: '当前等候室有{reason1}在等待',
1218
+ fmt_waitingroom_mainwindow_popup_button_view_detailed: '查看等候室',
1219
+ fmt_waitingroom_mainwindow_popup_button_not_remind: '不再提醒',
1220
+ fmt_waitingroom_attendie_popup_label_Leave: '离开会议',
1221
+ fmt_waitingroom_attendie_overview_label_waitingroom: '等候室',
1222
+ fmt_waitingroom_attendie_overview_label_wait_moment: '请稍等,主持人即将邀请您入会',
1223
+ fmt_waitingroom_attendie_overview_label_move_in_by_host: '你被移入等候室',
1224
+ fmt_waitingroom_attendie_overview_label__toast_move_to_waitingroom: '你已被移出至等候室',
1225
+ fmt_waitingroom_attendie_overview_label_attendees: '等候室成员',
1226
+ fmt_waitingroom_attendie_overview_label_no_messages: '暂无消息公告',
1227
+ fmt_waitingroom_put_in_success: '{reason1}已移入等候室',
1228
+ fmt_waitingroom_setting_tips_deactivate: '{reason1}已停用等候室',
1229
+ fmt_waitingroom_setting_tips_enabled_waiting_room: '{reason1}已启用等候室',
1230
+ fmt_waitingroom_setting_tips_disable: '你已停用等候室',
1231
+ fmt_waitingroom_setting_tips_enable: '已开启等候室',
1232
+ fmt_waitingroom_setting_tips_send_message_to_host: '你可以点击这里发送信息给会议管理员',
1233
+ fmt_waitingroom_setting_popup_toast_unable_move_creator: '无法将房间创建者移入等候室',
1234
+ fmt_waitingroom_setting_popup_toast_move_in_failed: '移入失败,请检查网络或确认等候室是否仍在使用',
1235
+ fmt_waitingroom_mobile_setting_label_enable: '启用等候室',
1236
+ fmt_waitingroom_mobile_setting_label_disable: '关闭等候室',
1237
+ fmt_waitingroom_mobile_setting_popup_label_close: '等候室关闭?',
1238
+ fmt_waitingroom_mobile_setting_popup_label_choose: '{reason1}名成员仍在等候室内,将他们移出会议室还是准入到会议中?',
1239
+ fmt_waitingroom_mobile_setting_popup_button_admit_all: '全体准入等候室成员',
1240
+ fmt_waitingroom_mobile_setting_popup_button_cancel: '不处理',
1241
+ fmt_waitingroom_mobile_setting_tips_deactivate: '{reason1}已停用等候室',
1242
+ fmt_waitingroom_mobile_setting_tips_disable: '你已停用等候室',
1243
+ fmt_waitingroom_mobile_setting_button_move_into_waitingroom: '移入等候室',
1244
+ fmt_waitingroom_mobile_memberlist_label_waitingroom: '等候室',
1245
+ fmt_waitingroom_mobile_memberlist_popup_label_search: '搜索',
1246
+ fmt_waitingroom_mobile_memberlist_popup_moveout: '移出',
1247
+ fmt_waitingroom_mobile_memberlist_button_admit: '准入',
1248
+ fmt_waitingroom_mobile_memberlist_button_privatechat: '私聊',
1249
+ fmt_waitingroom_mobile_memberlist_popup_label_remove: '移出等候成员',
1250
+ fmt_waitingroom_mobile_memberlist_popup_label_sure_remove: '将{reason1}从等候室移出?',
1251
+ fmt_waitingroom_mobile_memberlist_options_not_allowed: '不允许用户再次加入该会议',
1252
+ fmt_waitingroom_mobile_memberlist_button_cancel: '取消',
1253
+ fmt_waitingroom_mobile_memberlist_button_remove: '移出',
1254
+ fmt_waitingroom_mobile_memberlist_popup_label_remove_all: '移出全体等候室成员?',
1255
+ fmt_waitingroom_mobile_memberlist_popup_label_sure_to_remove_all: '将等候室的所有成员都移出?',
1256
+ fmt_waitingroom_mobile_memberlist_button_remove_all: '全部移出',
1257
+ fmt_waitingroom_mobile_memberlist_popup_label_admit_all: '全部准入等候成员',
1258
+ fmt_waitingroom_mobile_memberlist_popup_label_sure_to_admit_all: '是否允许等候室所有成员加入会议',
1259
+ fmt_waitingroom_mobile_memberlist_tips_all_removed: '已全部移出',
1260
+ fmt_waitingroom_mobile_memberlist_tips_removed: '已移出',
1261
+ fmt_waitingroom_mobile_memberlist_tips_all_amitted: '已全部准入会中',
1262
+ fmt_waitingroom_mobile_memberlist_label_nocontent: '暂无消息',
1263
+ fmt_waitingroom_mobile_chat_label_send_to: '发送给',
1264
+ fmt_waitingroom_mobile_chat_label_input: '请输入',
1265
+ fmt_waitingroom_mobile_chat_label_private_chat: '私聊',
1266
+ fmt_waitingroom_mobile_chat_label_all_waitingroom_member: '等候室所有人',
1267
+ fmt_waitingroom_mobile_chat_label_all_meeting_member: '会中所有人',
1268
+ fmt_waitingroom_mobile_notice_label_waitingroom: '等候室',
1269
+ fmt_waitingroom_mobile_notice_label_enabled: '主持人启用了等候室,请稍后,主持人将邀请你入会',
1270
+ fmt_waitingroom_mobile_notice_popup_label_about_join: '即将进入会议室',
1271
+ fmt_waitingroom_mobile_notice_popup_label_quick_join: '会议管理员已邀请你进会,点击按钮可以快速进会',
1272
+ fmt_waitingroom_mobile_notice_popup_button_join_now: '现在进会{reason1}',
1273
+ fmt_waitingroom_mobile_notice_popup_button_join_now_no_count: ' 现在进会',
1274
+ fmt_waitingroom_mobile_notice_popup_label_waitinglist: '当前等候室有{reason1}人等待',
1275
+ fmt_waitingroom_mobile_notice_popup_button_dont_remind: '不再提醒',
1276
+ fmt_waitingroom_mobile_notice_popup_button_view_detailed: '查看等候室',
1277
+ fmt_waitingroom_mobile_notice_popup_label_unable_move_creator: '无法将房间创建者移入等候室',
1278
+ fmt_waitingroom_mobile_notice_popup_label_hi: '你好,{reason1}',
1279
+ fmt_waitingroom_mobile_notice_popup_label_message_to_host: '你可以点击这里发送信息给会议管理员',
1280
+ fmt_waitingroom_toast_removed_participant: '{reason1}已被移出等候室',
1281
+ fmt_ai_transcriptions_setting_label_source: '声源语言',
1282
+ fmt_ai_transcriptions_setting_label_live_language: '现场说的语言 ',
1283
+ fmt_ai_transcriptions_setting_label_translate_to: '翻译为',
1284
+ fmt_ai_transcriptions_setting_label_effects: '对会中字幕和转写生效,翻译内容仅自己可见',
1285
+ fmt_ai_transcriptions_setting_option_bilingualism: '同时显示双语',
1286
+ fmt_ai_transcriptions_setting_label_translator: '翻译官',
1287
+ fmt_ai_transcriptions_setting_label_visable_range: '实时同声传译,仅自己可见',
1288
+ fmt_ai_transcriptions_setting_option_noton: '不开启',
1289
+ fmt_ai_transcriptions_setting_option_english_translation: '英翻中',
1290
+ fmt_ai_transcriptions_setting_option_translate: '中翻英',
1291
+ fmt_ai_subtitles_button_enable_caption: '开启字幕',
1292
+ fmt_ai_subtitles_button_disable_caption: '关闭字幕',
1293
+ fmt_ai_subtitles_setting_label_subtitle_setting: '权限设置',
1294
+ fmt_ai_subtitles_setting_label_caption_transcripts: '字幕和翻译',
1295
+ fmt_ai_subtitles_setting_label_fontsize: '字号大小',
1296
+ fmt_ai_subtitles_setting_label_sample: '字幕文字大小示例',
1297
+ fmt_ai_subtitles_setting_label_translation_setting: '字幕设置',
1298
+ fmt_ai_subtitles_setting_label_effect_range: '对会中字幕和转写生效,翻译内容仅自己可见,暂不支持外语之间的互译',
1299
+ fmt_ai_subtitles_setting_options_enable_translation: '开启翻译',
1300
+ fmt_ai_subtitles_setting_options_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: '字幕同时显示双语',
1305
+ fmt_ai_subtitles_setting_options_translation_bilingual: '转写同时显示双语',
1306
+ fmt_ai_subtitles_setting_options_translation_restore_default: '恢复默认字号',
1307
+ fmt_ai_subtitles_setting_options_view_translation: '查看转写',
1308
+ fmt_ai_subtitles_setting_label_subtitle: '字幕',
1309
+ fmt_ai_subtitles_setting_label_source_language: '声源语言',
1310
+ fmt_ai_subtitles_setting_label_translations_display: '翻译显示',
1311
+ fmt_ai_subtitles_setting_label_bilingual_display: '显示双语',
1312
+ fmt_ai_subtitles_setting_label_hot_words: '个人热词',
1313
+ fmt_ai_subtitles_setting_label_hot_words_add: '添加自己常用的热词,提升语音转文字准确率,最多可输入50个热词',
1314
+ fmt_ai_subtitles_setting_button_button: '按钮',
1315
+ fmt_ai_transcriptions_toolbar_button_realtime_transcription: '实时转写',
1316
+ fmt_ai_transcriptions_toolbar_options_translator: '启用翻译官',
1317
+ fmt_ai_transcriptions_toolbar_options_enable_translation: '启用实时转写',
1318
+ fmt_ai_transcriptions_toolbar_options_settings: '转写与翻译设置',
1319
+ fmt_ai_transcriptions_toolbar_popup_valid: '字幕仅对自己有效',
1320
+ fmt_ai_transcriptions_sidebar_label_realtime_translation: '实时转写',
1321
+ fmt_ai_transcriptions_sidebar_label_search: '搜索',
1322
+ fmt_ai_transcriptions_sidebar_tips_turnon: '开启翻译识别内容',
1323
+ fmt_ai_transcriptions_sidebar_tips_turnoff: '停止翻译识别内容',
1324
+ fmt_ai_transcriptions_sidebar_tips_stopped: '已停止实时转写',
1325
+ fmt_ai_subtitles_setting_label_turnon_subtitles: '开启字幕中...',
1326
+ fmt_ai_subtitles_setting_label_click_to_setup: '点击可以进行字幕和翻译设置',
1327
+ fmt_ai_subtitles_setting_label_listening: '倾听中...',
1328
+ fmt_ai_subtitles_setting_label_listening_no_content: '暂无内容',
1329
+ fmt_ai_transcriptions_sidebar_button_stop_translation: '停止转写',
1330
+ fmt_ai_transcriptions_sidebar_button_start_translation: '开启转写',
1331
+ fmt_ai_subtitles_toast_host_disabled_subtitles: '主持人已关闭字幕权限',
1332
+ fmt_ai_subtitles_toast_you_turned_off_subtitles: '您已关闭字幕',
1333
+ fmt_ai_subtitles_window_label_change_language: '修改声源语言',
1334
+ fmt_ai_subtitles_window_label_change_language_content: '您修改本场会议声源语言为“{reason1}”,修改后将对所有参会者的字幕和转写生效',
1335
+ fmt_ai_subtitles_window_button_cancel: '取消',
1336
+ fmt_ai_subtitles_window_button_modify: '确认修改',
1337
+ fmt_ai_subtitles_toast_change_language_self: '您修改字幕和转写的声源语言为“{reason1}”',
1338
+ fmt_ai_subtitles_toast_stopped_transcription: '{reason1}已停止实时转写',
1339
+ fmt_ai_subtitles_toast_change_language_attendees: '{reason1}修改声源语言为“{reason2}”',
1340
+ fmt_ai_subtitles_toast_started_transcription: '{reason1}已开启实时转写',
1341
+ fmt_ai_subtitles_label_started_transcription_self: '您已开启实时转写',
1342
+ fmt_ai_subtitles_label_stopped_transcription_self: '您已停止实时转写',
1343
+ fmt_ai_subtitles_window_label_request_enable_rtt: '请求主持人开启实时转写',
1344
+ fmt_ai_subtitles_window_label_request_enable_rtt_content: '开启后,会议对话将被转写成文字,所有参会成员均可查看',
1345
+ fmt_ai_subtitles_window_button_send: '发送请求',
1346
+ fmt_ai_subtitles_toast_rtt_request_sent: '请求已发送',
1347
+ fmt_ai_subtitles_toast_rtt_host_declined_request: '主持人{reason1}已拒绝实时转写请求',
1348
+ fmt_ai_rtt_window_label_enable_request: '实时转写请求',
1349
+ fmt_ai_rtt_window_label_enable_request_content: '{reason1}请求开启会议中的实时转写,开启后所有参会成员均可查看转写内容',
1350
+ fmt_ai_rtt_window_option_decline_all_request: '不再接收实时转写请求',
1351
+ fmt_ai_rtt_window_button_reject: '拒绝',
1352
+ fmt_ai_rtt_window_button_approve: '同意',
1353
+ fmt_ai_rtt_window_button_view: '查看',
1354
+ fmt_ai_subtitles_source_language_options_chinese: '中文',
1355
+ fmt_ai_subtitles_source_language_options_english: '英语',
1356
+ fmt_ai_subtitles_source_language_options_japanese: '日语',
1357
+ fmt_ai_rtt_window_label_converting_stt: '正在将会议语音转成文字内容',
1358
+ fmt_ai_rtt_window_button_view_stt_content: '去查看',
1359
+ fmt_ai_rtt_window_button_stop_stt: '停止',
1360
+ fmt_ai_rtt_toast_host_enabled_rtt: '主持人已允许使用实时转写功能',
1361
+ fmt_ai_subtitles_toast_host_enabled_captions: '主持人已允许使用字幕功能',
1362
+ fmt_ai_rtt_tips_only_host_stop: '仅主持人可以停止',
1363
+ fmt_ai_rtt_label_source_sound_effect_for_personnel: '需要进行识别的目标声源,对全员生效',
1364
+ fmt_ai_rtt_toast_host_not_permitted_start_stop_rtt: '主持人不允许开启和停止文字转写',
1365
+ fmt_ai_rtt_tips_transcribing: '转写中',
1366
+ fmt_ai_rtt_label_transcription_setting: '转写设置',
1367
+ fmt_ai_rtt_tips_switch_translation: '切换翻译语言为“{reason2}”',
1368
+ //****************** AI会议纪要 ******************
1369
+ fmt_ai_summary_create_option_create_summary: '开会的同时,创建会议纪要',
1370
+ fmt_ai_summary_create_labels_meeting_list: '会议列表',
1371
+ fmt_ai_summary_create_labels_valid_records: '只显示最近2天的会议记录',
1372
+ fmt_ai_summary_create_labels_meetingID: '会议ID',
1373
+ fmt_ai_summary_create_labels_meeting_time: '会议时间',
1374
+ fmt_ai_summary_create_labels_not_opened: '未开启会议纪要',
1375
+ fmt_ai_summary_detail_label_data_analysis: '数据分析',
1376
+ fmt_ai_summary_detail_label_meeting_summary: '会议纪要',
1377
+ fmt_ai_summary_detail_label_transcription: '转写',
1378
+ fmt_ai_summary_detail_label_search: '搜索',
1379
+ fmt_ai_summary_detail_button_transcription_management: '转写管理',
1380
+ fmt_ai_summary_detail_label_no_content: '暂无记录',
1381
+ fmt_ai_summary_setting_label_AI: 'AI配置',
1382
+ fmt_ai_summary_setting_label_LLM_choose: '大模型选择',
1383
+ fmt_ai_summary_setting_label_llm_range: 'AI模型会应用到会议纪要、翻译等功能',
1384
+ fmt_ai_summary_setting_option_tingwu: '通义听悟',
1385
+ fmt_ai_summary_setting_option_zhipu: '智谱AI',
1386
+ fmt_ai_summary_setting_option_moonshot: '月之暗面',
1387
+ fmt_ai_summary_setting_option_openai: 'OpenAI',
1388
+ fmt_ai_summary_setting_label_agent: '智能体选择',
1389
+ fmt_ai_summary_setting_option_meeting_assistant: '会议助手',
1390
+ fmt_ai_summary_setting_option_teacher: '老师',
1391
+ fmt_ai_summary_setting_option_sales_manager: '销售员',
1392
+ //****************** 会前设置页 ******************
1393
+ fmt_premeeting_setting_mobile_label_settings: '设置',
1394
+ fmt_premeeting_setting_mobile_label_host_settings: '会议管理员入会设置',
1395
+ fmt_premeeting_setting_mobile_swtich_mute_when_join: '成员入会时静音',
1396
+ fmt_premeeting_setting_mobile_label_personal_settings: '个人设置',
1397
+ fmt_premeeting_setting_mobile_label_video: '视频',
1398
+ fmt_premeeting_setting_mobile_swtich_hide_video_off: '隐藏非视频参会者',
1399
+ fmt_premeeting_setting_mobile_swtich_hide_my_video: '隐藏我的视频',
1400
+ fmt_premeeting_setting_mobile_option_background: '背景',
1401
+ fmt_premeeting_setting_mobile_option_enabled: '已开启',
1402
+ fmt_premeeting_setting_mobile_option_disabled: '未开启',
1403
+ fmt_premeeting_setting_mobile_option_beauty: '美颜',
1404
+ fmt_premeeting_setting_mobile_label_caption_transcription: '字幕和翻译',
1405
+ fmt_premeeting_setting_mobile_option_source_language: '声源语言',
1406
+ fmt_premeeting_setting_mobile_option_default: '默认',
1407
+ fmt_premeeting_setting_mobile_option_translate_to: '翻译为',
1408
+ fmt_premeeting_setting_mobile_swtich_display_bilingual: '同时显示双语',
1409
+ fmt_premeeting_setting_mobile_label_commen_settings: '会议通用',
1410
+ fmt_premeeting_setting_mobile_swtich_participant_display_name: '参会者显示名称',
1411
+ fmt_premeeting_setting_mobile_swtich_voice_stimulation: '语音激励',
1412
+ fmt_premeeting_setting_mobile_label_speaking_display_first: '开启语音激励后,会优先显示正在说话的与会成员。',
1413
+ fmt_premeeting_setting_mobile_option_bilingual: '语言设置',
1414
+ fmt_premeeting_setting_mobile_option_chinese: '中文',
1415
+ fmt_premeeting_setting_mobile_option_english: 'EN',
1416
+ fmt_premeeting_setting_mobile_option_language_auto: '跟随系统',
1417
+ fmt_premeeting_setting_mobile_option_appearance: '外观',
1418
+ fmt_premeeting_setting_mobile_option_auto: '自动',
1419
+ fmt_premeeting_setting_mobile_option_bright: '明亮',
1420
+ fmt_premeeting_setting_mobile_option_dark: '暗黑',
1421
+ fmt_premeeting_setting_option_setting_after_restarting: '外观设置将在重启会议后生效',
1422
+ fmt_premeeting_setting_mobile_option_region: '区域设置',
1423
+ fmt_premeeting_setting_mobile_option_developer_mode: '开发模式',
1424
+ fmt_premeeting_setting_mobile_label_about_us: '关于我们',
1425
+ fmt_premeeting_setting_mobile_option_version: '版本',
1426
+ fmt_premeeting_setting_mobile_button_version_pdate: '检查更新',
1427
+ fmt_premeeting_setting_mobile_label_release_time: '发版时间',
1428
+ fmt_premeeting_setting_mobile_url_agreement: '用户协议',
1429
+ fmt_premeeting_setting_mobile_url_privacy: '隐私条款',
1430
+ fmt_premeeting_setting_mobile_url_disclaimer: '免责声明',
1431
+ fmt_premeeting_setting_mobile_button_cancel_account: '注销声网账号 ',
1432
+ fmt_premeeting_setting_mobile_button_log_out: '退出登录',
1433
+ fmt_premeeting_setting_mobile_label_take_effect: '语言设置将在重启会议后生效',
1434
+ fmt_premeeting_setting_mobile_popup_button_got_it: '我知道了',
1435
+ fmt_premeeting_setting_mobile_popup_button_restart: '立即重启',
1436
+ fmt_premeeting_setting_mobile_popup_label_latest_version: '你使用的版本已经是最新版本了哦',
1437
+ fmt_premeeting_setting_mobile_popup_label_dowloading: '正在下载最新版本',
1438
+ fmt_premeeting_setting_mobile_popup_button_install_comfirm: '下载完成,是否安装',
1439
+ fmt_premeeting_setting_mobile_popup_button_cancel_install: '取消',
1440
+ fmt_premeeting_setting_mobile_popup_button_install: '安装',
1441
+ fmt_premeeting_setting_mobile_popup_label_cancel_account: '注销声网账号?',
1442
+ fmt_premeeting_setting_mobile_popup_button_confirm_cancel: '确定注销',
1443
+ fmt_premeeting_setting_mobile_popup_button_cancel: '取消',
1444
+ fmt_premeeting_setting_mobile_popup_button_log_out: '退出当前登录账号',
1445
+ fmt_premeeting_setting_mobile_button_log_out_confirm: '确定退出',
1446
+ fmt_premeeting_setting_button_more_meeting_control: '更多会控设置',
1447
+ fmt_premeeting_setting_checkbox_joining_meeting_connect_audio: '入会自动连接音频',
1448
+ //****************** 首页 ******************
1449
+ fmt_premeeting_joinroom_mobile_button_upandin: '注册登录',
1450
+ fmt_premeeting_joinroom_mobile_label_flexible_meeting: '灵动会议',
1451
+ fmt_premeeting_joinroom_mobile_label_enterprise_account: '企业账号',
1452
+ fmt_premeeting_joinroom_mobile_tips_meetingid: '会议名或会议ID',
1453
+ fmt_premeeting_joinroom_mobile_tips_password: '会议密码',
1454
+ fmt_premeeting_joinroom_mobile_label_duration: '参会时长',
1455
+ fmt_premeeting_joinroom_mobile_label_meeting_duration: '会议时长',
1456
+ fmt_premeeting_joinroom_mobile_button_join_meeting: '加入会议',
1457
+ fmt_premeeting_joinroom_mobile_tips_six_characters: '请输入6位以内字符',
1458
+ fmt_premeeting_joinroom_mobile_tips_wrong_password: '密码错误',
1459
+ fmt_premeeting_joinroom_mobile_tips_no_password: '房间可以不设置密码;房间不存在时,输入的密码将成为该房间的密码。',
1460
+ fmt_premeeting_joinroom_mobile_label_account: '账号',
1461
+ fmt_premeeting_joinroom_mobile_button_settings_privacy: '设置与隐私',
1462
+ fmt_premeeting_joinroom_mobile_button_log_out: '退出登录',
1463
+ fmt_premeeting_joinroom_mobile_button_confirm_exit: '确定退出',
1464
+ fmt_premeeting_joinroom_mobile_button_cancel: '取消',
1465
+ fmt_premeeting_joinroom_mobile_label_rename: '重命名',
1466
+ fmt_premeeting_back_meeting: '返回会议',
1467
+ //****************** 水印(移动) ******************
1468
+ fmt_security_setting_mobile_label_watermark: '水印',
1469
+ fmt_security_setting_mobile_label_watermark_style: '水印样式',
1470
+ fmt_security_setting_mobile_option_watermark_style_single: '单行',
1471
+ fmt_security_setting_mobile_option_watermark_style_multi: '多行',
1472
+ fmt_security_setting_mobile_label_mute_join: '参会者加入会议时静音',
1473
+ fmt_security_setting_mobile_label_allow_participants: '允许与会者',
1474
+ fmt_security_setting_mobile_label_chat_with: '聊天',
1475
+ fmt_security_setting_mobile_label_share_screen: '共享屏幕',
1476
+ fmt_security_setting_mobile_label_rename: '重命名',
1477
+ fmt_security_setting_mobile_label_unmute: '解除禁言',
1478
+ fmt_security_setting_mobile_label_start_video: '开启视频',
1479
+ fmt_security_setting_mobile_popup_toast_unlock_meeting: '你已解锁会议,新参会者可加入',
1480
+ fmt_security_setting_mobile_chat_popup_label_participants: '允许与会者聊天',
1481
+ fmt_security_setting_mobile_chat_popup_option_no_one: '无',
1482
+ fmt_security_setting_mobile_chat_popup_option_facilitator: '主持人和联席主持人',
1483
+ fmt_security_setting_mobile_chat_popup_option_all: '所有人',
1484
+ fmt_security_setting_mobile_chat_popup_option_all_chat: '所有公屏聊天和私聊',
1485
+ fmt_security_mobile_mainwindow_label_watermark: '{reason1}{reason1}',
1486
+ //****************** 安全(移动) ******************
1487
+ fmt_security_setting_mobile_label_security: '安全',
1488
+ fmt_security_setting_mobile_label_security_label: 'SECURITY安全',
1489
+ fmt_security_setting_mobile_label_lock_meeting: '锁定会议',
1490
+ fmt_security_setting_mobile_label_waiting_room: '等候室',
1491
+ //****************** 安全 ******************
1492
+ fmt_security_setting_label_security_setting: '会议安全设置',
1493
+ fmt_security_setting_label_lock_meeting: '锁定会议室',
1494
+ fmt_security_setting_label_waiting_room: '无权限的参会者入会时先进会议室',
1495
+ fmt_security_setting_label_watermark: '水印',
1496
+ fmt_security_setting_option_watermark_style_single: '单行',
1497
+ fmt_security_setting_option_watermark_style_multi: '多行',
1498
+ fmt_security_setting_label_allow_participants: '允许参会者',
1499
+ fmt_security_setting_label_chat_with: '聊天',
1500
+ fmt_security_setting_label_share_screen: '共享屏幕',
1501
+ fmt_security_setting_label_rename: '自我改名',
1502
+ fmt_security_setting_label_unmute: '自我解除静音',
1503
+ fmt_security_setting_label_start_video: '开启视频',
1504
+ fmt_security_setting_label_remove_participant: '移出参会者…',
1505
+ fmt_security_setting_label_pause_participant: '暂停参会者活动…',
1506
+ fmt_security_setting_popup_toast_join_waiting_room: '无权限的参会者入会时先进会议室',
1507
+ fmt_security_setting_popup_toast_facilitator_watermark: '主持人开启了屏幕水印',
1508
+ fmt_security_setting_popup_toast_co_facilitator_watermark: '联席主持人开启了屏幕水印',
1509
+ fmt_security_setting_popup_toast_turn_off_watermark: '水印已关闭',
1510
+ fmt_security_setting_popup_tip_watermark_voice_active_prioritized: '所有成员观看会议内容时,将看到水印嵌入会议画面中',
1511
+ fmt_security_mainwindow_label_watermark: '{reason1}{reason1}',
1512
+ fmt_security_mainwindow_label_toast_unmute_not_allow: '主持人/联席主持人不允许自主解除静音',
1513
+ fmt_security_mainwindow_label_toast_name_change_not_allow: '主持人/联席主持人不允许自我改名',
1514
+ fmt_security_mainwindow_label_interactive_annotations: '成员互动批注',
1515
+ fmt_security_mainwindow_option_start_stop_transcription: '开启和停止实时转写',
1516
+ fmt_security_mainwindow_option_use_captions: '使用字幕功能',
1517
+ fmt_security_mainwindow_option_change_language: '修改声源语言',
1518
+ //****************** 设置 ******************
1519
+ fmt_premeeting_setting_label_settings: '设置',
1520
+ fmt_premeeting_setting_label_normal: '常规',
1521
+ fmt_premeeting_setting_label_voice_motivation: '语音激励',
1522
+ fmt_premeeting_setting_label_turn_on_microphone: '入会开启麦克风',
1523
+ fmt_premeeting_setting_label_turn_on_camera: '入会开启摄像头',
1524
+ fmt_premeeting_setting_label_attendees_name: '参会者显示名称',
1525
+ fmt_premeeting_setting_label_appearances: '外观',
1526
+ fmt_premeeting_setting_label_bright_mode: '浅色模式',
1527
+ fmt_premeeting_setting_label_dark_mode: '暗黑模式',
1528
+ fmt_premeeting_setting_label_auto_mode: '自动',
1529
+ fmt_premeeting_setting_label_multi_language: '多语言',
1530
+ fmt_premeeting_setting_label_Chinese: '中文',
1531
+ fmt_premeeting_setting_label_English: '英文',
1532
+ fmt_premeeting_setting_popup_label_restart_activate: '重启后生效',
1533
+ fmt_premeeting_setting_popup_label_language_setting_restarting_meeting: '语言设置将在重启灵动会议后生效',
1534
+ fmt_premeeting_setting_popup_label_restart_application_switch_language: '如果期待现在切换语言,请重启应用程序。',
1535
+ fmt_premeeting_setting_popup_button_i_know: '我知道了',
1536
+ fmt_premeeting_setting_pupop_button_restart_now: '立即重启',
1537
+ fmt_premeeting_setting_label_follow_the_system: '跟随系统',
1538
+ fmt_premeeting_setting_label_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: '会议管理',
1544
+ fmt_premeeting_setting_label_mute_join_meeting: '参会者入会时静音',
1545
+ fmt_premeeting_setting_label_lock_meeting: '锁定会议',
1546
+ fmt_premeeting_setting_label_open_waiting_room: '开启等候室',
1547
+ fmt_premeeting_setting_label_voice: '语音',
1548
+ fmt_premeeting_setting_label_automatically_connects_to_computer_audio: '加入会议时自动连接电脑音频',
1549
+ fmt_premeeting_setting_label_mute_the_microphone_joinning_meeting: '加入会议时将麦克风静音',
1550
+ fmt_premeeting_setting_label_speaker: '扬声器',
1551
+ fmt_premeeting_setting_button_test_speaker: '检测扬声器',
1552
+ fmt_premeeting_setting_label_click_test_speaker: '点击测试扬声器以确定你可以听到他人的声音',
1553
+ fmt_premeeting_setting_button_pause: '暂停播放',
1554
+ fmt_premeeting_setting_label_change_speaker: '如果你无法听到测试音,请更换扬声器',
1555
+ fmt_premeeting_setting_label_output_level: '输出级别',
1556
+ fmt_premeeting_setting_label_output_volume: '输出音量',
1557
+ fmt_premeeting_setting_label_automatically_adjust_volume: '自动调整{xxxxx}音量',
1558
+ fmt_premeeting_setting_label_microphone: '麦克风',
1559
+ fmt_premeeting_setting_button_test_microphone: '检测麦克风',
1560
+ fmt_premeeting_setting_label_speak_into_your_microphone: '点击测试麦克风',
1561
+ fmt_premeeting_setting_button_recording: '录制中',
1562
+ fmt_premeeting_setting_label_change_the_microphone: '如果你无法听到测试音,请更换麦克风',
1563
+ fmt_premeeting_setting_label_input_level: '输入级别',
1564
+ fmt_premeeting_setting_label_input_volume: '输入音量',
1565
+ fmt_premeeting_setting_label_automatically_adjust_microphone_volume: '自动调整麦克风音量',
1566
+ fmt_premeeting_setting_label_audio_noise_reduction_enhancement: '音频降噪与增强',
1567
+ fmt_premeeting_setting_label_choose_audio_settings: '可选择降低背景噪音或专业音频',
1568
+ fmt_premeeting_setting_label_enable_waiting_room: '开启等候室',
1569
+ fmt_premeeting_setting_label_Off: '关',
1570
+ fmt_premeeting_setting_label_reduce_background_noise: '降低背景噪音',
1571
+ fmt_premeeting_setting_label_auto: '自动',
1572
+ fmt_premeeting_setting_label_low: '低',
1573
+ fmt_premeeting_setting_label_medium: '适中',
1574
+ fmt_premeeting_setting_label_high: '高',
1575
+ fmt_premeeting_setting_label_turn_off: '关闭',
1576
+ fmt_premeeting_setting_label_professional_audio: '专业音频',
1577
+ fmt_premeeting_setting_label_enable_stereo: '启用立体声',
1578
+ fmt_premeeting_setting_label_high_fidelity_music_mode: '高保真音乐模式',
1579
+ fmt_premeeting_setting_label_echo_cancellation: '回声消除',
1580
+ fmt_premeeting_setting_label_video_and_effect: '视频和效果',
1581
+ fmt_premeeting_setting_button_basic: '基础',
1582
+ fmt_premeeting_setting_button_background: '背景',
1583
+ fmt_premeeting_setting_button_beauty_filter: '美颜',
1584
+ fmt_premeeting_setting_label_camera: '摄像头',
1585
+ fmt_premeeting_setting_label_hd_video: '视频高清',
1586
+ fmt_premeeting_setting_label_adjust_adapt_low_light: '调整以适应弱光',
1587
+ fmt_premeeting_setting_label_turn_off_video_joining_meeting: '加入会议时关闭我的视频',
1588
+ fmt_premeeting_setting_label_always_show_video_preview_dialog: '加入视频会议时始终显示视频预览对话框',
1589
+ fmt_premeeting_setting_label_hide_participants_without_video: '隐藏非视频参会者',
1590
+ fmt_premeeting_setting_label_mirror_my_video: '镜像我的视频',
1591
+ fmt_premeeting_setting_label_16_participants: '16名参会者',
1592
+ fmt_premeeting_setting_label_25_participants: '25名参会者',
1593
+ fmt_premeeting_setting_label_advanced_Setting: '高级',
1594
+ fmt_premeeting_setting_label_optimize_video_quality_through_noise_reduction: '通过降噪优化视频质量',
1595
+ fmt_premeeting_setting_label_hardware_acceleration_for_video_receiving: '为视频接受使用硬件加速',
1596
+ fmt_premeeting_setting_label_about_us: '关于我们',
1597
+ fmt_premeeting_setting_label_smart_meeting: '灵动会议',
1598
+ fmt_premeeting_setting_label_version_now: '版本号{reason1}',
1599
+ fmt_premeeting_setting_button_check_for_update: '检查更新',
1600
+ fmt_premeeting_setting_button_user_agreement: '用户协议',
1601
+ fmt_premeeting_setting_button_privacy_policy: '隐私协议',
1602
+ fmt_premeeting_setting_button_disclaimer: '免责声明',
1603
+ fmt_premeeting_setting_version_popup_label_latest_version: '最新版本',
1604
+ fmt_premeeting_setting_version_popup_label_latest_version_announcement: '{reason1}已经是最新版本',
1605
+ fmt_premeeting_setting_version_popup_button_ok: 'OK',
1606
+ fmt_premeeting_setting_version_popup_label_new_version_announcement: '{reason1}版本已发布',
1607
+ fmt_premeeting_setting_version_popup_label_current_version: '当前版本为{reason1}',
1608
+ fmt_premeeting_setting_version_popup_button_download_update: '下载更新',
1609
+ fmt_premeeting_setting_version_popup_button_download_later: '稍后再试',
1610
+ fmt_premeeting_setting_label_downloading_update: '正在下载更新',
1611
+ fmt_premeeting_setting_version_popup_button_cancel: '取消',
1612
+ fmt_premeeting_setting_version_popup_new_version_ready: '新版本已就绪',
1613
+ fmt_premeeting_setting_version_popup_label_restarting_to_experience: '重启应用后可体验({reason1})',
1614
+ fmt_premeeting_setting_version_popup_button_restart_application: '重启应用',
1615
+ fmt_premeeting_setting_version_popup_button_try_later: '稍后再试',
1616
+ fmt_meeting_mainwidow_version_popup_label_new_version_ready: '新版本已就绪',
1617
+ fmt_meeting_mainwindow_version_popup_label_experience_after_restarting: '重启应用后可体验({reason1})',
1618
+ fmt_meeting_mainwindow_version_popup_button_restart_application: '重启应用',
1619
+ //****************** 同声传译-PC ******************
1620
+ fmt_interpretation_setting_controller_option_simultaneous_interpretation: '同声传译',
1621
+ fmt_interpretation_setting_controller_toast_turn_on_simultaneous_interpretation: '开启同声传译',
1622
+ fmt_interpretation_setting_controller_toast_turn_off_simultaneous_interpretation: '关闭同声传译',
1623
+ fmt_interpretation_setting_popup_controller_label_simultaneous_interpretation: '同声传译',
1624
+ fmt_interpretation_setting_popup_controller_option_add_interpreter: '添加翻译官',
1625
+ fmt_interpretation_setting_popup_controller_label_interpreter: '翻译官{reason1}',
1626
+ fmt_interpretation_setting_popup_controller_label_departure: '离会',
1627
+ fmt_interpretation_setting_popup_controller_label_both_language: '2种语言都需支持输出,非单向输出',
1628
+ fmt_interpretation_setting_popup_controller_labe_search_name: '搜索名字',
1629
+ fmt_interpretation_setting_popup_controller_labe_source_language: '语言',
1630
+ fmt_interpretation_setting_popup_controller_labe_Translate_language: '语言',
1631
+ fmt_interpretation_setting_popup_controller_option_new_add_interpreter: '添加翻译官',
1632
+ fmt_interpretation_setting_popup_controller_option_turn_on_simultaneous: '开启同声传译',
1633
+ fmt_interpretation_setting_popup_controller_option_add_interpreter_limited: '添加翻译官(上限10)',
1634
+ fmt_interpretation_setting_popup_controller_option_change: '修改',
1635
+ fmt_interpretation_setting_popup_controller_option_stop_interpretation: '停止传译',
1636
+ fmt_interpretation_setting_popup_controller_option_change_comfirm: '确认更改',
1637
+ fmt_interpretation_popup_toast_interpretation_online: '同声传译已启用',
1638
+ fmt_interpretation_popup_toast_interpreter_set_by_controller: '主持人{reason1}指定了{reason2}等{reason3}个人为翻译官',
1639
+ fmt_interpretation_popup_toast_interpreter_set_by_co_controller: '联席主持{reason1}指定了{reason2}等{reason3}个人为翻译官',
1640
+ fmt_interpretation_sidebar_button_interpret: '同声传译',
1641
+ fmt_interpretation_sidebar_toast_choose_language: '正在进行同声传译,可选择不同的语言频道收听',
1642
+ fmt_interpretation_sidebar_toast_hover_choose_language: '可选择不同的语言频道收听',
1643
+ fmt_interpretation_pupup_interpreter_offline: '翻译官离线',
1644
+ fmt_interpretation_popup_button_set: '去分配',
1645
+ fmt_interpretation_popup_label_set: '翻译官{reason1}已离开会议,请重新分配翻译官',
1646
+ fmt_interpretation_popup_toast_label_return_meeting: '翻译官{reason1}已重新进入会议室',
1647
+ fmt_interpretation_interpreter_popup_label_welcome_interpreter_be_set: '你被指定为翻译官',
1648
+ fmt_interpretation_interpreter_popup_label_welcome_open_micro: '请确认打开麦克风,并通过主界面按钮进行两种语言的输出切换',
1649
+ fmt_interpretation_interpreter_popup_label_welcome_source_language: '{reason1}(声源语言)',
1650
+ fmt_interpretation_interpreter_popup_label_welcome_translate_language: '{reason1}(翻译语言)',
1651
+ fmt_interpretation_interpreter_popup_button_welcome_i_know: '我知道了',
1652
+ fmt_interpretation_interpreter_toast_label_open_micro: '请打开麦克风',
1653
+ fmt_interpretation_interpreter_toast_label_change_channel: '点击这里可以切换要传达的语音频道,并确定是否已经打开麦克风',
1654
+ fmt_interpretation_interpreter_popup_button_cn: '中文',
1655
+ fmt_interpretation_interpreter_popup_button_en: '英文',
1656
+ fmt_interpretation_interpreter_toast_label_return_channel: '你是翻译官,目前在{reason1}频道',
1657
+ fmt_interpretation_interpreter_popup_label_language_change_attention: '请注意,翻译语言有变更',
1658
+ fmt_interpretation_interpreter_popup_label_language_change_by_controller: '会议管理员指定了你新的翻译语言:',
1659
+ fmt_interpretation_interpreter_popup_label_language: '{reason1}(翻译语言)',
1660
+ fmt_interpretation_interpreter_popup_button_i_know: '我知道了',
1661
+ fmt_interpretation_interpreter_popup_label_interpret_cancel: '翻译权限被收回',
1662
+ fmt_interpretation_interpreter_popup_label_interpret_cancel_label: '会议管理员已取消你的翻译官身份',
1663
+ fmt_interpretation_interpreter_popup_button_know: '知道了',
1664
+ fmt_interpretation_mainwindow_toast_label_interpret_offline_controller: '主持人{reason1}关闭了同声传译功能',
1665
+ fmt_interpretation_interpreter_popup_label_language_change_by_cocontroller: '联席主持人{reason1}关闭了同声传译功能',
1666
+ fmt_interpretation_attendness_sidbar_popup_option_original_aswell: '同时收听原声',
1667
+ fmt_interpretation_controller_sidbar_popup_button_interpret_set: '同声传译设置',
1668
+ fmt_interpretation_attendness_sidbar_popup_option_language_off: '原声频道',
1669
+ fmt_interpretation_attendness_sidbar_popup_option_language_cn: '中文',
1670
+ fmt_interpretation_attendness_sidbar_popup_option_language_eng: '英文',
1671
+ fmt_interpretation_attendness_popup_label_interpretation_online: '会议室开启了同声传译',
1672
+ fmt_interpretation_attendness_popup_label_interpretation_click: '请点击底部操作栏上的“同声传译”进行操作',
1673
+ fmt_interpretation_attendness_sidbar_popup_toast_label_channel_close: '您选择的同声传译频道被关闭,已为您切换到原声频道',
1674
+ fmt_interpretation_mainwindow_toast_label_update_language: '主持人{reason1}更新了同声传译的翻译官或语言',
1675
+ fmt_interpretation_mainwindow_toast_label_turn_off_interpret: '你已关闭了同声传译功能',
1676
+ fmt_interpretation_interpreter_popup_special_host: '联席',
1677
+ fmt_interpretation_interpreter_popup_special_co_host: '主持',
1678
+ //****************** 同声传译-mobile ******************
1679
+ fmt_interpretation_mobile_setting_controller_option_interpret: '同声传译',
1680
+ fmt_interpretation_mobile_setting_controller_label_interpret: '同声传译',
1681
+ fmt_interpretation_mobile_setting_controller_toast_label_setting_by_one: '{reason1}可能正在设置该功能',
1682
+ fmt_interpretation_mobile_setting_controller_toast_label_setting_by_member: '{reason1}等{reason2}人可能正在设置该功能',
1683
+ fmt_interpretation_mobile_setting_controller_button_add_interpret: '添加翻译官',
1684
+ fmt_interpretation_mobile_setting_controller_label_interpreter: '翻译员{reason1}',
1685
+ fmt_interpretation_mobile_setting_popup_controller_option_add_interpreter_limited: '添加翻译官(上限10)',
1686
+ fmt_interpretation_mobile_setting_controller_label_name_search: '使用姓名查找',
1687
+ fmt_interpretation_mobile_setting_controller_label_cn: '中文',
1688
+ fmt_interpretation_mobile_setting_controller_label_en: '英文',
1689
+ fmt_interpretation_mobile_setting_controller_button_turn_on_interpretation: '开启同声传译',
1690
+ fmt_interpretation_mobile_setting_controller_button_turn_off_interpretation: '关闭同声传译',
1691
+ fmt_interpretation_mobile_setting_controller_button_save: '保存',
1692
+ fmt_interpretation_mobile_setting_controller_toast_label_complete_setting: '请完善所有翻译官及其语言的设定',
1693
+ fmt_interpretation_mobile_setting_controller_toast_label_setting_update: '已更新设置',
1694
+ fmt_interpretation_mobile_setting_controller_option_french: '法语',
1695
+ fmt_interpretation_mobile_setting_controller_option_italian: '意大利语',
1696
+ fmt_interpretation_mobile_setting_controller_option_korean: '韩语',
1697
+ fmt_interpretation_mobile_setting_controller_option_spanish: '西班牙语',
1698
+ fmt_interpretation_mobile_setting_controller_option_japanese: '日语',
1699
+ fmt_interpretation_mobile_chatwin_controller_label_assign_a_interpreter: '指派一名翻译官',
1700
+ fmt_interpretation_mobile_toast_controller_label_interpret_in_process: '正在进行同声传译,可选择不同的语言频道收听',
1701
+ fmt_interpretation_mobile_toast_controller_toast_label_update_interpreter_by_cocontroller: '联席主持人{reason1}更新了同声传译的翻译官或语言',
1702
+ fmt_interpretation_mobile_interpreter_popup_label_as_interpreter: '你被指为翻译官',
1703
+ fmt_interpretation_mobile_interpreter_popup_label_open_microphone: '请确认打开麦克风,并通过主界面按钮进行两种语言的输出切换',
1704
+ fmt_interpretation_mobile_interpreter_popup_label_en: '英语',
1705
+ fmt_interpretation_mobile_interpreter_popup_label_cn: '中文',
1706
+ fmt_interpretation_mobile_interpreter_popup_button_i_know: '我知道了',
1707
+ fmt_interpretation_mobile_interpreter_label_click_change_language: '点击这里可以切换要传达的语音频道,并确定是否已经打开麦克风',
1708
+ fmt_interpretation_mobile_interpreter_toast_label_interpreter_channel: '你是翻译官,目前在{reason1}频道',
1709
+ fmt_interpretation_mobile_interpreter_popup_label_permission_revoke: '翻译权限被收回',
1710
+ fmt_interpretation_mobile_interpreter_popup_label_status_cancel: '会议管理员已取消你的翻译官身份',
1711
+ fmt_interpretation_mobile_interpreter_popup_status_button_i_know: '我知道了',
1712
+ fmt_interpretation_mobile_interpreter_popup_change_label_language_change: '请注意,翻译语言有更改',
1713
+ fmt_interpretation_mobile_interpreter_popup_change_button_i_know: '我知道了',
1714
+ fmt_interpretation_mobile_attendnees_popup_lable_language_choose: '选择要收听的语言',
1715
+ fmt_interpretation_mobile_attendnees_popup_option_off: '原声频道',
1716
+ fmt_interpretation_mobile_attendnees_popup_option_cn: '中文',
1717
+ fmt_interpretation_mobile_attendnees_popup_option_en: '英文',
1718
+ fmt_interpretation_mobile_attendnees_popup_label_original_aswell: '同时收听原声',
1719
+ fmt_interpretation_mobile_controller_popup_button_interpret_setting: '同声传译设置',
1720
+ fmt_interpretation_mobile_attendnees_toast_label_channel_close: '您选择的同声传译频道被关闭,已为您切换到原声频道',
1721
+ fmt_interpretation_mobile_meeting_win_label_translator: '翻译官',
1722
+ //****************** 免密登陆 ******************
1723
+ fmt_meeting_creatpage_label_smart_meeting: '灵动会议',
1724
+ fmt_meeting_creatpage_label_fast_experience: '快速体验',
1725
+ fmt_meeting_creatpage_button_create_meeting: '创建会议',
1726
+ fmt_meeting_creatpage_label_room_name: '房间名',
1727
+ fmt_meeting_creatpage_label_enter_room_name: '请输入房间名',
1728
+ fmt_meeting_creatpage_label_user_name: '用户名',
1729
+ fmt_meeting_creatpage_label_enter_user_name: '请输入用户名',
1730
+ fmt_meeting_creatpage_label_duration: '时长',
1731
+ fmt_meeting_creatpage_label_enter_duration: '请输入会议时长',
1732
+ fmt_meeting_creatpage_label_password: '入会密码',
1733
+ fmt_meeting_creatpage_label_password_empty_admit_without_password: '如密码为空,参会者将免密入会',
1734
+ fmt_meeting_creatpage_label_enter_password: '请输入入会密码',
1735
+ fmt_meeting_creatpage_button_quick_meeting_creat: '快速创建会议',
1736
+ fmt_meeting_creatpage_label_create_meeting_summary: '入会的同时,创建会议纪要',
1737
+ fmt_meeting_creatpage_label_agree_service: '同意《灵动会议用户服务协议》和《灵动会议隐私政策》',
1738
+ fmt_meeting_creatpage_button_join_meeting: '加入会议',
1739
+ fmt_meeting_creatpage_label_join_room_num: '房间号',
1740
+ fmt_meeting_creatpage_label_join_enter_room_num: '请输入房间号',
1741
+ fmt_meeting_creatpage_label_join_user_name: '用户名',
1742
+ fmt_meeting_creatpage_label_join_enter_user_name: '请输入用户名',
1743
+ fmt_meeting_creatpage_label_join_password: '入会密码',
1744
+ fmt_meeting_creatpage_label_join_enter_password: '请输入入会密码',
1745
+ fmt_meeting_creatpage_label_join_role: '角色',
1746
+ fmt_meeting_creatpage_label_join_attendee: '参会者',
1747
+ fmt_meeting_creatpage_label_join_read_agree: '同意',
1748
+ fmt_meeting_creatpage_label_service: '《灵动会议用户服务协议》',
1749
+ fmt_meeting_creatpage_label_privacy: '《灵动会议隐私政策》',
1750
+ fmt_meeting_creatpage_label_and: '和',
1751
+ fmt_meeting_creatpage_tips_join_password_length: '请输入9位长度的数字',
1752
+ fmt_meeting_creatpage_tips_join_username_length: '请输入2-20位长度的内容',
1753
+ fmt_meeting_mainpage_tips_sleep_left_meeting: '因系统睡眠已退出会议',
1754
+ fmt_meeting_creatpage_button_quick_join_meeting: '快速加入会议',
1755
+ fmt_meeting_creatpage_label_join_agree_service: '同意《灵动会议用户服务协议》和《灵动会议隐私政策》',
1756
+ fmt_meeting_creatpage_popup_label_wrong_room_password: '房间不存在或者密码错误',
1757
+ fmt_meeting_mainwindow_topbar_left_button_meeting_detail: '会议详情 {reason1}',
1758
+ fmt_meeting_mainwindow_topbar_left_popup_toast_copy_information: '点击复制全部信息',
1759
+ fmt_meeting_mainwindow_topbar_left_popup_toast_copy_done: '会议信息已复制到剪贴板',
1760
+ fmt_meeting_mainwindow_topbar_left_popup_label_share: '分享会议号或邀请链接',
1761
+ fmt_meeting_mainwindow_topbar_left_popup_label_room_name: '{reason1}(房间名)',
1762
+ fmt_meeting_mainwindow_topbar_left_popup_label_meeting_num: '会议号 {reason1}',
1763
+ fmt_meeting_mainwindow_topbar_left_popup_label_meeting_password: '会议密码 {reason1}',
1764
+ fmt_meeting_mainwindow_topbar_left_popup_label_link: '邀请链接 {reason1}',
1765
+ fmt_meeting_mainwindow_topbar_left_popup_label_all_info: '复制全部信息',
1766
+ fmt_meeting_call_voice_call_button_copy_info: '复制全部信息',
1767
+ fmt_link_invitation: '{reason1} 邀请您参加会议',
1768
+ fmt_link_invitation_topic: '会议主题为:{reason1}',
1769
+ fmt_link_invitation_time: '会议时间:{reason1}',
1770
+ fmt_link_invitation_link: '会议链接:{reason1}',
1771
+ fmt_link_invitation_id: '会议号:{reason1}',
1772
+ fmt_link_invitation_password: '会议密码:{reason1}',
1773
+ fmt_meeting_creatpage_toast_password_only_contain: '密码只能包含数字、字母和符号',
1774
+ fmt_meeting_creatpage_toast_password_only_six: '入会密码长度为6位',
1775
+ //****************** 翻译语言 ******************
1776
+ fmt_translate_language_chinese: '中文',
1777
+ fmt_translate_language_english: '英文',
1778
+ fmt_translate_language_japanese: '日语',
1779
+ fmt_translate_language_korean: '韩语',
1780
+ fmt_translate_language_german: '德语',
1781
+ fmt_translate_language_french: '法语',
1782
+ fmt_translate_language_russian: '俄语',
1783
+ fmt_translate_language_spanish: '西班牙语',
1784
+ fmt_translate_language_portuguese: '葡萄牙语',
1785
+ fmt_translate_language_ilalian: '意大利语',
1786
+ fmt_translate_language_arabic: '阿拉伯语',
1787
+ fmt_translate_language_indonesian: '印尼语',
1788
+ fmt_translate_language_hindi: '印地语',
1789
+ fmt_translate_language_thai: '泰语',
1790
+ fmt_translate_language_vietnamese: '越南语',
1791
+ fmt_translate_language_malay: '马来语',
1792
+ fmt_translate_language_turkish: '土耳其语',
1793
+ fmt_translate_language_chinese_mini: '中',
1794
+ fmt_translate_language_english_mini: '英',
1795
+ fmt_translate_language_japanese_mini: '日',
1796
+ fmt_translate_language_korean_mini: '韩',
1797
+ fmt_translate_language_german_mini: '德',
1798
+ fmt_translate_language_french_mini: '法',
1799
+ fmt_translate_language_russian_mini: '俄',
1800
+ fmt_translate_language_spanish_mini: '西',
1801
+ fmt_translate_language_portuguese_mini: '葡',
1802
+ fmt_translate_language_ilalian_mini: '意',
1803
+ fmt_translate_language_arabic_mini: 'AR',
1804
+ fmt_translate_language_indonesian_mini: 'ID',
1805
+ fmt_translate_language_hindi_mini: 'HI',
1806
+ fmt_translate_language_thai_mini: '泰',
1807
+ fmt_translate_language_vietnamese_mini: '越',
1808
+ fmt_translate_language_malay_mini: 'MS',
1809
+ fmt_translate_language_turkish_mini: 'TR',
1810
+ //****************** 分组 ******************
1811
+
1812
+ // web
1813
+ fmt_group_mainwindow_sidebar_button_group_discuss: '分组讨论',
1814
+ fmt_group_mainwindow_sidebar_label_group_discuss_on: '开启分组',
1815
+ fmt_group_mainwindow_sidebar_label_group_discuss_off: '关闭分组',
1816
+ fmt_group_popup_creat_label_breakout_room: '讨论组',
1817
+ fmt_group_popup_creat_label_participant: '参与者{reason1}',
1818
+ fmt_group_popup_creat_label_not_start: '未开始',
1819
+ fmt_group_popup_creat_label_creat_breakout: '创建',
1820
+ fmt_group_popup_creat_label_breakout_num: '个讨论组',
1821
+ fmt_group_popup_creat_label_average_participant: '平均每组{reason1}个参会者',
1822
+ fmt_group_popup_creat_label_auto_assign: '自动分配',
1823
+ fmt_group_popup_creat_label_manual_assign: '手动分配',
1824
+ fmt_group_popup_creat_button_next_step: '下一步',
1825
+ fmt_group_popup_creat_button_cancle: '取消',
1826
+ fmt_group_mainwindow_topbar_label_group_discuss_time: '小组讨论时长',
1827
+ fmt_group_mainwindow_toast_label_group_function_off: '你已进入分组!请注意,分组内有部分功能不可用哦',
1828
+ fmt_group_mainwindow_sidebar_button_back_mainroom: '返回主会场',
1829
+ fmt_group_popup_creat_next_label_ungrouped: '未分组',
1830
+ fmt_group_popup_creat_next_label_search: '搜索',
1831
+ fmt_group_popup_creat_next_label_breakout_room: '讨论组',
1832
+ fmt_group_popup_creat_next_label_breakout_room_num: '讨论组{reason1}',
1833
+ fmt_group_popup_creat_next_label_not_start: '未开始',
1834
+ fmt_group_popup_creat_next_button_assign: '分配',
1835
+ fmt_group_popup_creat_next_label_may_set_feature: '{reason1}等{reason1}人可能正在设置该功能',
1836
+ fmt_group_popup_creat_next_search_label_search: '搜索成员',
1837
+ fmt_group_popup_creat_next_search_button_sure: '确定',
1838
+ fmt_group_popup_creat_next_search_label_no_data: '无数据',
1839
+ fmt_group_popup_creat_next_namebar_button_drag_to_group: '移动到分组',
1840
+ fmt_group_popup_creat_next_button_add_breakroom: '添加讨论组',
1841
+ fmt_group_popup_creat_next_label_add_one: '新添加1个分组',
1842
+ fmt_group_popup_creat_next_button_re_creat: '重新创建',
1843
+ fmt_group_popup_creat_next_button_start_group: '开始讨论',
1844
+ fmt_group_popup_creat_next_label_breakroom_limitation: '添加讨论组(上限 50 个)',
1845
+ fmt_group_popup_creat_next_namebar_button_remove: '移出',
1846
+ fmt_group_popup_creat_next_namebar_button_move_to: '移动至',
1847
+ fmt_group_popup_creat_next_namebar_popup_label_move_to: '移动至',
1848
+ fmt_group_popup_creat_next_recreat_label_recreat_caution: '重新创建会覆盖目前的分组',
1849
+ fmt_group_popup_creat_next_recreat_label_creat_num: '创建{reason1}个讨论组',
1850
+ fmt_group_popup_creat_next_recreat_label_auto_creat: '自动分配',
1851
+ fmt_group_popup_creat_next_recreat_label_manual_creat: '手动分配',
1852
+ fmt_group_popup_creat_next_recreat_label_allow_choose: '允许参会者选择讨论组',
1853
+ fmt_group_popup_creat_next_recreat_button_recreat: '重新创建',
1854
+ fmt_group_popup_creat_next_group_name_label_rename: '重命名',
1855
+ fmt_group_popup_creat_next_group_name_popup_label_rename: '重命名讨论组',
1856
+ fmt_group_popup_creat_next_group_name_popup_button_cancel: '取消',
1857
+ fmt_group_popup_creat_next_group_name_popup_button_rename: '重命名',
1858
+ fmt_group_popup_creat_next_group_name_popup_label_enter: '请输入',
1859
+ fmt_group_popup_creat_next_group_name_label_delete: '删除讨论组',
1860
+ fmt_group_popup_creat_next_group_name_popup_label_delete: '确定删除吗?',
1861
+ fmt_group_popup_creat_next_group_name_popup_button_cancel_delete: '取消',
1862
+ fmt_group_popup_creat_next_group_name_popup_button_delete: '确认删除',
1863
+ fmt_group_popup_creat_next_label_creat_started: '已开始',
1864
+ fmt_group_popup_creat_next_group_name_popup_button_join: '加入',
1865
+ fmt_group_popup_creat_next_label_people_num: '{reason1}人',
1866
+ fmt_group_popup_creat_next_sidpop_label_setting: '设置',
1867
+ fmt_group_popup_creat_next_sidpop_label_auto_move_assigned: '自动将分配的参会成员移至讨论组中',
1868
+ fmt_group_popup_creat_next_sidpop_label_allow_select_group: '允许参会者选择讨论组',
1869
+ fmt_group_popup_creat_next_sidpop_label_allow_back_main: '允许参会者随时返回主会场',
1870
+ fmt_group_popup_creat_next_sidpop_label_auto_stop_time: '分钟后自动结束讨论',
1871
+ fmt_group_popup_creat_next_sidpop_label_auto_stop_time_announce: '{reason1}分钟后自动结束讨论(讨论结束时请通知会议管理员)',
1872
+ fmt_group_popup_creat_next_sidpop_label_countdown: '分组后讨论结束时,倒计时',
1873
+ fmt_group_popup_creat_next_sidpop_label_countdown_to_main: '{reason1}秒后成员自动返回主会场',
1874
+ fmt_group_popup_creat_next_button_help_list: '帮助列表{reason1}',
1875
+ fmt_group_popup_creat_next_sidpop_label_help_list: '帮助列表{reason1}',
1876
+ fmt_group_popup_creat_next_sidpop_button_help_ignore: '忽略',
1877
+ fmt_group_popup_creat_next_sidpop_label_help_join: '加入',
1878
+ fmt_group_popup_creat_next_sidpop_label_help_num: '{reason1}人在求助',
1879
+ fmt_group_popup_creat_next_sidpop_label_no_help_call: '没有帮助请求',
1880
+ fmt_group_popup_creat_next_button_message_to_all: '给所有人发消息',
1881
+ fmt_group_popup_creat_next_message_label_message_to_all: '给所有人发消息',
1882
+ fmt_group_popup_creat_next_message_label_enter: '请输入',
1883
+ fmt_group_popup_creat_next_message_button_cancel: '取消',
1884
+ fmt_group_popup_creat_next_message_button_send: '发送',
1885
+ fmt_group_mainwindow_label_message_sent: '消息已发送给全体成员',
1886
+ fmt_group_mainwindow_sidebar_popup_label_group_request: '{reason1}个小组请求你入组:',
1887
+ fmt_group_popup_creat_next_label_stop_disscussion: '停止讨论',
1888
+ fmt_group_popup_creat_next_stop_popup_label_stop_disscussion: '确定结束分组讨论?',
1889
+ fmt_group_popup_creat_next_stop_popup_label_stop_back_mian: '结束后,所有成员将返回主会场',
1890
+ fmt_group_popup_creat_next_stop_popup_button_cancel: '取消',
1891
+ fmt_group_popup_creat_next_stop_popup_button_comfire: '确定结束',
1892
+ fmt_group_mainwindow_sidebar_label_someone_ask_help: '分组内有人在寻求帮助',
1893
+ fmt_group_mainwindow_sidebar_label_ask_admin_for_help: '会议开启了讨论组功能,你可以在这向会议管理员求助',
1894
+ fmt_group_mainwindow_sidebar_button_ask_help: '请求帮助',
1895
+ fmt_group_mainwindow_sidebar_label_click_ask_help: '点击向会议管理员求助',
1896
+ fmt_group_mainwindow_sidebar_label_ask_help_already: '已向会议管理员发起求助',
1897
+ fmt_group_mainwindow_sidebar_label_asking_click_to_cancel: '求助中,点击取消求助',
1898
+ fmt_group_mainwindow_sidebar_label_click_to_cancel: '再次点击可以取消“求助”',
1899
+ fmt_group_mainwindow_sidebar_label_in_breakroom_function_not_available: '你已进入分组!请注意,分组内有部分功能不可用哦',
1900
+ fmt_group_mainwindow_sidebar_button_leave_group: '离开分组',
1901
+ fmt_group_mainwindow_sidebar_button_back_to_main: '返回主会场',
1902
+ fmt_group_mainwindow_label_host_in: '主持人{reason1}进入我们组',
1903
+ fmt_group_mainwindow_label_co_host_in: '联席主持人{reason1}进入我们组',
1904
+ fmt_group_mainwindow_label_host_out: '主持人{reason1}离开我们组',
1905
+ fmt_group_mainwindow_label_co_host_out: '联席主持人{reason1}离开我们组',
1906
+ fmt_group_mainwindow_popup_label_group_invitation: '邀请你加入讨论组',
1907
+ fmt_group_mainwindow_popup_label_group_assgined: '你已经被分配到一个分组讨论中:{reason1}',
1908
+ fmt_group_mainwindow_popup_button_cancel: '取消',
1909
+ fmt_group_mainwindow_popup_button_join: '加入',
1910
+ fmt_group_mainwindow_sidebar_label_goup_function_on_click_to_join: '会议开启了讨论组功能,你可以在这进入分组',
1911
+ fmt_group_mainwindow_leave_popup_label_leave_meeting: '离开会议',
1912
+ fmt_group_mainwindow_leave_popup_label_leave_meeting_befor_finish: '分组讨论还未结束,你确定离开会议吗',
1913
+ fmt_group_mainwindow_leave_popup_button_leave_meeting: '离开会议',
1914
+ fmt_group_mainwindow_leave_breakout_popup_label_leave_breakroom: '离开讨论组',
1915
+ fmt_group_mainwindow_leave_breakout_popup_label_leave_meeting_or_back_main: '你可以返回主会场,或直接离开会议。',
1916
+ fmt_group_mainwindow_leave_breakout_popup_button_back_to_main: '返回主会场',
1917
+ fmt_group_mainwindow_leave_breakout_popup_button_leave_meeting: '离开会议',
1918
+ fmt_group_mainwindow_sidebar_button_cancel: '取消',
1919
+ fmt_group_popup_breakout_room_label_my_group: '我的小组',
1920
+ fmt_group_popup_breakout_room_label_breakout_room: '讨论组',
1921
+ fmt_group_popup_breakout_room_button_join: '加入',
1922
+ fmt_group_popup_breakout_room_label_search: '搜索',
1923
+ fmt_group_popup_breakout_room_label_none: '无',
1924
+ fmt_group_mainwindow_not_placed_popup_label_not_placed: '未被安排入任一个分组',
1925
+ fmt_group_mainwindow_not_placed_popup_label_contact_admin: '请你联系会议管理员',
1926
+ fmt_group_mainwindow_not_placed_popup_button_i_know: '我知道了',
1927
+ fmt_group_mainwindow_end_breakout_room_popup_label_session_end: '分组讨论结束',
1928
+ fmt_group_mainwindow_end_breakout_room_popup_label_stop_immediately: '分组讨论结束时间到了,是否立即结束所有讨论?',
1929
+ fmt_group_mainwindow_end_breakout_room_popup_button_continue: '继续讨论',
1930
+ fmt_group_mainwindow_end_breakout_room_popup_button_end: '立即结束',
1931
+ fmt_group_mainwindow_label_continue_by_host: '主持人已继续延时分组功能',
1932
+ fmt_group_mainwindow_label_continue_by_co_host: '联席主持人已继续延时分组功能',
1933
+ fmt_group_mainwindow_label_end_by_host: '主持人已结束分组功能',
1934
+ fmt_group_mainwindow_label_end_by_co_host: '联席主持人已结束分组功能',
1935
+ fmt_group_mainwindow_label_times_up_auto_end_group: '时间到,已自动结束分组',
1936
+ fmt_group_mainwindow_breakout_room_count_popup_label_discuss_end: '分组讨论结束',
1937
+ fmt_group_mainwindow_breakout_room_count_popup_label_discuss_end_immediately: '分组讨论结束时间到了,是否立即结束所有讨论?',
1938
+ fmt_group_mainwindow_breakout_room_count_popup_button_i_know: '我知道了',
1939
+ fmt_group_mainwindow_breakout_room_count_popup_button_back_main: '返回主会场',
1940
+ fmt_group_popup_creat_next_label_end_after_count: '所有分组讨论将在倒计时后自动结束',
1941
+ fmt_group_popup_creat_next_label_back_main_after_count_auto: '你将自动返回主会场',
1942
+ //移动
1943
+ fmt_mobile_group_function_button_breakout_group: '分组',
1944
+ fmt_mobile_group_sidebar_button_leave_group: '离开分组',
1945
+ fmt_mobile_group_creat_label_creat_group: '创建分组',
1946
+ fmt_mobile_group_creat_label_creat_group_num: '分组数',
1947
+ fmt_mobile_group_creat_label_avg_group_num: '平均每组{reason1}个参会者',
1948
+ fmt_mobile_group_creat_label_group_format: '分组形式',
1949
+ fmt_mobile_group_creat_label_random_group: '随机分组',
1950
+ fmt_mobile_group_creat_label_participant_choose: '参会者自主选择讨论组',
1951
+ fmt_mobile_group_creat_label_group_setting: '分组设置',
1952
+ fmt_mobile_group_creat_label_allow_return_main_anytime: '允许参会者随时返回主会场',
1953
+ fmt_mobile_group_creat_label_set_timer: '设定讨论时长(自动结束)',
1954
+ fmt_mobile_group_creat_label_timer: '分钟数',
1955
+ fmt_mobile_group_creat_label_set_timer_after_finish: '设定分组讨论结束时,成员在多少秒后自动返回主会场',
1956
+ fmt_mobile_group_creat_label_count_down: '倒计时',
1957
+ fmt_mobile_group_creat_label_auto_move_assigned_in_group: '自动将分配的参会成员移至讨论组中',
1958
+ fmt_mobile_group_creat_label_allow_participant_select_group: '允许参会者选择讨论组',
1959
+ fmt_mobile_group_creat_button_start_group: '开始分组',
1960
+ fmt_mobile_group_breakout_room_label_breakout_group: '分组讨论',
1961
+ fmt_mobile_group_breakout_room_label_started: '已开始',
1962
+ fmt_mobile_group_breakout_room_label_search: '搜索',
1963
+ fmt_mobile_group_breakout_room_button_send_group_message: '发送讨论组群消息',
1964
+ fmt_mobile_group_breakout_room_button_end_group: '结束分组',
1965
+ fmt_mobile_group_breakout_room_label_not_in: '未加入',
1966
+ fmt_mobile_group_breakout_room_button_join: '加入',
1967
+ fmt_mobile_group_breakout_room_label_not_grouped: '有{reason1}个参会者未分组',
1968
+ fmt_mobile_group_help_label_help_list: '帮助列表{reason1}',
1969
+ fmt_mobile_group_help_button_go_to: '进入',
1970
+ fmt_mobile_group_help_button_not_now: '忽略',
1971
+ fmt_mobile_group_invitation_popup_label_invitation_announce: '邀请你加入讨论组',
1972
+ fmt_mobile_group_invitation_popup_label_assigned_already: '你已经被分配到一个分组讨论中:{reason1}',
1973
+ fmt_mobile_mainwindow_group_invitation_popup_button_cancel: '取消',
1974
+ fmt_mobile_mainwindow_group_invitation_popup_button_join: '加入',
1975
+ fmt_mobile_mainwindow_group_invitation_label_breakout_on_join_here: '会议开启了讨论组功能,你可以在这进入分组',
1976
+ fmt_mobile_mainwindow_group_leave_label_leave_group: '离开讨论组',
1977
+ fmt_mobile_mainwindow_group_leave_label_leave_meeting_or_back_main: '你可以返回主会场,或直接离开会议。',
1978
+ fmt_mobile_mainwindow_group_leave_button_back_main: '返回主会场',
1979
+ fmt_mobile_mainwindow_group_leave_button_leave_meeting: '离开会议',
1980
+ fmt_mobile_mainwindow_group_leave_label_leave_group_means_leave_meeting: '该会议设置了离开讨论分组即离开会议,你确定现在离开会议吗?',
1981
+ fmt_mobile_mainwindow_group_leave_button_leave_the_meeting: '离开会议',
1982
+ fmt_mobile_mainwindow_group_help_label_breakout_on_ask_help_here: '会议开启了讨论组功能,你可以在这向会议管理员求助',
1983
+ fmt_mobile_mainwindow_group_select_label_select_group: '选择讨论组',
1984
+ fmt_mobile_mainwindow_group_select_label_my_group: '我的小组',
1985
+ fmt_mobile_mainwindow_group_select_label_search: '搜索',
1986
+ fmt_mobile_mainwindow_group_select_button_join: '加入',
1987
+ fmt_mobile_mainwindow_group_select_label_not_joined: '(未加入)',
1988
+ fmt_mobile_mainwindow_group_not_assigned_label_not_assgined: '未被安排入任一个分组',
1989
+ fmt_mobile_mainwindow_group_not_assigned_label_contact_admin: '请你联系会议管理员',
1990
+ fmt_mobile_mainwindow_group_not_assigned_button_i_know: '我知道了',
1991
+ fmt_mobile_mainwindow_group_help_label_ask_help: '请求帮助',
1992
+ fmt_mobile_mainwindow_group_help_label_ask_help_from_admin: '你可邀请会议管理员进入讨论组为你提供帮助',
1993
+ fmt_mobile_mainwindow_group_help_button_cancel: '取消',
1994
+ fmt_mobile_mainwindow_group_help_button_send_invitation: '发出邀请',
1995
+ fmt_mobile_mainwindow_group_help_label_click_again_cancel: '再次点击可以取消“求助”',
1996
+ fmt_mobile_mainwindow_group_help_label_ask_already: '已向会议管理员发起求助',
1997
+ fmt_mobile_mainwindow_group_help_label_already_help_inactive: '会议管理员已经在小组内,求助功能暂不可用',
1998
+ fmt_mobile_mainwindow_group_help_label_co_host_in: '联席主持人{reason1}进入我们组',
1999
+ fmt_mobile_mainwindow_group_help_label_host_in: '主持人{reason1}进入我们组',
2000
+ fmt_mobile_mainwindow_group_help_label_co_host_out: '联席主持人{reason1}离开我们组',
2001
+ fmt_mobile_mainwindow_group_help_label_host_out: '主持人{reason1}离开我们组',
2002
+ fmt_mobile_mainwindow_group_help_label_enter_group_function_off: '你已进入分组!请注意,分组内有部分功能不可用哦',
2003
+ fmt_mobile_mainwindow_group_down_popbar_ask_help: '来自请求帮助',
2004
+ fmt_mobile_mainwindow_group_down_popbar_join: '加入',
2005
+ fmt_mobile_mainwindow_group_down_popbar_ignore: '忽略',
2006
+ fmt_mobile_group_breakout_room_label_join: '加入',
2007
+ fmt_mobile_chat_label_sent_to: '发送给:',
2008
+ fmt_mobile_chat_label_sent_to_meeting: '会议中',
2009
+ fmt_mobile_chat_label_sent_to_waiting_room: '等候室',
2010
+ fmt_mobile_chat_label_sent_to_all: '所有人',
2011
+ fmt_mobile_group_breakout_room_label_message_sent: '消息已发送给全体成员',
2012
+ fmt_mobile_chat_label_breakout_group_message: '讨论组群消息',
2013
+ fmt_mobile_group_breakout_room_label_end_group: '确定结束分组讨论?',
2014
+ fmt_mobile_group_breakout_room_label_back_main_after_end: '结束后,所有成员将返回主会场',
2015
+ fmt_mobile_group_breakout_room_button_cancel: '取消',
2016
+ fmt_mobile_group_breakout_room_button_comfirm: '确定结束',
2017
+ fmt_mobile_mainwindow_group_popup_label_group_finish: '分组讨论结束',
2018
+ fmt_mobile_mainwindow_group_popup_label_group_finish_end_immediately: '分组讨论结束时间到了,是否立即结束所有讨论?',
2019
+ fmt_mobile_mainwindow_group_popup_button_continue: '继续讨论',
2020
+ fmt_mobile_mainwindow_group_popup_button_end: '立即结束',
2021
+ fmt_mobile_mainwindow_label_host_continue: '主持人已继续延时分组功能',
2022
+ fmt_mobile_mainwindow_label_co_host_continue: '联席主持人已继续延时分组功能',
2023
+ fmt_mobile_mainwindow_label_host_end: '主持人已结束分组功能',
2024
+ fmt_mobile_mainwindow_label_co_host_end: '联席主持人已结束分组功能',
2025
+ fmt_mobile_mainwindow_label_times_up_finish_auto: '分组时间到,已自动结束分组',
2026
+ fmt_mobile_mainwindow_down_popup_label_group_end: '分组讨论结束',
2027
+ fmt_mobile_mainwindow_down_popup_label_group_end_immediately: '分组讨论结束时间到了,是否立即结束所有讨论?',
2028
+ fmt_mobile_mainwindow_down_popup_button_back_main: '返回主会场',
2029
+ fmt_mobile_mainwindow_down_popup_button_i_know: '我知道了',
2030
+ fmt_mobile_group_breakout_room_label_finishi_after_timer: '所有分组讨论将在倒计时后自动结束',
2031
+ fmt_mobile_group_breakout_room_label_back_main_auto: '你将返回自动主会场',
2032
+ fmt_mobile_group_breakout_room_button_leave_group: '离开讨论组',
2033
+ //****************** h5 单补 ******************
2034
+ fmt_h_label_more_function: '更多功能',
2035
+ fmt_h_label_tempor_hide_screen_share: '在屏幕共享时,会暂时隐藏其它参会者',
2036
+ fmt_h_label_tempor_hide_white_board: '在白板共享时,会暂时隐藏其他参会者',
2037
+ fmt_h_tips_host_enabled_waiting_room: '管理员已开启等候室,暂时无法加入会议',
2038
+ fmt_h_tips_tap_to_play: '轻触进行播放',
2039
+ //****************** 错误信息 ******************
2040
+ fmt_pc_room_not_exist_error: '房间不存在或密码错误',
2041
+ fmt_lock_error: '主持人锁定了会议,其他人不可入会',
2042
+ fmt_end_error: '会议已结束',
2043
+ fmt_host_leave_error: '主持人不在会议中',
2044
+ //****************** hostkey ******************
2045
+ fmt_hostkey_window_title_reclaim_host: '收回主持人权限',
2046
+ fmt_hostkey_window_content_reclaim_host: '{reason1}为当前会议主持人,收回权限可能会中断主持人部份操作',
2047
+ fmt_hostkey_window_button_reclaim_host: '收回主持人权限',
2048
+ fmt_hostkey_window_button_remain_cohost: '保持联席主持人',
2049
+ fmt_hostkey_window_button_remain_attendees: '保持参会者',
2050
+ fmt_hostkey_meetingroom_toast_now_host: '你已成为主持人',
2051
+ fmt_hostkey_participant_button_reclaim_host: '收回主持人权限',
2052
+ fmt_hostkey_participant_button_claim_host: '成为主持人',
2053
+ fmt_hostkey_input_hostkey_title_enter_key: '输入密钥以获得主持人权限',
2054
+ fmt_hostkey_input_hostkey_text_hint_enter_key: '请输入主持人密钥',
2055
+ fmt_hostkey_input_hostkey_button_cancel: '取消',
2056
+ fmt_hostkey_input_hostkey_button_ok: '确定',
2057
+ fmt_hostkey_input_hostkey_tips_incorrect_key: '密钥错误',
2058
+ fmt_hostkey_meetingroom_toast_unable_to_claim_host: '会议已有主持人,无法通过密钥获取主持人权限',
2059
+ //****************** JBH ******************
2060
+ fmt_jbh_title_host_not_in_meeting: '会议未开始,等待主持人进入',
2061
+ fmt_jbh_title_host_in_meeting: '请稍等,主持人即将邀请您入会',
2062
+ fmt_jbh_title_meeting_topic: '会议主题',
2063
+ fmt_jbh_toast_meeting_not_start: '会议暂未开始,请稍后再试',
2064
+ //****************** APPS ******************
2065
+ fmt_apps_button_automatic_screenshot: '自动截屏',
2066
+ //****************** Webinar ******************
2067
+ fmt_webinar_tips_welcome_greetings: '{中文欢迎语} ',
2068
+ fmt_echo_window_label_echo_in_environment: '检测到当前环境存在回声',
2069
+ fmt_echo_window_label_disconect_audio: '为保障会议体验,建议断开音频来关闭麦克风和扬声器',
2070
+ fmt_echo_window_button_cancel: '取消',
2071
+ fmt_echo_window_button_disconnect: '断开音频',
2072
+ fmt_mute_toast_yr_on_mute: '您已静音,请开启麦克风'
2073
+ };