fcr-ui-scene 3.9.0-alpha → 3.9.1-alpha

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 (208) hide show
  1. package/lib/creator/provider-initializer.browser.js +4 -2
  2. package/lib/creator/provider-initializer.electron.js +13 -5
  3. package/lib/electron/injections.d.ts +1 -0
  4. package/lib/electron/injections.js +4 -1
  5. package/lib/electron/preload.js +1 -0
  6. package/lib/fragments/annotation/style.css +1 -0
  7. package/lib/fragments/whiteboard/style.css +4 -0
  8. package/lib/modules/action-bar/main-scene/store.base.d.ts +1 -0
  9. package/lib/modules/action-bar/main-scene/store.base.js +5 -0
  10. package/lib/modules/audio-stream/index.d.ts +2 -0
  11. package/lib/modules/audio-stream/index.js +33 -1
  12. package/lib/modules/chat/chat-room-store.js +4 -2
  13. package/lib/modules/chat/index.js +1 -1
  14. package/lib/modules/chat/store.d.ts +1 -1
  15. package/lib/modules/chat/store.js +4 -2
  16. package/lib/modules/components/device-control/store.base.d.ts +1 -0
  17. package/lib/modules/components/device-control/store.base.js +22 -3
  18. package/lib/modules/components/leave-meeting/index.js +3 -2
  19. package/lib/modules/components/leave-meeting/main-scene/store.d.ts +1 -0
  20. package/lib/modules/components/leave-meeting/main-scene/store.js +6 -1
  21. package/lib/modules/components/leave-meeting/store.base.d.ts +1 -0
  22. package/lib/modules/components/leave-meeting/store.base.js +1 -1
  23. package/lib/modules/components/leave-meeting/waiting-scene/store.d.ts +1 -0
  24. package/lib/modules/components/leave-meeting/waiting-scene/store.js +6 -1
  25. package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +7 -10
  26. package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +2 -2
  27. package/lib/modules/components/member-window/components/member-actions/index.js +0 -7
  28. package/lib/modules/components/member-window/components/member-actions/store.js +1 -1
  29. package/lib/modules/components/member-window/index.js +1 -1
  30. package/lib/modules/components/tab-frame/index.css +12 -1
  31. package/lib/modules/components/tab-frame/index.js +4 -1
  32. package/lib/modules/control-bar/components/share-state-nav/index.js +1 -3
  33. package/lib/modules/control-bar/mouse-event-bridge.d.ts +23 -0
  34. package/lib/modules/control-bar/mouse-event-bridge.js +87 -0
  35. package/lib/modules/control-bar/store.d.ts +3 -2
  36. package/lib/modules/control-bar/store.js +17 -29
  37. package/lib/modules/control-bar/type.d.ts +0 -1
  38. package/lib/modules/control-bar/view.js +21 -17
  39. package/lib/modules/dialog/dialogs/connection-gateway/tabs.js +3 -2
  40. package/lib/modules/dialog/dialogs/invite/index.js +6 -24
  41. package/lib/modules/invite/components/copy-info.css +72 -0
  42. package/lib/modules/invite/components/copy-info.d.ts +3 -0
  43. package/lib/modules/invite/components/copy-info.js +144 -0
  44. package/lib/modules/invite/components/pstn-invite.js +3 -15
  45. package/lib/modules/invite/components/voip-invite.js +10 -1
  46. package/lib/modules/invite/enums.d.ts +3 -1
  47. package/lib/modules/invite/enums.js +2 -0
  48. package/lib/modules/invite/store.d.ts +4 -1
  49. package/lib/modules/invite/store.js +37 -13
  50. package/lib/modules/invite/view.js +41 -20
  51. package/lib/modules/layout/store.base.d.ts +2 -1
  52. package/lib/modules/layout/store.base.js +20 -23
  53. package/lib/modules/participant/components/confirm-input/index.css +67 -1
  54. package/lib/modules/participant/components/confirm-input/index.js +16 -13
  55. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +4 -0
  56. package/lib/modules/participant/store.base.d.ts +1 -0
  57. package/lib/modules/participant/store.base.js +34 -7
  58. package/lib/modules/pc-audio-connect/main-scene/store.d.ts +2 -0
  59. package/lib/modules/pc-audio-connect/main-scene/store.js +12 -2
  60. package/lib/modules/pc-audio-connect/view.js +4 -2
  61. package/lib/modules/phone-audio-connect/store.d.ts +6 -4
  62. package/lib/modules/phone-audio-connect/store.js +12 -1
  63. package/lib/modules/phone-audio-connect/view.js +6 -4
  64. package/lib/modules/secondary-window/index.js +2 -2
  65. package/lib/modules/secondary-window/store.d.ts +3 -0
  66. package/lib/modules/secondary-window/store.js +16 -1
  67. package/lib/modules/secondary-window/view.js +96 -72
  68. package/lib/modules/toast-manager/type.d.ts +2 -1
  69. package/lib/modules/toast-manager/type.js +4 -1
  70. package/lib/plugins/module-dev-plugin.js +4 -4
  71. package/lib/providers/ability-provider.d.ts +15 -0
  72. package/lib/providers/ability-provider.js +13 -1
  73. package/lib/providers/mouse-detect/provider.d.ts +2 -0
  74. package/lib/providers/mouse-detect/provider.empty.d.ts +14 -0
  75. package/lib/providers/mouse-detect/provider.empty.js +47 -0
  76. package/lib/providers/mouse-detect/provider.js +13 -4
  77. package/lib/providers/mouse-detect/type.d.ts +2 -0
  78. package/lib/providers/phone-audio-provider.d.ts +31 -5
  79. package/lib/providers/phone-audio-provider.js +83 -22
  80. package/lib/providers/user-audio-volume-provider.d.ts +6 -0
  81. package/lib/providers/user-audio-volume-provider.js +3 -2
  82. package/lib/runtime.d.ts +1 -0
  83. package/lib/scenes/main-scene.js +2 -1
  84. package/lib/shared-data/chat-data.d.ts +19 -0
  85. package/lib/shared-data/chat-data.js +54 -7
  86. package/lib/shared-data/member-data.d.ts +9 -1
  87. package/lib/shared-data/member-data.js +46 -17
  88. package/lib/shared-data/video-window.js +8 -4
  89. package/lib/translations/enUS.d.ts +245 -1
  90. package/lib/translations/enUS.js +247 -3
  91. package/lib/translations/zhCN.d.ts +245 -1
  92. package/lib/translations/zhCN.js +246 -2
  93. package/lib/utilities/os.d.ts +1 -0
  94. package/lib/utilities/os.js +15 -0
  95. package/lib/utilities/renderer.d.ts +1 -0
  96. package/lib/utilities/renderer.js +7 -1
  97. package/lib-es/creator/provider-initializer.browser.js +4 -2
  98. package/lib-es/creator/provider-initializer.electron.js +11 -3
  99. package/lib-es/electron/injections.js +3 -0
  100. package/lib-es/electron/preload.js +2 -1
  101. package/lib-es/fragments/annotation/style.css +1 -0
  102. package/lib-es/fragments/whiteboard/style.css +4 -0
  103. package/lib-es/modules/action-bar/main-scene/store.base.js +5 -0
  104. package/lib-es/modules/audio-stream/index.js +33 -1
  105. package/lib-es/modules/chat/chat-room-store.js +4 -2
  106. package/lib-es/modules/chat/index.js +1 -1
  107. package/lib-es/modules/chat/store.js +4 -2
  108. package/lib-es/modules/components/device-control/store.base.js +22 -3
  109. package/lib-es/modules/components/leave-meeting/index.js +3 -2
  110. package/lib-es/modules/components/leave-meeting/main-scene/store.js +6 -1
  111. package/lib-es/modules/components/leave-meeting/store.base.js +1 -1
  112. package/lib-es/modules/components/leave-meeting/waiting-scene/store.js +6 -1
  113. package/lib-es/modules/components/member-window/components/member-actions/components/icon-status.js +7 -10
  114. package/lib-es/modules/components/member-window/components/member-actions/components/more-actions.js +2 -2
  115. package/lib-es/modules/components/member-window/components/member-actions/index.js +0 -7
  116. package/lib-es/modules/components/member-window/components/member-actions/store.js +1 -1
  117. package/lib-es/modules/components/member-window/index.js +1 -1
  118. package/lib-es/modules/components/tab-frame/index.css +12 -1
  119. package/lib-es/modules/components/tab-frame/index.js +4 -1
  120. package/lib-es/modules/control-bar/components/share-state-nav/index.js +1 -3
  121. package/lib-es/modules/control-bar/mouse-event-bridge.js +79 -0
  122. package/lib-es/modules/control-bar/store.js +18 -30
  123. package/lib-es/modules/control-bar/view.js +21 -17
  124. package/lib-es/modules/dialog/dialogs/connection-gateway/tabs.js +3 -2
  125. package/lib-es/modules/dialog/dialogs/invite/index.js +6 -24
  126. package/lib-es/modules/invite/components/copy-info.css +72 -0
  127. package/lib-es/modules/invite/components/copy-info.js +137 -0
  128. package/lib-es/modules/invite/components/pstn-invite.js +3 -15
  129. package/lib-es/modules/invite/components/voip-invite.js +10 -1
  130. package/lib-es/modules/invite/enums.js +2 -0
  131. package/lib-es/modules/invite/store.js +38 -14
  132. package/lib-es/modules/invite/view.js +43 -22
  133. package/lib-es/modules/layout/store.base.js +20 -23
  134. package/lib-es/modules/participant/components/confirm-input/index.css +67 -1
  135. package/lib-es/modules/participant/components/confirm-input/index.js +16 -13
  136. package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/index.css +4 -0
  137. package/lib-es/modules/participant/store.base.js +34 -7
  138. package/lib-es/modules/pc-audio-connect/main-scene/store.js +12 -2
  139. package/lib-es/modules/pc-audio-connect/view.js +4 -2
  140. package/lib-es/modules/phone-audio-connect/store.js +12 -1
  141. package/lib-es/modules/phone-audio-connect/view.js +6 -4
  142. package/lib-es/modules/secondary-window/index.js +2 -2
  143. package/lib-es/modules/secondary-window/store.js +16 -1
  144. package/lib-es/modules/secondary-window/view.js +97 -73
  145. package/lib-es/modules/toast-manager/type.js +4 -1
  146. package/lib-es/plugins/module-dev-plugin.js +4 -4
  147. package/lib-es/providers/ability-provider.js +13 -1
  148. package/lib-es/providers/mouse-detect/provider.empty.js +39 -0
  149. package/lib-es/providers/mouse-detect/provider.js +13 -4
  150. package/lib-es/providers/phone-audio-provider.js +109 -48
  151. package/lib-es/providers/user-audio-volume-provider.js +3 -2
  152. package/lib-es/scenes/main-scene.js +3 -2
  153. package/lib-es/shared-data/chat-data.js +55 -8
  154. package/lib-es/shared-data/member-data.js +46 -17
  155. package/lib-es/shared-data/video-window.js +8 -4
  156. package/lib-es/translations/enUS.js +247 -3
  157. package/lib-es/translations/zhCN.js +246 -2
  158. package/lib-es/utilities/os.js +8 -0
  159. package/lib-es/utilities/renderer.js +7 -1
  160. package/lib-es/utilities/shared-storage.js +2 -2
  161. package/package.json +6 -6
  162. package/lib/modules/connection-gateway/components/computer/index.css +0 -12
  163. package/lib/modules/connection-gateway/components/computer/index.d.ts +0 -3
  164. package/lib/modules/connection-gateway/components/computer/index.js +0 -66
  165. package/lib/modules/connection-gateway/components/phone/components/callinfo/index.css +0 -36
  166. package/lib/modules/connection-gateway/components/phone/components/callinfo/index.d.ts +0 -10
  167. package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +0 -78
  168. package/lib/modules/connection-gateway/components/phone/components/calling/index.css +0 -72
  169. package/lib/modules/connection-gateway/components/phone/components/calling/index.d.ts +0 -7
  170. package/lib/modules/connection-gateway/components/phone/components/calling/index.js +0 -58
  171. package/lib/modules/connection-gateway/components/phone/components/remeber/index.css +0 -10
  172. package/lib/modules/connection-gateway/components/phone/components/remeber/index.d.ts +0 -5
  173. package/lib/modules/connection-gateway/components/phone/components/remeber/index.js +0 -24
  174. package/lib/modules/connection-gateway/components/phone/components/useing/index.css +0 -46
  175. package/lib/modules/connection-gateway/components/phone/components/useing/index.d.ts +0 -3
  176. package/lib/modules/connection-gateway/components/phone/components/useing/index.js +0 -36
  177. package/lib/modules/connection-gateway/components/phone/index.css +0 -49
  178. package/lib/modules/connection-gateway/components/phone/index.d.ts +0 -3
  179. package/lib/modules/connection-gateway/components/phone/index.js +0 -185
  180. package/lib/modules/connection-gateway/enums.d.ts +0 -4
  181. package/lib/modules/connection-gateway/enums.js +0 -12
  182. package/lib/modules/connection-gateway/index.css +0 -6
  183. package/lib/modules/connection-gateway/index.d.ts +0 -10
  184. package/lib/modules/connection-gateway/index.js +0 -78
  185. package/lib/modules/connection-gateway/store.d.ts +0 -68
  186. package/lib/modules/connection-gateway/store.js +0 -713
  187. package/lib/modules/connection-gateway/types.d.ts +0 -8
  188. package/lib/modules/connection-gateway/types.js +0 -6
  189. package/lib/modules/connection-gateway/view.d.ts +0 -1
  190. package/lib/modules/connection-gateway/view.js +0 -39
  191. package/lib-es/modules/connection-gateway/components/computer/index.css +0 -12
  192. package/lib-es/modules/connection-gateway/components/computer/index.js +0 -59
  193. package/lib-es/modules/connection-gateway/components/phone/components/callinfo/index.css +0 -36
  194. package/lib-es/modules/connection-gateway/components/phone/components/callinfo/index.js +0 -71
  195. package/lib-es/modules/connection-gateway/components/phone/components/calling/index.css +0 -72
  196. package/lib-es/modules/connection-gateway/components/phone/components/calling/index.js +0 -51
  197. package/lib-es/modules/connection-gateway/components/phone/components/remeber/index.css +0 -10
  198. package/lib-es/modules/connection-gateway/components/phone/components/remeber/index.js +0 -17
  199. package/lib-es/modules/connection-gateway/components/phone/components/useing/index.css +0 -46
  200. package/lib-es/modules/connection-gateway/components/phone/components/useing/index.js +0 -29
  201. package/lib-es/modules/connection-gateway/components/phone/index.css +0 -49
  202. package/lib-es/modules/connection-gateway/components/phone/index.js +0 -177
  203. package/lib-es/modules/connection-gateway/enums.js +0 -5
  204. package/lib-es/modules/connection-gateway/index.css +0 -6
  205. package/lib-es/modules/connection-gateway/index.js +0 -60
  206. package/lib-es/modules/connection-gateway/store.js +0 -707
  207. package/lib-es/modules/connection-gateway/types.js +0 -1
  208. package/lib-es/modules/connection-gateway/view.js +0 -31
