fcr-ui-scene-mobile 3.4.0

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