@@ -26,7 +26,7 @@ import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
26
26
  import _createClass from "@babel/runtime/helpers/createClass";
27
27
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
28
28
  var _FcrUIVideoWindowDataImpl, _FcrUIVideoWindowDataSourceImpl;
29
- var _initProto, _init__boardUserInfo, _init__videoStream, _init__audioStream, _init__spotlightEnabled, _init__isSpeakerSpotlight, _init__boardCanEdit, _init__isFirstCameraOpen, _init_isPin, _init_hasScreenSharing, _init_hasBoardSharing, _init_hasLoopbackSharing, _setVideoStreamDecs, _setVideoStreamOwnerInfoDecs, _setAudioStreamDecs, _setAudioStreamOwnerInfoDecs, _setPinDecs, _setSpotlightEnabledDecs, _setHasBoardSharingDecs, _setBoardUserInfoDecs, _setSpeakerSpotlightDecs, _setHasScreenSharingDecs, _setHasLoopbackSharingDecs, _setBoardCanEditDecs, _getVideoStreamDecs, _ref, _initProto2, _init_spotlightEnabled, _init_layoutType, _init_manualLayout, _init_pinLimitedCount, _init_mainListLimitedCount, _init_foldListLimitedCount, _init_mainList, _init_foldList, _init_spotlightStreamId, _setSpotlightEnabledDecs2, _setLayoutDecs, _onSpotlightRemovedDecs, _resetListDecs, _addBoardDecs, _updateBoardDecs, _removeBoardDecs, _mergePstnStreamOrInsertNewDataDecs, _addDecs, _updateDecs, _deleteDecs, _addPinDecs, _removePinDecs, _setSpeakerSpotlightDecs2, _toggleMainStreamDecs, _insertBeginningByPriorityDecs, _insertEndByPriorityDecs, _findInsertBeginningIndexDecs, _findInsertEndIndexDecs, _insertBoardDecs, _insertNewDataDecs, _ref5;
29
+ var _initProto, _init__boardUserInfo, _init__videoStream, _init__audioStream, _init__spotlightEnabled, _init__isSpeakerSpotlight, _init__boardCanEdit, _init__isFirstCameraOpen, _init_isPin, _init_hasScreenSharing, _init_hasBoardSharing, _init_hasLoopbackSharing, _setVideoStreamDecs, _setVideoStreamOwnerInfoDecs, _setAudioStreamDecs, _setAudioStreamOwnerInfoDecs, _setPinDecs, _setSpotlightEnabledDecs, _setHasBoardSharingDecs, _setBoardUserInfoDecs, _setSpeakerSpotlightDecs, _setHasScreenSharingDecs, _setHasLoopbackSharingDecs, _setBoardCanEditDecs, _getVideoStreamDecs, _ref, _initProto2, _init_spotlightEnabled, _init_layoutType, _init_manualLayout, _init_pinLimitedCount, _init_mainListLimitedCount, _init_foldListLimitedCount, _init_mainList, _init_foldList, _init_spotlightStreamId, _setSpotlightEnabledDecs2, _setLayoutDecs, _onSpotlightRemovedDecs, _resetListDecs, _addBoardDecs, _updateBoardDecs, _removeBoardDecs, _mergePstnStreamOrInsertNewDataDecs, _addDecs, _updateDecs, _deleteDecs, _addPinDecs, _removePinDecs, _setSpeakerSpotlightDecs2, _toggleMainStreamDecs, _insertBeginningByPriorityDecs, _insertEndByPriorityDecs, _findInsertBeginningIndexDecs, _findInsertEndIndexDecs, _insertBoardDecs, _insertNewDataDecs, _ref6;
30
30
  function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
31
31
  function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
32
32
  function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
@@ -298,6 +298,10 @@ export var FcrUIVideoWindowDataImpl = /*#__PURE__*/function () {
298
298
  var _ref4 = this._audioStream || {},
299
299
  audioSourceState = _ref4.audioSourceState;
300
300
  return audioSourceState === FcrMediaSourceState.OPEN;
301
+ } else if (this.videoStreamConnectorType === FcrRoomConnectorType.VOLTE) {
302
+ var _ref5 = this._videoStream || {},
303
+ _audioSourceState = _ref5.audioSourceState;
304
+ return _audioSourceState === FcrMediaSourceState.OPEN;
301
305
  } else {
302
306
  return false;
303
307
  }
@@ -354,7 +358,7 @@ export var FcrUIVideoWindowDataImpl = /*#__PURE__*/function () {
354
358
  var _this$_videoStream1;
355
359
  // 如果是pstn没有头像
356
360
  // 其他用户取videoStream的owner的avatar
357
- if (this.audioStreamConnectorType === FcrRoomConnectorType.PSTN) {
361
+ if (this.audioStreamConnectorType === FcrRoomConnectorType.PSTN || this.audioStreamConnectorType === FcrRoomConnectorType.VOLTE) {
358
362
  return '';
359
363
  }
360
364
  return ((_this$_videoStream1 = this._videoStream) === null || _this$_videoStream1 === void 0 ? void 0 : _this$_videoStream1.owner.avatar) || '';
@@ -539,11 +543,11 @@ var _F2 = /*#__PURE__*/new WeakMap();
539
543
  var _G2 = /*#__PURE__*/new WeakMap();
540
544
  var _H2 = /*#__PURE__*/new WeakMap();
541
545
  var _I2 = /*#__PURE__*/new WeakMap();
542
- _ref5 = (_setSpotlightEnabledDecs2 = [action, action.bound], _setLayoutDecs = [action, action.bound], _onSpotlightRemovedDecs = [action, action.bound], _resetListDecs = [action, action.bound], _addBoardDecs = [action, action.bound], _updateBoardDecs = [action, action.bound], _removeBoardDecs = [action, action.bound], _mergePstnStreamOrInsertNewDataDecs = [action, action.bound], _addDecs = [action, action.bound], _updateDecs = [action, action.bound], _deleteDecs = [action, action.bound], _addPinDecs = [action, action.bound], _removePinDecs = [action, action.bound], _setSpeakerSpotlightDecs2 = [action, action.bound], _toggleMainStreamDecs = [action, action.bound], _insertBeginningByPriorityDecs = [action, action.bound], _insertEndByPriorityDecs = [action, action.bound], _findInsertBeginningIndexDecs = [action, action.bound], _findInsertEndIndexDecs = [action, action.bound], _insertBoardDecs = [action, action.bound], _insertNewDataDecs = [action, action.bound], "_observer");
546
+ _ref6 = (_setSpotlightEnabledDecs2 = [action, action.bound], _setLayoutDecs = [action, action.bound], _onSpotlightRemovedDecs = [action, action.bound], _resetListDecs = [action, action.bound], _addBoardDecs = [action, action.bound], _updateBoardDecs = [action, action.bound], _removeBoardDecs = [action, action.bound], _mergePstnStreamOrInsertNewDataDecs = [action, action.bound], _addDecs = [action, action.bound], _updateDecs = [action, action.bound], _deleteDecs = [action, action.bound], _addPinDecs = [action, action.bound], _removePinDecs = [action, action.bound], _setSpeakerSpotlightDecs2 = [action, action.bound], _toggleMainStreamDecs = [action, action.bound], _insertBeginningByPriorityDecs = [action, action.bound], _insertEndByPriorityDecs = [action, action.bound], _findInsertBeginningIndexDecs = [action, action.bound], _findInsertEndIndexDecs = [action, action.bound], _insertBoardDecs = [action, action.bound], _insertNewDataDecs = [action, action.bound], "_observer");
543
547
  export var FcrUIVideoWindowDataSourceImpl = /*#__PURE__*/function () {
544
548
  function FcrUIVideoWindowDataSourceImpl(_sharedSettingDataSource) {
545
549
  _classCallCheck(this, FcrUIVideoWindowDataSourceImpl);
546
- _defineProperty(this, _ref5, (_initProto2(this), new AgoraObservable()));
550
+ _defineProperty(this, _ref6, (_initProto2(this), new AgoraObservable()));
547
551
  _defineProperty(this, "_spotlightPool", new FcrUISpeakerSpotlightPool());
548
552
  _classPrivateFieldInitSpec(this, _A2, _init_spotlightEnabled(this, true));
549
553
  _classPrivateFieldInitSpec(this, _B2, _init_layoutType(this, FcrUIVideoWindowLayoutType.Gallery));
@@ -9,7 +9,6 @@ export var enUs = {
9
9
  fmt_participants_button_muteAll: 'All mute',
10
10
  fmt_participants_button_unmuteAll: 'Unmute all',
11
11
  fmt_participants_button_meetingManagement: 'Settings',
12
- fmt_participants_button_meetingPermission: 'Meeting Permissions',
13
12
  fmt_participants_button_invite: 'Invite',
14
13
  fmt_participants_member_button_mute: 'Mute',
15
14
  fmt_participants_member_button_unmute: 'Unmute',
@@ -441,7 +440,7 @@ export var enUs = {
441
440
  fmt_chat_private_permission_changes: 'The host has changed permissions, please select again',
442
441
  fmt_chat_status_call_in: 'Connecting via voice',
443
442
  fmt_chat_room_chat_limit: 'Currently muted, unable to send messages',
444
- fmt_chat_private_to_me: 'Me (private)',
443
+ fmt_chat_private_to_me: 'Me',
445
444
  fmt_chat_enable_limit: 'Currently mutted',
446
445
  fmt_chat_say_something: 'Say something',
447
446
  fmt_chat_send_cohost: 'Host/Co-host',
@@ -1075,6 +1074,10 @@ export var enUs = {
1075
1074
  fmt_record_record_stop_confirm: 'Confirm to stop recording',
1076
1075
  fmt_record_toast_record_paused: 'Cloud recording has been paused',
1077
1076
  fmt_record_toast_record_resumed: 'Cloud recording has been resumed',
1077
+ fmt_invitepage_label_by_invitation: 'By Invitation',
1078
+ fmt_invitepage_label_meeting_connector: 'Meeting Connector',
1079
+ fmt_invitepage_label_invite_link: 'Invite Link',
1080
+ fmt_invitepage_label_meeting_details: 'Meeting Details',
1078
1081
  fmt_pstn_label_accessmethod: 'Select audio access method',
1079
1082
  fmt_pstn_options_PCaudioconnet: 'Connect to PC audio',
1080
1083
  fmt_pstn_options_phoneaudioconnet: 'Connect to phone audio',
@@ -1140,6 +1143,7 @@ export var enUs = {
1140
1143
  fmt_SIP323_copywrite_phonenumber: 'Mobile phone number (required)',
1141
1144
  fmt_SIP323_options_detailedinfor: 'Copy meeting detail',
1142
1145
  fmt_SIP323_tips_alreadycopied: 'Already copied on the clipboard',
1146
+ fmt_SIP_tips_enter_correct_number: 'Please enter the correct meeting connector number',
1143
1147
  fmt_localrecord_labels_record: 'Record',
1144
1148
  fmt_localrecord_labels_savingto: 'Local Recording Saved in',
1145
1149
  fmt_localrecord_button_savingto: 'Change',
@@ -2081,5 +2085,245 @@ export var enUs = {
2081
2085
  fmt_echo_window_button_cancel: 'Cancel',
2082
2086
  fmt_echo_window_button_disconnect: 'Disconnect',
2083
2087
  fmt_mute_toast_yr_on_mute: "You're on mute, please unmute.",
2084
- fmt_meeting_setting_options_enable_recording: 'Enable Cloud Recording'
2088
+ fmt_meeting_setting_options_enable_recording: 'Enable Cloud Recording',
2089
+ fmt_premeeting_subheading_scenario: 'business scenario',
2090
+ fmt_premeeting_scenario_setting_button_meeting: 'video conference',
2091
+ fmt_premeeting_scenario_setting_button_webinar: 'webinar',
2092
+ fmt_premeeting_setting_lock_meeting: 'lock meeting',
2093
+ fmt_premeeting_role_setting_role: 'role',
2094
+ fmt_premeeting_role_setting_role_host: 'host',
2095
+ fmt_premeeting_role_setting_role_co_host: 'co-host',
2096
+ fmt_premeeting_role_setting_role_guest: 'guest',
2097
+ fmt_premeeting_role_setting_role_audience: 'audience',
2098
+ fmt_premeeting_setting_allow_guests_unmute: 'allow guests to unmute themselves',
2099
+ fmt_premeeting_setting_allow_guests_turn_on_video: 'allow guests to turn on video',
2100
+ fmt_premeeting_setting_allow_guests_rename: 'allow guests to rename',
2101
+ fmt_premeeting_setting_label_allow_audience_raisehands: 'allow audience to raise hands',
2102
+ fmt_premeeting_setting_allow_audience_view_participants_number: 'allow audience to view total number of participants',
2103
+ fmt_premeeting_setting_allow_audience_rename: 'allow aaudience to rename',
2104
+ fmt_security_setting_label_allow_audience_raisehands: 'allow audience to raise hands',
2105
+ fmt_security_setting_label_allow_audience_viewparticipants: 'allow audience to view total number of participants',
2106
+ fmt_security_setting_label_allow_audience_rename: 'allow audience to rename themselves',
2107
+ fmt_security_setting_label_allow_audience_viewparticipants_off: 'with other xx audience members',
2108
+ fmt_security_setting_mute_guests_entry: 'mute guests on entry',
2109
+ fmt_security_setting_guests_video_entry_off: "turn off guests' video on entry",
2110
+ fmt_security_setting_allow_guests_unmute: 'allow guests to unmute themselves',
2111
+ fmt_security_setting_allow_guests_turn_on_video: 'allow guests to turn on video',
2112
+ fmt_security_setting_allow_guests_share_screen_whiteboard: 'allow guests to share screen and whiteboard',
2113
+ fmt_security_setting_allow_guests_interactive_annotations: 'allow guests to make interactive annotations',
2114
+ fmt_security_setting_allow_guests_rename: 'allow guests to rename themselves',
2115
+ fmt_premeeting_participant_list: 'participant',
2116
+ fmt_premeeting_participant_list_guest: 'guest',
2117
+ fmt_premeeting_participant_list_audience: 'audience',
2118
+ fmt_premeeting_participant_list_raising: 'xx audience members are raising hands',
2119
+ fmt_premeeting_participant_list_guest_demote_audience: 'demote to audience',
2120
+ fmt_premeeting_participant_list_guest_revoke_cohost: 'revoke co-host privileges',
2121
+ fmt_premeeting_participant_list_guest_demote_tip: 'successfully demoted xx to audience',
2122
+ fmt_premeeting_participant_list_guest_revoke_tip: 'the host has set you as audience',
2123
+ fmt_premeeting_participant_list_guest_disable_chatting_tip: "disable xx's chatting permission?",
2124
+ fmt_premeeting_participant_list_guest_block_messages: 'block all chat messages sent by xx? other users will not be able to view them after the operation',
2125
+ fmt_premeeting_participant_list_guest_block_messages_tip: 'you have been muted',
2126
+ fmt_premeeting_participant_upgraded_guest_tip: 'successfully upgraded "xxx" to guest',
2127
+ fmt_premeeting_participant_upgraded_host: 'set as "host"',
2128
+ fmt_premeeting_participant_upgraded_host_choose: 'set "xxx" as the meeting host?',
2129
+ fmt_premeeting_participant_upgraded_host_on: 'set as host',
2130
+ fmt_premeeting_participant_upgraded_host_on_cancel: 'cancel',
2131
+ fmt_premeeting_participant_upgraded_co_host: 'set as "co-host"',
2132
+ fmt_premeeting_participant_upgraded_co_host_tip: 'set "xxx" as the meeting co-host?',
2133
+ fmt_premeeting_participant_upgraded_co_host_on: 'set as co-host',
2134
+ fmt_premeeting_participant_upgraded_co_host_on_cancel: 'cancel',
2135
+ fmt_premeeting_participant_upgraded_co_host_limit: 'the number of user roles has reached the limit. cannot set as co-host',
2136
+ fmt_premeeting_participant_set_guest: 'set as guest',
2137
+ fmt_premeeting_participant_upgraded_guest_limit: 'the number of guest roles has reached the limit. cannot set as guest',
2138
+ fmt_premeeting_participant_set_co_host_tip: 'successfully set "xx" as co-host',
2139
+ fmt_premeeting_participant_set_guest_tip: 'successfully demoted "xx" to guest',
2140
+ fmt_premeeting_participant_set_audience_tip: 'successfully demoted "xx" to audience',
2141
+ fmt_premeeting_participant_cannot_set_audience_tip: 'this role cannot be demoted to audience',
2142
+ fmt_premeeting_participant_set_co_host_tip_myself: 'the host has set you as co-host',
2143
+ fmt_premeeting_participant_set_guest_tip_myself: 'the host has demoted you to guest',
2144
+ fmt_premeeting_participant_set_audience_tip_myself: 'the host has demoted you to audience',
2145
+ fmt_premeeting_participant_xx_now_host: 'xx is now host',
2146
+ fmt_premeeting_participant_xx_now_co_host: 'xx is now co-host',
2147
+ fmt_premeeting_participant_now_co_host_yourself: 'you are now co-host',
2148
+ fmt_premeeting_participant_xx_now_guest: 'xx is now guest',
2149
+ fmt_premeeting_participant_now_host_tip: '"xxx" is now the host',
2150
+ fmt_premeeting_participant_set_guest_tip_u: 'the host has set you as a guest',
2151
+ fmt_premeeting_participant_now_guest_tip_u: 'you are a guest of this meeting. you can turn on your microphone and camera, share your screen, and interact with the audience through public chat and other functions',
2152
+ fmt_premeeting_participant_now_guest_tip_u_ok: 'ok',
2153
+ fmt_premeeting_participant_now_cohost_tip_u: 'you have been set as a co-host',
2154
+ fmt_premeeting_participant_now_host_tip_u: 'you have been set as the host',
2155
+ fmt_premeeting_participant_revoke_host_tip_u: 'your host role has been revoked',
2156
+ fmt_premeeting_participant_revoke_cohost_tip_u: 'your co-host role has been revoked',
2157
+ fmt_premeeting_participant_now_audience_tip_u: 'the host has set you as an audience member',
2158
+ fmt_premeeting_participant_list_revoke_host_role: 'revoke host role',
2159
+ fmt_premeeting_participant_list_modify_nickname: 'modify in-meeting nickname',
2160
+ fmt_premeeting_participant_remove_title: 'remove from meeting',
2161
+ fmt_premeeting_participant_confirm_removal_tip: 'confirm removal of "xxx" from the meeting?',
2162
+ fmt_premeeting_participant_not_rejoin_on: 'the user is not allowed to rejoin this meeting',
2163
+ fmt_premeeting_participant_remove_button: 'remove from meeting',
2164
+ fmt_premeeting_participant_creator_cannot_removed: 'the meeting creator cannot be removed',
2165
+ fmt_premeeting_participant_prohibited_join_tip: 'you are prohibited from joining this meeting',
2166
+ fmt_premeeting_participant_disable_chatting_title: 'disable chatting',
2167
+ fmt_premeeting_participant_disable_chatting_tip: 'disable "xxx"\'s chatting permission?',
2168
+ fmt_premeeting_block_sb_messages_tip: 'block all chat messages sent by "xxx"? other users will not be able to view them after the operation',
2169
+ fmt_premeeting_participant_chat_permission_restored: 'chat permission has been restored for him',
2170
+ fmt_security_setting_lower_hand: 'lower hand',
2171
+ fmt_security_setting_set_spotlight_video: 'set as spotlight video',
2172
+ fmt_security_setting_cancel_spotlight_follow: 'cancel spotlight follow',
2173
+ fmt_security_setting_allow_local_recording: 'allow local video recording',
2174
+ fmt_security_setting_move_waiting_room: 'move to waiting room',
2175
+ fmt_security_setting_pricate_chat_host: 'private chat',
2176
+ fmt_security_setting_pin: 'pin',
2177
+ fmt_participants_setting_raise_hand: 'raise hand',
2178
+ fmt_participants_setting_raise_hand_tips: 'you have raised your hand, please wait for the host to respond',
2179
+ fmt_participants_setting_lower_hand: 'lower hand',
2180
+ fmt_participants_setting_lower_hand_tips: 'you have lowered your hand',
2181
+ fmt_participants_setting_raise_hand_counts_tips: 'xx and another x people are raising their hands',
2182
+ fmt_participants_setting_raise_hand_disabled_red_tips: 'the host has disabled the raise hand function',
2183
+ fmt_participants_setting_raise_hand_disabled_tips: 'the host has disabled the raise hand function',
2184
+ fmt_participants_setting_hands_lowered_tips: 'your hand has been lowered',
2185
+ fmt_participants_setting_raise_hand_number_limit_tips: 'the number of raised hands has reached the limit, please try again later',
2186
+ fmt_participants_setting_danmaku_raise_hand_counts_tips: 'xx and another x people are raising their hands',
2187
+ fmt_participants_list_raise_hand_counts_tips: 'x participants are raising their hands',
2188
+ fmt_participants_list_privilege_allow_chatting: 'allow chatting',
2189
+ fmt_participants_list_privilege_private_chat: 'private chat',
2190
+ fmt_participants_list_modify_in_meeting_nickname: 'modify in-meeting nickname',
2191
+ fmt_chat_setting_guest_chat_scope: 'guest chat scope',
2192
+ fmt_chat_setting_guest_chat_allow_public_private: 'allow guests to send public messages and private chats with other guests',
2193
+ fmt_chat_setting_guest_chat_allow_public: 'allow guests to send public messages only',
2194
+ fmt_chat_setting_guest_chat_allow_host_only: 'guests can only send private messages to the host',
2195
+ fmt_chat_setting_guest_chat_disable: 'disable chat for all guests',
2196
+ fmt_chat_setting_audience_chat_scope: 'audience chat scope',
2197
+ fmt_chat_setting_audience_chat_allow_public: 'allow audience to send public messages only',
2198
+ fmt_chat_setting_audience_chat_allow_host_only: 'audience can only send private messages to the host',
2199
+ fmt_chat_setting_audience_chat_disable: 'disable chat for all audience',
2200
+ fmt_audio_settings_select_audio_button: 'select audio',
2201
+ fmt_audio_settings_disconnect_audio_icon: 'disconnect audio',
2202
+ fmt_audio_settings_select_audio_icon: 'select audio',
2203
+ fmt_audio_settings_connect_audio_tips: 'to hear other participants, please connect audio to join the meeting',
2204
+ fmt_audio_settings_select_phone_audio: 'use phone audio',
2205
+ fmt_audio_settings_select_phone_audio_cancel: 'cancel',
2206
+ fmt_audio_settings_select_speaker: 'speaker',
2207
+ fmt_audio_settings_select_receiver: 'receiver',
2208
+ fmt_audio_settings_select_mute: 'mute',
2209
+ fmt_audio_settings_select_cancel: 'cancel',
2210
+ fmt_bottom_bar_audience_raise_hand: 'raise hand',
2211
+ fmt_bottom_bar_audience_raise_hand_tip: 'you have raised your hand, please wait for the host to respond',
2212
+ fmt_bottom_bar_audience_lower_hand: 'lower hand',
2213
+ fmt_v_chat_words_select_copy: 'copy',
2214
+ fmt_v_chat_words_select_multi_select: 'multi-select',
2215
+ fmt_v_chat_words_select_private_chat: 'private chat',
2216
+ fmt_v_chat_words_select_allow_chatting: 'allow chatting',
2217
+ fmt_v_chat_words_select_disable_chatting: 'disable chatting',
2218
+ fmt_v_chat_words_setting_mute_chat_tip: 'You have muted the chat room',
2219
+ fmt_v_chat_words_setting_enable_chat_tip: 'You have enabled the chat room',
2220
+ fmt_v_webinar_chat_settings: 'chat settings',
2221
+ fmt_v_webinar_chat_setting_guest_chat_scope: 'guest chat scope',
2222
+ fmt_v_webinar_chat_setting_guest_chat_allow_public_private: 'allow guests to send public messages and private chats with other guests',
2223
+ fmt_v_webinar_chat_setting_guest_chat_allow_public: 'allow guests to send public messages only',
2224
+ fmt_v_webinar_chat_setting_guest_chat_allow_host_only: 'guests can only send private messages to the host',
2225
+ fmt_v_webinar_chat_setting_guest_chat_disable: 'disable chat for all guests',
2226
+ fmt_v_webinar_chat_setting_audience_chat_scope: 'audience chat scope',
2227
+ fmt_v_webinar_chat_setting_audience_chat_allow_public: 'allow audience to send public messages only',
2228
+ fmt_v_webinar_chat_setting_audience_chat_allow_host_only: 'audience can only send private messages to the host',
2229
+ fmt_v_webinar_chat_setting_audience_chat_disable: 'disable chat for all audience',
2230
+ fmt_v_webinar_chat_setting_show_message_bubbles: 'show message bubbles',
2231
+ fmt_v_app_private_chat_setting_send_to: 'send to',
2232
+ fmt_v_app_private_chat_setting_footer_allow_free: 'allow free chat',
2233
+ fmt_v_app_private_chat_setting_footer_allow_private_host: 'allow private chat with host and co-hosts only',
2234
+ fmt_v_app_private_waiting_room_subtitle: 'waiting room',
2235
+ fmt_v_app_private_chat_privately_xx: 'you can chat privately with xx',
2236
+ fmt_v_app_private_chat_prohibited_tip: 'private chat prohibited by host',
2237
+ fmt_v_app_private_retract_host_permissions: 'retract host permissions',
2238
+ fmt_v_app_private_group_chat_prohibited_tip: 'group chat prohibited by host',
2239
+ fmt_v_app_private_xx_left_meeting: 'xx has just left the meeting',
2240
+ fmt_v_app_private_connecting_meeting: 'connecting',
2241
+ fmt_v_app_private_select_another_chat_recipient_tip: 'xx may have left the meeting and cannot receive messages. please select another chat recipient',
2242
+ fmt_v_private_chat_private_chat: 'private chat',
2243
+ fmt_v_private_chat_select_host_tip: 'please select the host or co-host',
2244
+ fmt_v_private_chat_select_user_tip: 'please select the user you want to chat with',
2245
+ fmt_v_private_chat_select_again_tip: 'the host has changed the permissions, please select again',
2246
+ fmt_v_multiple_selection_private_chat: 'private chat',
2247
+ fmt_v_multiple_selection_multiple_selection: 'multiple selection',
2248
+ fmt_v_multiple_selection_copy: 'copy',
2249
+ fmt_v_multiple_selection_maximum_copy_tip: 'maximum 50 items',
2250
+ fmt_v_chat_disable_chatting_title: 'disable chatting',
2251
+ fmt_v_chat_disable_chatting_tip: 'disable "xxx"\'s chatting permission?',
2252
+ fmt_v_chat_block_sb_messages_tip: 'block all chat messages sent by "xxx"? other users will not be able to view them after the operation',
2253
+ fmt_v_chat_block_sb_messages_tip_cancel: 'cancel',
2254
+ fmt_v_chat_block_sb_messages_tip_ok: 'ok',
2255
+ fmt_v_chat_block_you_muted_tip: 'you have been muted',
2256
+ fmt_v_chat_chat_permission_restored: 'chat permission has been restored for him',
2257
+ fmt_v_app_new_private_chat_private_chat: 'private chat',
2258
+ fmt_v_app_new_private_chat_select_host_tip: 'please select the host or co-host',
2259
+ fmt_v_app_new_private_chat_select_user_tip: 'please select the user you want to chat with',
2260
+ fmt_v_app_new_private_chat_select_again_tip: 'the host has changed the permissions, please select again',
2261
+ fmt_v_app_new_private_chat_select_copy: 'copy',
2262
+ fmt_v_app_new_private_chat_select_multi_select: 'multi-select',
2263
+ fmt_v_app_new_private_chat_select_private_chat: 'private chat',
2264
+ fmt_v_private_chat_word_count_exceed_tip: 'word count exceeded. please delete some text before sending',
2265
+ fmt_v_private_chat_select_another_chat_recipient_tip: 'xx may have left the meeting and cannot receive messages. please select another chat recipient',
2266
+ fmt_v_app_multiple_selection_private_chat: 'private chat',
2267
+ fmt_v_app_multiple_selection_multiple_selection: 'multiple selection',
2268
+ fmt_v_app_multiple_selection_copy: 'copy',
2269
+ fmt_v_app_multiple_selection_copy_clipboard: 'copy to clipboard',
2270
+ fmt_v_app_multiple_selection_maximum_copy_tip: 'copy to clipboard (max 50 items)',
2271
+ fmt_v_app_multiple_selection_copied_tip: 'copied to clipboard',
2272
+ fmt_v_security_web_webinar_security_settings: 'meeting security settings',
2273
+ fmt_v_security_web_webinar_security_lock_room: 'lock the meeting room',
2274
+ fmt_v_security_web_webinar_security_watermark: 'watermark',
2275
+ fmt_v_security_web_webinar_security_single_row: 'single row',
2276
+ fmt_v_security_web_webinar_security_multiple_rows: 'multiple rows',
2277
+ fmt_v_security_web_webinar_security_allow_guests_attendees_rename: 'allow guests and attendees to rename themselves',
2278
+ fmt_v_security_web_webinar_security_allow_guests: 'allow guests',
2279
+ fmt_v_security_web_webinar_security_chat_subheading: 'chat',
2280
+ fmt_v_security_web_webinar_security_guest_chat_scope: 'guest chat scope',
2281
+ fmt_v_security_web_webinar_security_allow_public_private_chat: 'allow guests to send public messages and private chats with other guests',
2282
+ fmt_v_security_web_webinar_security_allow_public_chat: 'allow guests to send public messages only',
2283
+ fmt_v_security_web_webinar_security_private_chat_host_only: 'guests can only send private messages to the host',
2284
+ fmt_v_security_web_webinar_security_disable_chat: 'disable chat for all guests',
2285
+ fmt_v_security_web_webinar_security_screen_sharing: 'screen sharing',
2286
+ fmt_v_security_web_webinar_security_interactive_annotation: 'participant interactive annotation',
2287
+ fmt_v_security_web_webinar_security_unmute_themselves: 'unmute themselves',
2288
+ fmt_v_security_web_webinar_security_turn_on_video: 'turn on video',
2289
+ fmt_v_security_web_webinar_security_rename_themselves: 'rename themselves',
2290
+ fmt_v_security_web_webinar_security_live_transcription_on_off: 'enable and disable live transcription',
2291
+ fmt_v_security_web_webinar_security_use_subtitle: 'use subtitle function',
2292
+ fmt_v_security_web_webinar_security_change_language: 'change audio source language',
2293
+ fmt_v_security_web_webinar_security_allow_attendees: 'allow attendees',
2294
+ fmt_v_security_web_webinar_security_chat_select: 'chat',
2295
+ fmt_v_security_web_webinar_security_attendee_chat_scope: 'attendee chat scope',
2296
+ fmt_v_security_web_webinar_security_attendee_chat_public: 'public chat only',
2297
+ fmt_v_security_web_webinar_security_attendee_chat_host: 'private chat with host only',
2298
+ fmt_v_security_web_webinar_security_attendee_disable_chat: 'disable chat',
2299
+ fmt_v_security_web_webinar_security_raise_hand: 'raise hand',
2300
+ fmt_v_security_web_webinar_security_view_total_number: 'view total number of participants',
2301
+ fmt_premeeting_participant_upgraded_host_app: 'set as "host"',
2302
+ fmt_premeeting_participant_upgraded_host_choose_app: 'set "xxx" as the meeting host?',
2303
+ fmt_premeeting_participant_upgraded_host_on_app: 'set as host',
2304
+ fmt_premeeting_participant_upgraded_host_on_app_cancel: 'cancel',
2305
+ fmt_premeeting_participant_upgraded_co_host_app: 'set as "co-host"',
2306
+ fmt_premeeting_participant_upgraded_co_host_tip_app: 'set "xxx" as the meeting co-host?',
2307
+ fmt_premeeting_participant_upgraded_co_host_on_app: 'set as co-host',
2308
+ fmt_premeeting_participant_upgraded_co_host_on_app_cancel: 'cancel',
2309
+ fmt_premeeting_participant_upgraded_co_host_limit_app: 'the number of user roles has reached the limit. cannot set as co-host',
2310
+ fmt_premeeting_participant_upgraded_guest_limit_app: 'the number of guest roles has reached the limit. cannot set as guest',
2311
+ fmt_premeeting_participant_revoke_co_host_tip_app: "successfully revoked xx's co-host status",
2312
+ fmt_premeeting_participant_set_co_host_tip_app: 'successfully set "xx" as co-host',
2313
+ fmt_premeeting_participant_set_guest_tip_app: 'successfully demoted "xx" to guest',
2314
+ fmt_premeeting_participant_set_audience_tip_app: 'successfully demoted "xx" to audience',
2315
+ fmt_premeeting_participant_cannot_set_audience_tip_app: 'this role cannot be demoted to audience',
2316
+ fmt_premeeting_participant_set_co_host_tip_myself_app: 'the host has set you as co-host',
2317
+ fmt_premeeting_participant_set_guest_tip_myself_app: 'the host has demoted you to guest',
2318
+ fmt_premeeting_participant_set_audience_tip_myself_app: 'the host has demoted you to audience',
2319
+ fmt_premeeting_participant_xx_now_host_app: 'xx is now host',
2320
+ fmt_premeeting_participant_you_now_host_app: 'you have been set as host',
2321
+ fmt_premeeting_participant_xx_now_host_app_other: 'xx is now host',
2322
+ fmt_premeeting_participant_xx_now_co_host_app: 'xx is now co-host',
2323
+ fmt_premeeting_participant_now_co_host_yourself_app: 'you are now co-host',
2324
+ fmt_premeeting_participant_xx_now_guest_app: 'xx is now guest',
2325
+ fmt_premeeting_participant_set_guest_tip_u_app: 'the host has set you as a guest',
2326
+ fmt_premeeting_participant_now_guest_tip_u_app: 'you are a guest of this meeting. you can turn on your microphone and camera, share your screen, and interact with the audience through public chat and other functions',
2327
+ fmt_premeeting_participant_now_guest_tip_u_ok_app: 'ok',
2328
+ fmt_participants_button_meetingPermission: 'Meeting Permissions'
2085
2329
  };
@@ -9,7 +9,6 @@ export var zhCn = {
9
9
  fmt_participants_button_muteAll: '全员静音',
10
10
  fmt_participants_button_unmuteAll: '解除全员静音',
11
11
  fmt_participants_button_meetingManagement: '会议管理',
12
- fmt_participants_button_meetingPermission: '会议权限',
13
12
  fmt_participants_button_invite: '邀请',
14
13
  fmt_participants_member_button_mute: '静音',
15
14
  fmt_participants_member_button_unmute: '解除静音',
@@ -1075,6 +1074,10 @@ export var zhCn = {
1075
1074
  fmt_record_record_stop_confirm: '确定停止录制',
1076
1075
  fmt_record_toast_record_paused: '云录制已暂停',
1077
1076
  fmt_record_toast_record_resumed: '云录制已恢复',
1077
+ fmt_invitepage_label_by_invitation: '复制信息',
1078
+ fmt_invitepage_label_meeting_connector: '会议连接器',
1079
+ fmt_invitepage_label_invite_link: '会议链接',
1080
+ fmt_invitepage_label_meeting_details: '会议信息',
1078
1081
  fmt_pstn_label_accessmethod: '选择音频接入方式',
1079
1082
  fmt_pstn_options_PCaudioconnet: '连接到电脑音频',
1080
1083
  fmt_pstn_options_phoneaudioconnet: '连接到电话音频',
@@ -1140,6 +1143,7 @@ export var zhCn = {
1140
1143
  fmt_SIP323_copywrite_phonenumber: '手机号码(必填)',
1141
1144
  fmt_SIP323_options_detailedinfor: '复制详细会议信息',
1142
1145
  fmt_SIP323_tips_alreadycopied: '已复制在粘贴板',
1146
+ fmt_SIP_tips_enter_correct_number: '请输入正确的会议连接器号码',
1143
1147
  fmt_localrecord_labels_record: '录制',
1144
1148
  fmt_localrecord_labels_savingto: '本地录制保存在',
1145
1149
  fmt_localrecord_button_savingto: '更改',
@@ -2079,5 +2083,245 @@ export var zhCn = {
2079
2083
  fmt_echo_window_button_cancel: '取消',
2080
2084
  fmt_echo_window_button_disconnect: '断开音频',
2081
2085
  fmt_mute_toast_yr_on_mute: '您已静音,请开启麦克风',
2082
- fmt_meeting_setting_options_enable_recording: '允许使用云端录制'
2086
+ fmt_meeting_setting_options_enable_recording: '允许使用云端录制',
2087
+ fmt_premeeting_subheading_scenario: '业务场景',
2088
+ fmt_premeeting_scenario_setting_button_meeting: '视频会议',
2089
+ fmt_premeeting_scenario_setting_button_webinar: '网络研讨会',
2090
+ fmt_premeeting_setting_lock_meeting: '锁定会议',
2091
+ fmt_premeeting_role_setting_role: '角色',
2092
+ fmt_premeeting_role_setting_role_host: '主持人',
2093
+ fmt_premeeting_role_setting_role_co_host: '联席主持人',
2094
+ fmt_premeeting_role_setting_role_guest: '参会者/嘉宾',
2095
+ fmt_premeeting_role_setting_role_audience: '观众',
2096
+ fmt_premeeting_setting_allow_guests_unmute: '允许嘉宾自我解除静音',
2097
+ fmt_premeeting_setting_allow_guests_turn_on_video: '允许嘉宾开启视频',
2098
+ fmt_premeeting_setting_allow_guests_rename: '允许嘉宾改名',
2099
+ fmt_premeeting_setting_label_allow_audience_raisehands: '允许观众举手',
2100
+ fmt_premeeting_setting_allow_audience_view_participants_number: '允许观众查看参会总人数',
2101
+ fmt_premeeting_setting_allow_audience_rename: '允许观众改名',
2102
+ fmt_security_setting_label_allow_audience_raisehands: '允许观众举手',
2103
+ fmt_security_setting_label_allow_audience_viewparticipants: '允许观众查看参会总人数',
2104
+ fmt_security_setting_label_allow_audience_rename: '允许观众自己改名',
2105
+ fmt_security_setting_label_allow_audience_viewparticipants_off: '与其他xx名观众',
2106
+ fmt_security_setting_mute_guests_entry: '嘉宾入会时静音',
2107
+ fmt_security_setting_guests_video_entry_off: '嘉宾入会时关闭视频',
2108
+ fmt_security_setting_allow_guests_unmute: '允许嘉宾自我解除静音',
2109
+ fmt_security_setting_allow_guests_turn_on_video: '允许嘉宾开启视频',
2110
+ fmt_security_setting_allow_guests_share_screen_whiteboard: '允许嘉宾共享屏幕和白板',
2111
+ fmt_security_setting_allow_guests_interactive_annotations: '允许嘉宾互动批注',
2112
+ fmt_security_setting_allow_guests_rename: '允许嘉宾自我改名',
2113
+ fmt_premeeting_participant_list: '参会者',
2114
+ fmt_premeeting_participant_list_guest: '嘉宾',
2115
+ fmt_premeeting_participant_list_audience: '观众',
2116
+ fmt_premeeting_participant_list_raising: 'xx位观众正在举手',
2117
+ fmt_premeeting_participant_list_guest_demote_audience: '降级为观众',
2118
+ fmt_premeeting_participant_list_guest_revoke_cohost: '撤销联席主持人',
2119
+ fmt_premeeting_participant_list_guest_demote_tip: '已成功将xx降级为观众',
2120
+ fmt_premeeting_participant_list_guest_revoke_tip: '主持人已将您设置为观众',
2121
+ fmt_premeeting_participant_list_guest_disable_chatting_tip: '是否禁止xx聊天',
2122
+ fmt_premeeting_participant_list_guest_block_messages: '是否屏蔽xx已发送的所有聊天消息?操作后其他用户将无法查看。',
2123
+ fmt_premeeting_participant_list_guest_block_messages_tip: '您已被禁言',
2124
+ fmt_premeeting_participant_upgraded_guest_tip: '已成功将“xxx"升级为嘉宾',
2125
+ fmt_premeeting_participant_upgraded_host: '设为“主持人”',
2126
+ fmt_premeeting_participant_upgraded_host_choose: '是否将“xxx"设为会议的主持人?',
2127
+ fmt_premeeting_participant_upgraded_host_on: '设为主持',
2128
+ fmt_premeeting_participant_upgraded_host_on_cancel: '取消',
2129
+ fmt_premeeting_participant_upgraded_co_host: '设为“联席主持”',
2130
+ fmt_premeeting_participant_upgraded_co_host_tip: '是否将“xxx"设为会议的联席主持?',
2131
+ fmt_premeeting_participant_upgraded_co_host_on: '设为联席主持',
2132
+ fmt_premeeting_participant_upgraded_co_host_on_cancel: '取消',
2133
+ fmt_premeeting_participant_upgraded_co_host_limit: '用户角色已满,无法设置为联席主持人',
2134
+ fmt_premeeting_participant_set_guest: '设为嘉宾',
2135
+ fmt_premeeting_participant_upgraded_guest_limit: '用户角色已满,无法设置为嘉宾',
2136
+ fmt_premeeting_participant_set_co_host_tip: '已成功将“xx"设置为联席',
2137
+ fmt_premeeting_participant_set_guest_tip: '已成功将“xx"降级为嘉宾',
2138
+ fmt_premeeting_participant_set_audience_tip: '已成功将“xx"降级为观众',
2139
+ fmt_premeeting_participant_cannot_set_audience_tip: '无法将ta降级为观众',
2140
+ fmt_premeeting_participant_set_co_host_tip_myself: '主持人已将您设置为联席',
2141
+ fmt_premeeting_participant_set_guest_tip_myself: '主持人已将您降级为嘉宾',
2142
+ fmt_premeeting_participant_set_audience_tip_myself: '主持人已将您降级为观众',
2143
+ fmt_premeeting_participant_xx_now_host: 'xx现在成为主持人',
2144
+ fmt_premeeting_participant_xx_now_co_host: 'xx设置为联席',
2145
+ fmt_premeeting_participant_now_co_host_yourself: '您已成为联席',
2146
+ fmt_premeeting_participant_xx_now_guest: 'xx设置为嘉宾',
2147
+ fmt_premeeting_participant_now_host_tip: '"xxx"现在成为主持人',
2148
+ fmt_premeeting_participant_set_guest_tip_u: '主持人已将您设为嘉宾',
2149
+ fmt_premeeting_participant_now_guest_tip_u: '你是本次会议的嘉宾,可以开启麦克风、摄像头、使用共享屏幕分享,可以通过公共聊天等功能和观众互动。',
2150
+ fmt_premeeting_participant_now_guest_tip_u_ok: '知道了',
2151
+ fmt_premeeting_participant_now_cohost_tip_u: '你被设为联席主持人',
2152
+ fmt_premeeting_participant_now_host_tip_u: '你被设为主持人',
2153
+ fmt_premeeting_participant_revoke_host_tip_u: '你的主持人身份被收回',
2154
+ fmt_premeeting_participant_revoke_cohost_tip_u: '你的联席主持身份被撤销',
2155
+ fmt_premeeting_participant_now_audience_tip_u: '主持人已将你设置为观众',
2156
+ fmt_premeeting_participant_list_revoke_host_role: '收回主持人',
2157
+ fmt_premeeting_participant_list_modify_nickname: '修改会中昵称',
2158
+ fmt_premeeting_participant_remove_title: '移出会议',
2159
+ fmt_premeeting_participant_confirm_removal_tip: '确定将“xxx"移出会议?',
2160
+ fmt_premeeting_participant_not_rejoin_on: '不允许用户再次加入该会议',
2161
+ fmt_premeeting_participant_remove_button: '移出会议',
2162
+ fmt_premeeting_participant_creator_cannot_removed: '不可以移出会议创建者',
2163
+ fmt_premeeting_participant_prohibited_join_tip: '本场会议禁止你入会',
2164
+ fmt_premeeting_participant_disable_chatting_title: '禁止聊天',
2165
+ fmt_premeeting_participant_disable_chatting_tip: '是否禁止“xxx"聊天',
2166
+ fmt_premeeting_block_sb_messages_tip: '是否屏蔽"xxx"已发送的所有聊天消息?操作后其他用户将无法查看。',
2167
+ fmt_premeeting_participant_chat_permission_restored: '已对他解除禁言',
2168
+ fmt_security_setting_lower_hand: '手放下',
2169
+ fmt_security_setting_set_spotlight_video: '设为焦点视频',
2170
+ fmt_security_setting_cancel_spotlight_follow: '取消焦点跟随',
2171
+ fmt_security_setting_allow_local_recording: '允许本地录制视频',
2172
+ fmt_security_setting_move_waiting_room: '移到等候室',
2173
+ fmt_security_setting_pricate_chat_host: '私聊',
2174
+ fmt_security_setting_pin: '固定视窗到第一位',
2175
+ fmt_participants_setting_raise_hand: '举手',
2176
+ fmt_participants_setting_raise_hand_tips: '您已举手,请等待主持人操作',
2177
+ fmt_participants_setting_lower_hand: '放下手',
2178
+ fmt_participants_setting_lower_hand_tips: '您已将手放下',
2179
+ fmt_participants_setting_raise_hand_counts_tips: 'xx和其它x人正在举手',
2180
+ fmt_participants_setting_raise_hand_disabled_red_tips: '主持人已关闭举手功能',
2181
+ fmt_participants_setting_raise_hand_disabled_tips: '主持人已关闭举手功能',
2182
+ fmt_participants_setting_hands_lowered_tips: '您的举手被放下',
2183
+ fmt_participants_setting_raise_hand_number_limit_tips: '举手已达上限,请稍后再试',
2184
+ fmt_participants_setting_danmaku_raise_hand_counts_tips: 'xx和其它x人正在举手',
2185
+ fmt_participants_list_raise_hand_counts_tips: 'x人正在举手',
2186
+ fmt_participants_list_privilege_allow_chatting: '允许聊天',
2187
+ fmt_participants_list_privilege_private_chat: '私聊',
2188
+ fmt_participants_list_modify_in_meeting_nickname: '修改会中昵称',
2189
+ fmt_chat_setting_guest_chat_scope: '嘉宾聊天范围',
2190
+ fmt_chat_setting_guest_chat_allow_public_private: '允许公聊和嘉宾之间私聊',
2191
+ fmt_chat_setting_guest_chat_allow_public: '允许公开聊天',
2192
+ fmt_chat_setting_guest_chat_allow_host_only: '仅允许私聊主持人',
2193
+ fmt_chat_setting_guest_chat_disable: '禁止聊天',
2194
+ fmt_chat_setting_audience_chat_scope: '观众聊天范围',
2195
+ fmt_chat_setting_audience_chat_allow_public: '允许公开聊天',
2196
+ fmt_chat_setting_audience_chat_allow_host_only: '仅允许私聊主持人',
2197
+ fmt_chat_setting_audience_chat_disable: '禁止聊天',
2198
+ fmt_audio_settings_select_audio_button: '选择音频',
2199
+ fmt_audio_settings_disconnect_audio_icon: '断开音频',
2200
+ fmt_audio_settings_select_audio_icon: '选择音频',
2201
+ fmt_audio_settings_connect_audio_tips: '为了听见其他用户的声音,请连接音频加入会议',
2202
+ fmt_audio_settings_select_phone_audio: '使用手机音频',
2203
+ fmt_audio_settings_select_phone_audio_cancel: '取消',
2204
+ fmt_audio_settings_select_speaker: '扬声器',
2205
+ fmt_audio_settings_select_receiver: '听筒',
2206
+ fmt_audio_settings_select_mute: '静音',
2207
+ fmt_audio_settings_select_cancel: '取消',
2208
+ fmt_bottom_bar_audience_raise_hand: '举手',
2209
+ fmt_bottom_bar_audience_raise_hand_tip: '您已举手,请等待主持人操作',
2210
+ fmt_bottom_bar_audience_lower_hand: '手放下',
2211
+ fmt_v_chat_words_select_copy: '复制',
2212
+ fmt_v_chat_words_select_multi_select: '多选',
2213
+ fmt_v_chat_words_select_private_chat: '私聊',
2214
+ fmt_v_chat_words_select_allow_chatting: '允许聊天',
2215
+ fmt_v_chat_words_select_disable_chatting: '禁止聊天',
2216
+ fmt_v_chat_words_setting_mute_chat_tip: '你开启了聊天室禁言',
2217
+ fmt_v_chat_words_setting_enable_chat_tip: '你启用了聊天室',
2218
+ fmt_v_webinar_chat_settings: '聊天设置',
2219
+ fmt_v_webinar_chat_setting_guest_chat_scope: '嘉宾聊天范围',
2220
+ fmt_v_webinar_chat_setting_guest_chat_allow_public_private: '允许公聊和嘉宾之间私聊',
2221
+ fmt_v_webinar_chat_setting_guest_chat_allow_public: '允许公开聊天',
2222
+ fmt_v_webinar_chat_setting_guest_chat_allow_host_only: '仅允许私聊主持人',
2223
+ fmt_v_webinar_chat_setting_guest_chat_disable: '禁止聊天',
2224
+ fmt_v_webinar_chat_setting_audience_chat_scope: '观众聊天范围',
2225
+ fmt_v_webinar_chat_setting_audience_chat_allow_public: '允许公开聊天',
2226
+ fmt_v_webinar_chat_setting_audience_chat_allow_host_only: '仅允许私聊主持人',
2227
+ fmt_v_webinar_chat_setting_audience_chat_disable: '禁止聊天',
2228
+ fmt_v_webinar_chat_setting_show_message_bubbles: '展示聊天气泡',
2229
+ fmt_v_app_private_chat_setting_send_to: '发送至',
2230
+ fmt_v_app_private_chat_setting_footer_allow_free: '允许自由聊天',
2231
+ fmt_v_app_private_chat_setting_footer_allow_private_host: '仅允许私聊主持人和联席主持人',
2232
+ fmt_v_app_private_waiting_room_subtitle: '等候室',
2233
+ fmt_v_app_private_chat_privately_xx: '你可以和xx私聊',
2234
+ fmt_v_app_private_chat_prohibited_tip: '主持人禁止私聊',
2235
+ fmt_v_app_private_retract_host_permissions: '收起主持人权限',
2236
+ fmt_v_app_private_group_chat_prohibited_tip: '主持人禁止群聊',
2237
+ fmt_v_app_private_xx_left_meeting: 'xx刚离开会议',
2238
+ fmt_v_app_private_connecting_meeting: '连接中',
2239
+ fmt_v_app_private_select_another_chat_recipient_tip: 'xx可能已离会无法接受消息,请重新选择聊天对象',
2240
+ fmt_v_private_chat_private_chat: '私聊',
2241
+ fmt_v_private_chat_select_host_tip: '请选择主持人或联席主持',
2242
+ fmt_v_private_chat_select_user_tip: '请选择要聊天的用户',
2243
+ fmt_v_private_chat_select_again_tip: '主持人已经更改权限,请重新选择',
2244
+ fmt_v_multiple_selection_private_chat: '私聊',
2245
+ fmt_v_multiple_selection_multiple_selection: '多选',
2246
+ fmt_v_multiple_selection_copy: '复制',
2247
+ fmt_v_multiple_selection_maximum_copy_tip: '上限50条',
2248
+ fmt_v_chat_disable_chatting_title: '禁止聊天',
2249
+ fmt_v_chat_disable_chatting_tip: '是否禁止“xxx"聊天',
2250
+ fmt_v_chat_block_sb_messages_tip: '是否屏蔽"xxx"已发送的所有聊天消息?操作后其他用户将无法查看。',
2251
+ fmt_v_chat_block_sb_messages_tip_cancel: '取消',
2252
+ fmt_v_chat_block_sb_messages_tip_ok: '确定',
2253
+ fmt_v_chat_block_you_muted_tip: '你已被禁言',
2254
+ fmt_v_chat_chat_permission_restored: '已对他解除禁言',
2255
+ fmt_v_app_new_private_chat_private_chat: '私聊',
2256
+ fmt_v_app_new_private_chat_select_host_tip: '请选择主持人或联席主持',
2257
+ fmt_v_app_new_private_chat_select_user_tip: '请选择要聊天的用户',
2258
+ fmt_v_app_new_private_chat_select_again_tip: '主持人已经更改权限,请重新选择',
2259
+ fmt_v_app_new_private_chat_select_copy: '复制',
2260
+ fmt_v_app_new_private_chat_select_multi_select: '多选',
2261
+ fmt_v_app_new_private_chat_select_private_chat: '私聊',
2262
+ fmt_v_private_chat_word_count_exceed_tip: '超出字数限制,请先删除再发送',
2263
+ fmt_v_private_chat_select_another_chat_recipient_tip: 'xx可能已离会无法接受消息,请重新选择聊天对象',
2264
+ fmt_v_app_multiple_selection_private_chat: '私聊',
2265
+ fmt_v_app_multiple_selection_multiple_selection: '多选',
2266
+ fmt_v_app_multiple_selection_copy: '复制',
2267
+ fmt_v_app_multiple_selection_copy_clipboard: '复制到剪贴板',
2268
+ fmt_v_app_multiple_selection_maximum_copy_tip: '复制到剪贴板(上限50条)',
2269
+ fmt_v_app_multiple_selection_copied_tip: '已复制到剪贴板',
2270
+ fmt_v_security_web_webinar_security_settings: '会议安全设置',
2271
+ fmt_v_security_web_webinar_security_lock_room: '锁定会议室',
2272
+ fmt_v_security_web_webinar_security_watermark: '水印',
2273
+ fmt_v_security_web_webinar_security_single_row: '单行',
2274
+ fmt_v_security_web_webinar_security_multiple_rows: '多行',
2275
+ fmt_v_security_web_webinar_security_allow_guests_attendees_rename: '允许嘉宾和观众改名',
2276
+ fmt_v_security_web_webinar_security_allow_guests: '允许嘉宾',
2277
+ fmt_v_security_web_webinar_security_chat_subheading: '聊天',
2278
+ fmt_v_security_web_webinar_security_guest_chat_scope: '嘉宾聊天范围',
2279
+ fmt_v_security_web_webinar_security_allow_public_private_chat: '允许公聊和嘉宾之间私聊',
2280
+ fmt_v_security_web_webinar_security_allow_public_chat: '允许公开聊天',
2281
+ fmt_v_security_web_webinar_security_private_chat_host_only: '仅私聊主持人',
2282
+ fmt_v_security_web_webinar_security_disable_chat: '禁止聊天',
2283
+ fmt_v_security_web_webinar_security_screen_sharing: '共享屏幕',
2284
+ fmt_v_security_web_webinar_security_interactive_annotation: '成员互动标注',
2285
+ fmt_v_security_web_webinar_security_unmute_themselves: '自我解除静音',
2286
+ fmt_v_security_web_webinar_security_turn_on_video: '开启视频',
2287
+ fmt_v_security_web_webinar_security_rename_themselves: '自己改名',
2288
+ fmt_v_security_web_webinar_security_live_transcription_on_off: '开启和关闭实时转写',
2289
+ fmt_v_security_web_webinar_security_use_subtitle: '使用字幕功能',
2290
+ fmt_v_security_web_webinar_security_change_language: '修改声源语言',
2291
+ fmt_v_security_web_webinar_security_allow_attendees: '允许观众',
2292
+ fmt_v_security_web_webinar_security_chat_select: '聊天',
2293
+ fmt_v_security_web_webinar_security_attendee_chat_scope: '观众聊天范围',
2294
+ fmt_v_security_web_webinar_security_attendee_chat_public: '仅公开聊天',
2295
+ fmt_v_security_web_webinar_security_attendee_chat_host: '仅私聊主持人',
2296
+ fmt_v_security_web_webinar_security_attendee_disable_chat: '禁止聊天',
2297
+ fmt_v_security_web_webinar_security_raise_hand: '举手',
2298
+ fmt_v_security_web_webinar_security_view_total_number: '查看参会总人数',
2299
+ fmt_premeeting_participant_upgraded_host_app: '设为“主持人”',
2300
+ fmt_premeeting_participant_upgraded_host_choose_app: '是否将“xxx"设为会议的主持人?',
2301
+ fmt_premeeting_participant_upgraded_host_on_app: '设为主持',
2302
+ fmt_premeeting_participant_upgraded_host_on_app_cancel: '取消',
2303
+ fmt_premeeting_participant_upgraded_co_host_app: '设为“联席主持”',
2304
+ fmt_premeeting_participant_upgraded_co_host_tip_app: '是否将“xxx"设为会议的联席主持?',
2305
+ fmt_premeeting_participant_upgraded_co_host_on_app: '设为联席主持',
2306
+ fmt_premeeting_participant_upgraded_co_host_on_app_cancel: '取消',
2307
+ fmt_premeeting_participant_upgraded_co_host_limit_app: '用户角色已满,无法设置为联席主持人',
2308
+ fmt_premeeting_participant_upgraded_guest_limit_app: '用户角色已满,无法设置为嘉宾',
2309
+ fmt_premeeting_participant_revoke_co_host_tip_app: '已撤销xx的联席主持人身份',
2310
+ fmt_premeeting_participant_set_co_host_tip_app: '已成功将“xx"设置为联席',
2311
+ fmt_premeeting_participant_set_guest_tip_app: '已成功将“xx"降级为嘉宾',
2312
+ fmt_premeeting_participant_set_audience_tip_app: '已成功将“xx"降级为观众',
2313
+ fmt_premeeting_participant_cannot_set_audience_tip_app: '无法将ta降级为观众',
2314
+ fmt_premeeting_participant_set_co_host_tip_myself_app: '主持人已将您设置为联席',
2315
+ fmt_premeeting_participant_set_guest_tip_myself_app: '主持人已将您降级为嘉宾',
2316
+ fmt_premeeting_participant_set_audience_tip_myself_app: '主持人已将您降级为观众',
2317
+ fmt_premeeting_participant_xx_now_host_app: 'xx现在成为主持人',
2318
+ fmt_premeeting_participant_you_now_host_app: '您被设置为主持人',
2319
+ fmt_premeeting_participant_xx_now_host_app_other: 'xx现在成为主持人',
2320
+ fmt_premeeting_participant_xx_now_co_host_app: 'xx设置为联席',
2321
+ fmt_premeeting_participant_now_co_host_yourself_app: '您已成为联席',
2322
+ fmt_premeeting_participant_xx_now_guest_app: 'xx设置为嘉宾',
2323
+ fmt_premeeting_participant_set_guest_tip_u_app: '主持人已将您设为嘉宾',
2324
+ fmt_premeeting_participant_now_guest_tip_u_app: '你是本次会议的嘉宾,可以开启麦克风、摄像头、使用共享屏幕分享,可以通过公共聊天等功能和观众互动。',
2325
+ fmt_premeeting_participant_now_guest_tip_u_ok_app: '知道了',
2326
+ fmt_participants_button_meetingPermission: '会议权限'
2083
2327
  };
@@ -0,0 +1,8 @@
1
+ import "core-js/modules/es.number.constructor.js";
2
+ import "core-js/modules/es.number.is-nan.js";
3
+ export var parseMacOSMajorVersion = function parseMacOSMajorVersion(systemVersion) {
4
+ if (!systemVersion) return null;
5
+ var major = Number(String(systemVersion).split('.')[0]);
6
+ if (Number.isNaN(major)) return null;
7
+ return major >= 20 ? major - 9 : major;
8
+ };