fcr-ui-scene 3.9.0 → 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 (199) hide show
  1. package/lib/creator/provider-initializer.browser.js +2 -1
  2. package/lib/creator/provider-initializer.electron.js +11 -4
  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/modules/action-bar/main-scene/store.base.d.ts +1 -0
  7. package/lib/modules/action-bar/main-scene/store.base.js +5 -0
  8. package/lib/modules/audio-stream/index.d.ts +2 -0
  9. package/lib/modules/audio-stream/index.js +33 -1
  10. package/lib/modules/chat/index.js +1 -1
  11. package/lib/modules/chat/store.d.ts +1 -1
  12. package/lib/modules/chat/store.js +4 -2
  13. package/lib/modules/components/device-control/store.base.d.ts +1 -0
  14. package/lib/modules/components/device-control/store.base.js +22 -3
  15. package/lib/modules/components/leave-meeting/index.js +3 -2
  16. package/lib/modules/components/leave-meeting/main-scene/store.d.ts +1 -0
  17. package/lib/modules/components/leave-meeting/main-scene/store.js +6 -1
  18. package/lib/modules/components/leave-meeting/store.base.d.ts +1 -0
  19. package/lib/modules/components/leave-meeting/store.base.js +1 -1
  20. package/lib/modules/components/leave-meeting/waiting-scene/store.d.ts +1 -0
  21. package/lib/modules/components/leave-meeting/waiting-scene/store.js +6 -1
  22. package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +7 -10
  23. package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +2 -2
  24. package/lib/modules/components/member-window/components/member-actions/index.js +0 -7
  25. package/lib/modules/components/member-window/components/member-actions/store.js +1 -1
  26. package/lib/modules/components/member-window/index.js +1 -1
  27. package/lib/modules/components/tab-frame/index.css +12 -1
  28. package/lib/modules/components/tab-frame/index.js +4 -1
  29. package/lib/modules/control-bar/components/share-state-nav/index.js +1 -3
  30. package/lib/modules/control-bar/mouse-event-bridge.d.ts +23 -0
  31. package/lib/modules/control-bar/mouse-event-bridge.js +87 -0
  32. package/lib/modules/control-bar/store.d.ts +1 -1
  33. package/lib/modules/control-bar/store.js +10 -27
  34. package/lib/modules/control-bar/type.d.ts +0 -1
  35. package/lib/modules/control-bar/view.js +9 -16
  36. package/lib/modules/dialog/dialogs/connection-gateway/tabs.js +3 -2
  37. package/lib/modules/dialog/dialogs/invite/index.js +6 -24
  38. package/lib/modules/invite/components/copy-info.css +72 -0
  39. package/lib/modules/invite/components/copy-info.d.ts +3 -0
  40. package/lib/modules/invite/components/copy-info.js +144 -0
  41. package/lib/modules/invite/components/pstn-invite.js +3 -15
  42. package/lib/modules/invite/components/voip-invite.js +10 -1
  43. package/lib/modules/invite/enums.d.ts +3 -1
  44. package/lib/modules/invite/enums.js +2 -0
  45. package/lib/modules/invite/store.d.ts +4 -1
  46. package/lib/modules/invite/store.js +37 -13
  47. package/lib/modules/invite/view.js +41 -20
  48. package/lib/modules/layout/store.base.d.ts +2 -1
  49. package/lib/modules/layout/store.base.js +20 -23
  50. package/lib/modules/participant/components/confirm-input/index.css +67 -1
  51. package/lib/modules/participant/components/confirm-input/index.js +16 -13
  52. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +4 -0
  53. package/lib/modules/participant/store.base.d.ts +1 -0
  54. package/lib/modules/participant/store.base.js +34 -7
  55. package/lib/modules/pc-audio-connect/main-scene/store.d.ts +2 -0
  56. package/lib/modules/pc-audio-connect/main-scene/store.js +12 -2
  57. package/lib/modules/pc-audio-connect/view.js +4 -2
  58. package/lib/modules/phone-audio-connect/store.d.ts +6 -4
  59. package/lib/modules/phone-audio-connect/store.js +12 -1
  60. package/lib/modules/phone-audio-connect/view.js +6 -4
  61. package/lib/modules/secondary-window/index.js +2 -2
  62. package/lib/modules/secondary-window/store.d.ts +3 -0
  63. package/lib/modules/secondary-window/store.js +16 -1
  64. package/lib/modules/secondary-window/view.js +96 -72
  65. package/lib/modules/toast-manager/type.d.ts +2 -1
  66. package/lib/modules/toast-manager/type.js +4 -1
  67. package/lib/plugins/module-dev-plugin.js +4 -4
  68. package/lib/providers/ability-provider.d.ts +15 -0
  69. package/lib/providers/ability-provider.js +13 -1
  70. package/lib/providers/mouse-detect/provider.d.ts +2 -0
  71. package/lib/providers/mouse-detect/provider.empty.d.ts +14 -0
  72. package/lib/providers/mouse-detect/provider.empty.js +47 -0
  73. package/lib/providers/mouse-detect/provider.js +13 -4
  74. package/lib/providers/mouse-detect/type.d.ts +2 -0
  75. package/lib/providers/phone-audio-provider.d.ts +31 -5
  76. package/lib/providers/phone-audio-provider.js +83 -22
  77. package/lib/runtime.d.ts +1 -0
  78. package/lib/scenes/main-scene.js +2 -1
  79. package/lib/shared-data/chat-data.d.ts +19 -0
  80. package/lib/shared-data/chat-data.js +54 -7
  81. package/lib/shared-data/member-data.d.ts +9 -1
  82. package/lib/shared-data/member-data.js +46 -17
  83. package/lib/shared-data/video-window.js +8 -4
  84. package/lib/translations/enUS.d.ts +245 -1
  85. package/lib/translations/enUS.js +247 -3
  86. package/lib/translations/zhCN.d.ts +245 -1
  87. package/lib/translations/zhCN.js +246 -2
  88. package/lib/utilities/os.d.ts +1 -0
  89. package/lib/utilities/os.js +15 -0
  90. package/lib/utilities/renderer.d.ts +1 -0
  91. package/lib/utilities/renderer.js +7 -1
  92. package/lib-es/creator/provider-initializer.browser.js +2 -1
  93. package/lib-es/creator/provider-initializer.electron.js +9 -2
  94. package/lib-es/electron/injections.js +3 -0
  95. package/lib-es/electron/preload.js +2 -1
  96. package/lib-es/modules/action-bar/main-scene/store.base.js +5 -0
  97. package/lib-es/modules/audio-stream/index.js +33 -1
  98. package/lib-es/modules/chat/index.js +1 -1
  99. package/lib-es/modules/chat/store.js +4 -2
  100. package/lib-es/modules/components/device-control/store.base.js +22 -3
  101. package/lib-es/modules/components/leave-meeting/index.js +3 -2
  102. package/lib-es/modules/components/leave-meeting/main-scene/store.js +6 -1
  103. package/lib-es/modules/components/leave-meeting/store.base.js +1 -1
  104. package/lib-es/modules/components/leave-meeting/waiting-scene/store.js +6 -1
  105. package/lib-es/modules/components/member-window/components/member-actions/components/icon-status.js +7 -10
  106. package/lib-es/modules/components/member-window/components/member-actions/components/more-actions.js +2 -2
  107. package/lib-es/modules/components/member-window/components/member-actions/index.js +0 -7
  108. package/lib-es/modules/components/member-window/components/member-actions/store.js +1 -1
  109. package/lib-es/modules/components/member-window/index.js +1 -1
  110. package/lib-es/modules/components/tab-frame/index.css +12 -1
  111. package/lib-es/modules/components/tab-frame/index.js +4 -1
  112. package/lib-es/modules/control-bar/components/share-state-nav/index.js +1 -3
  113. package/lib-es/modules/control-bar/mouse-event-bridge.js +79 -0
  114. package/lib-es/modules/control-bar/store.js +11 -28
  115. package/lib-es/modules/control-bar/view.js +9 -16
  116. package/lib-es/modules/dialog/dialogs/connection-gateway/tabs.js +3 -2
  117. package/lib-es/modules/dialog/dialogs/invite/index.js +6 -24
  118. package/lib-es/modules/invite/components/copy-info.css +72 -0
  119. package/lib-es/modules/invite/components/copy-info.js +137 -0
  120. package/lib-es/modules/invite/components/pstn-invite.js +3 -15
  121. package/lib-es/modules/invite/components/voip-invite.js +10 -1
  122. package/lib-es/modules/invite/enums.js +2 -0
  123. package/lib-es/modules/invite/store.js +38 -14
  124. package/lib-es/modules/invite/view.js +43 -22
  125. package/lib-es/modules/layout/store.base.js +20 -23
  126. package/lib-es/modules/participant/components/confirm-input/index.css +67 -1
  127. package/lib-es/modules/participant/components/confirm-input/index.js +16 -13
  128. package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/index.css +4 -0
  129. package/lib-es/modules/participant/store.base.js +34 -7
  130. package/lib-es/modules/pc-audio-connect/main-scene/store.js +12 -2
  131. package/lib-es/modules/pc-audio-connect/view.js +4 -2
  132. package/lib-es/modules/phone-audio-connect/store.js +12 -1
  133. package/lib-es/modules/phone-audio-connect/view.js +6 -4
  134. package/lib-es/modules/secondary-window/index.js +2 -2
  135. package/lib-es/modules/secondary-window/store.js +16 -1
  136. package/lib-es/modules/secondary-window/view.js +97 -73
  137. package/lib-es/modules/toast-manager/type.js +4 -1
  138. package/lib-es/plugins/module-dev-plugin.js +4 -4
  139. package/lib-es/providers/ability-provider.js +13 -1
  140. package/lib-es/providers/mouse-detect/provider.empty.js +39 -0
  141. package/lib-es/providers/mouse-detect/provider.js +13 -4
  142. package/lib-es/providers/phone-audio-provider.js +109 -48
  143. package/lib-es/scenes/main-scene.js +3 -2
  144. package/lib-es/shared-data/chat-data.js +55 -8
  145. package/lib-es/shared-data/member-data.js +46 -17
  146. package/lib-es/shared-data/video-window.js +8 -4
  147. package/lib-es/translations/enUS.js +247 -3
  148. package/lib-es/translations/zhCN.js +246 -2
  149. package/lib-es/utilities/os.js +8 -0
  150. package/lib-es/utilities/renderer.js +7 -1
  151. package/lib-es/utilities/shared-storage.js +2 -2
  152. package/package.json +6 -6
  153. package/lib/modules/connection-gateway/components/computer/index.css +0 -12
  154. package/lib/modules/connection-gateway/components/computer/index.d.ts +0 -3
  155. package/lib/modules/connection-gateway/components/computer/index.js +0 -66
  156. package/lib/modules/connection-gateway/components/phone/components/callinfo/index.css +0 -36
  157. package/lib/modules/connection-gateway/components/phone/components/callinfo/index.d.ts +0 -10
  158. package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +0 -78
  159. package/lib/modules/connection-gateway/components/phone/components/calling/index.css +0 -72
  160. package/lib/modules/connection-gateway/components/phone/components/calling/index.d.ts +0 -7
  161. package/lib/modules/connection-gateway/components/phone/components/calling/index.js +0 -58
  162. package/lib/modules/connection-gateway/components/phone/components/remeber/index.css +0 -10
  163. package/lib/modules/connection-gateway/components/phone/components/remeber/index.d.ts +0 -5
  164. package/lib/modules/connection-gateway/components/phone/components/remeber/index.js +0 -24
  165. package/lib/modules/connection-gateway/components/phone/components/useing/index.css +0 -46
  166. package/lib/modules/connection-gateway/components/phone/components/useing/index.d.ts +0 -3
  167. package/lib/modules/connection-gateway/components/phone/components/useing/index.js +0 -36
  168. package/lib/modules/connection-gateway/components/phone/index.css +0 -49
  169. package/lib/modules/connection-gateway/components/phone/index.d.ts +0 -3
  170. package/lib/modules/connection-gateway/components/phone/index.js +0 -185
  171. package/lib/modules/connection-gateway/enums.d.ts +0 -4
  172. package/lib/modules/connection-gateway/enums.js +0 -12
  173. package/lib/modules/connection-gateway/index.css +0 -6
  174. package/lib/modules/connection-gateway/index.d.ts +0 -10
  175. package/lib/modules/connection-gateway/index.js +0 -78
  176. package/lib/modules/connection-gateway/store.d.ts +0 -68
  177. package/lib/modules/connection-gateway/store.js +0 -713
  178. package/lib/modules/connection-gateway/types.d.ts +0 -8
  179. package/lib/modules/connection-gateway/types.js +0 -6
  180. package/lib/modules/connection-gateway/view.d.ts +0 -1
  181. package/lib/modules/connection-gateway/view.js +0 -39
  182. package/lib-es/modules/connection-gateway/components/computer/index.css +0 -12
  183. package/lib-es/modules/connection-gateway/components/computer/index.js +0 -59
  184. package/lib-es/modules/connection-gateway/components/phone/components/callinfo/index.css +0 -36
  185. package/lib-es/modules/connection-gateway/components/phone/components/callinfo/index.js +0 -71
  186. package/lib-es/modules/connection-gateway/components/phone/components/calling/index.css +0 -72
  187. package/lib-es/modules/connection-gateway/components/phone/components/calling/index.js +0 -51
  188. package/lib-es/modules/connection-gateway/components/phone/components/remeber/index.css +0 -10
  189. package/lib-es/modules/connection-gateway/components/phone/components/remeber/index.js +0 -17
  190. package/lib-es/modules/connection-gateway/components/phone/components/useing/index.css +0 -46
  191. package/lib-es/modules/connection-gateway/components/phone/components/useing/index.js +0 -29
  192. package/lib-es/modules/connection-gateway/components/phone/index.css +0 -49
  193. package/lib-es/modules/connection-gateway/components/phone/index.js +0 -177
  194. package/lib-es/modules/connection-gateway/enums.js +0 -5
  195. package/lib-es/modules/connection-gateway/index.css +0 -6
  196. package/lib-es/modules/connection-gateway/index.js +0 -60
  197. package/lib-es/modules/connection-gateway/store.js +0 -707
  198. package/lib-es/modules/connection-gateway/types.js +0 -1
  199. package/lib-es/modules/connection-gateway/view.js +0 -31
@@ -38,7 +38,7 @@ import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
38
38
  import _createClass from "@babel/runtime/helpers/createClass";
39
39
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
40
40
  var _FcrUISharedMemberDataSourceImpl;
41
- var _initProto, _init__isLocalUserInPstn, _init__interpreterInputLanguageList, _init__localUser, _init_totalUserCount, _init_shareScreenVideoSize, _updateMemberListWithBoardStateDecs, _setIsLocalUserInPstnDecs, _handleAllUserCountUpdatedDecs, _handleUserInfoUpdatedDecs, _syncParticipantsDecs, _handleRemoteUserJoinedDecs, _handleRemoteUserLeftDecs, _handleStreamsAddedDecs, _debouncedHandleStreamsAddedDecs, _handleStreamsUpdatedDecs, _debouncedHandleStreamsUpdatedDecs, _handleStreamsRemovedDecs, _debouncedHandleStreamsRemovedDecs, _ref;
41
+ var _initProto, _init__isLocalUserInPstn, _init__isLocalUserInVolte, _init__interpreterInputLanguageList, _init__localUser, _init_totalUserCount, _init_shareScreenVideoSize, _updateMemberListWithBoardStateDecs, _setIsLocalUserInPstnDecs, _setIsLocalUserInVolteDecs, _handleAllUserCountUpdatedDecs, _handleUserInfoUpdatedDecs, _syncParticipantsDecs, _handleRemoteUserJoinedDecs, _handleRemoteUserLeftDecs, _handleStreamsAddedDecs, _debouncedHandleStreamsAddedDecs, _handleStreamsUpdatedDecs, _debouncedHandleStreamsUpdatedDecs, _handleStreamsRemovedDecs, _debouncedHandleStreamsRemovedDecs, _ref;
42
42
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
43
43
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
44
44
  import "core-js/modules/es.array.filter.js";
@@ -108,7 +108,8 @@ var _B = /*#__PURE__*/new WeakMap();
108
108
  var _C = /*#__PURE__*/new WeakMap();
109
109
  var _D = /*#__PURE__*/new WeakMap();
110
110
  var _E = /*#__PURE__*/new WeakMap();
111
- _ref = (_updateMemberListWithBoardStateDecs = [action, action.bound], _setIsLocalUserInPstnDecs = [action, action.bound], _handleAllUserCountUpdatedDecs = [action, action.bound], _handleUserInfoUpdatedDecs = [action, action.bound], _syncParticipantsDecs = debounced(800), _handleRemoteUserJoinedDecs = [action, action.bound], _handleRemoteUserLeftDecs = [action, action.bound], _handleStreamsAddedDecs = [action, action.bound], _debouncedHandleStreamsAddedDecs = debounced(50), _handleStreamsUpdatedDecs = [action, action.bound], _debouncedHandleStreamsUpdatedDecs = debounced(50), _handleStreamsRemovedDecs = [action, action.bound], _debouncedHandleStreamsRemovedDecs = debounced(50), "logger");
111
+ var _F = /*#__PURE__*/new WeakMap();
112
+ _ref = (_updateMemberListWithBoardStateDecs = [action, action.bound], _setIsLocalUserInPstnDecs = [action, action.bound], _setIsLocalUserInVolteDecs = [action, action.bound], _handleAllUserCountUpdatedDecs = [action, action.bound], _handleUserInfoUpdatedDecs = [action, action.bound], _syncParticipantsDecs = debounced(800), _handleRemoteUserJoinedDecs = [action, action.bound], _handleRemoteUserLeftDecs = [action, action.bound], _handleStreamsAddedDecs = [action, action.bound], _debouncedHandleStreamsAddedDecs = debounced(50), _handleStreamsUpdatedDecs = [action, action.bound], _debouncedHandleStreamsUpdatedDecs = debounced(50), _handleStreamsRemovedDecs = [action, action.bound], _debouncedHandleStreamsRemovedDecs = debounced(50), "logger");
112
113
  export var FcrUISharedMemberDataSourceImpl = /*#__PURE__*/function () {
113
114
  function FcrUISharedMemberDataSourceImpl(_mainRoomUserControl, _streamControl, _sharedScreenShareSharedDataSource, _eventProvider, _whiteBoardControl) {
114
115
  var _this = this;
@@ -119,8 +120,9 @@ export var FcrUISharedMemberDataSourceImpl = /*#__PURE__*/function () {
119
120
  _defineProperty(this, "_dataSource", new FcrUIMemberListDataSourceImpl());
120
121
  _defineProperty(this, "_disposers", []);
121
122
  _classPrivateFieldInitSpec(this, _A, _init__isLocalUserInPstn(this, false));
122
- _classPrivateFieldInitSpec(this, _B, _init__interpreterInputLanguageList(this, []));
123
- _classPrivateFieldInitSpec(this, _C, _init__localUser(this));
123
+ _classPrivateFieldInitSpec(this, _B, _init__isLocalUserInVolte(this, false));
124
+ _classPrivateFieldInitSpec(this, _C, _init__interpreterInputLanguageList(this, []));
125
+ _classPrivateFieldInitSpec(this, _D, _init__localUser(this));
124
126
  _defineProperty(this, "_userObserver", {
125
127
  onRemoteUsersJoined: this._handleRemoteUserJoined,
126
128
  onRemoteUsersLeft: this._handleRemoteUserLeft,
@@ -135,8 +137,8 @@ export var FcrUISharedMemberDataSourceImpl = /*#__PURE__*/function () {
135
137
  _defineProperty(this, "_eventProviderObserver", {
136
138
  onEvent: this._handleOnEvent
137
139
  });
138
- _classPrivateFieldInitSpec(this, _D, _init_totalUserCount(this, 1));
139
- _classPrivateFieldInitSpec(this, _E, _init_shareScreenVideoSize(this, null));
140
+ _classPrivateFieldInitSpec(this, _E, _init_totalUserCount(this, 1));
141
+ _classPrivateFieldInitSpec(this, _F, _init_shareScreenVideoSize(this, null));
140
142
  this._mainRoomUserControl = _mainRoomUserControl;
141
143
  this._streamControl = _streamControl;
142
144
  this._sharedScreenShareSharedDataSource = _sharedScreenShareSharedDataSource;
@@ -165,7 +167,7 @@ export var FcrUISharedMemberDataSourceImpl = /*#__PURE__*/function () {
165
167
  _classPrivateFieldSet(_A, this, v);
166
168
  }
167
169
  }, {
168
- key: "_interpreterInputLanguageList",
170
+ key: "_isLocalUserInVolte",
169
171
  get: function get() {
170
172
  return _classPrivateFieldGet(_B, this);
171
173
  },
@@ -173,7 +175,7 @@ export var FcrUISharedMemberDataSourceImpl = /*#__PURE__*/function () {
173
175
  _classPrivateFieldSet(_B, this, v);
174
176
  }
175
177
  }, {
176
- key: "_localUser",
178
+ key: "_interpreterInputLanguageList",
177
179
  get: function get() {
178
180
  return _classPrivateFieldGet(_C, this);
179
181
  },
@@ -181,7 +183,7 @@ export var FcrUISharedMemberDataSourceImpl = /*#__PURE__*/function () {
181
183
  _classPrivateFieldSet(_C, this, v);
182
184
  }
183
185
  }, {
184
- key: "totalUserCount",
186
+ key: "_localUser",
185
187
  get: function get() {
186
188
  return _classPrivateFieldGet(_D, this);
187
189
  },
@@ -189,13 +191,21 @@ export var FcrUISharedMemberDataSourceImpl = /*#__PURE__*/function () {
189
191
  _classPrivateFieldSet(_D, this, v);
190
192
  }
191
193
  }, {
192
- key: "shareScreenVideoSize",
194
+ key: "totalUserCount",
193
195
  get: function get() {
194
196
  return _classPrivateFieldGet(_E, this);
195
197
  },
196
198
  set: function set(v) {
197
199
  _classPrivateFieldSet(_E, this, v);
198
200
  }
201
+ }, {
202
+ key: "shareScreenVideoSize",
203
+ get: function get() {
204
+ return _classPrivateFieldGet(_F, this);
205
+ },
206
+ set: function set(v) {
207
+ _classPrivateFieldSet(_F, this, v);
208
+ }
199
209
  }, {
200
210
  key: "localUserId",
201
211
  get: function get() {
@@ -206,6 +216,11 @@ export var FcrUISharedMemberDataSourceImpl = /*#__PURE__*/function () {
206
216
  get: function get() {
207
217
  return this._isLocalUserInPstn;
208
218
  }
219
+ }, {
220
+ key: "hasOwnVolteStream",
221
+ get: function get() {
222
+ return this._isLocalUserInVolte;
223
+ }
209
224
  }, {
210
225
  key: "interpreterInputLanguageList",
211
226
  get: function get() {
@@ -306,6 +321,16 @@ export var FcrUISharedMemberDataSourceImpl = /*#__PURE__*/function () {
306
321
  });
307
322
  this._isLocalUserInPstn = !!pstnStream;
308
323
  }
324
+ }, {
325
+ key: "_setIsLocalUserInVolte",
326
+ value: function _setIsLocalUserInVolte() {
327
+ var streams = this._streamControl.getStreamsByUserId(this.localUserId);
328
+ var volteStream = streams.find(function (_ref3) {
329
+ var connectorType = _ref3.connectorType;
330
+ return connectorType === FcrRoomConnectorType.VOLTE;
331
+ });
332
+ this._isLocalUserInVolte = !!volteStream;
333
+ }
309
334
  }, {
310
335
  key: "_handleAllUserCountUpdated",
311
336
  value: function _handleAllUserCountUpdated(_roomId, count) {
@@ -400,6 +425,7 @@ export var FcrUISharedMemberDataSourceImpl = /*#__PURE__*/function () {
400
425
  _this7._dataSource.updateWithStreamAdd(modifiedStream);
401
426
  });
402
427
  _this7._setIsLocalUserInPstn();
428
+ _this7._setIsLocalUserInVolte();
403
429
  });
404
430
  }
405
431
  }, {
@@ -422,6 +448,7 @@ export var FcrUISharedMemberDataSourceImpl = /*#__PURE__*/function () {
422
448
  _this8._dataSource.updateStreamInfo(modifiedStream);
423
449
  });
424
450
  _this8._setIsLocalUserInPstn();
451
+ _this8._setIsLocalUserInVolte();
425
452
  });
426
453
  }
427
454
  }, {
@@ -440,17 +467,19 @@ export var FcrUISharedMemberDataSourceImpl = /*#__PURE__*/function () {
440
467
  _this9._dataSource.updateWithStreamRemove(modifiedStream);
441
468
  });
442
469
  _this9._setIsLocalUserInPstn();
470
+ _this9._setIsLocalUserInVolte();
443
471
  });
444
472
  }
445
473
  }]);
446
474
  }();
447
475
  _FcrUISharedMemberDataSourceImpl = FcrUISharedMemberDataSourceImpl;
448
- var _applyDecs$e = _applyDecs(_FcrUISharedMemberDataSourceImpl, [[observable, 1, "_isLocalUserInPstn"], [observable, 1, "_interpreterInputLanguageList"], [observable, 1, "_localUser"], [observable, 1, "totalUserCount"], [observable, 1, "shareScreenVideoSize"], [computed, 3, "hasOwnPstnStream"], [computed, 3, "interpreterInputLanguageList"], [computed, 3, "isLocalUserHost"], [computed, 3, "remoteMembers"], [computed, 3, "remoteMembersUserInfosList"], [computed, 3, "memberUserInfoList"], [bound, 2, "_handleOnEvent"], [_updateMemberListWithBoardStateDecs, 18, "updateMemberListWithBoardState"], [_setIsLocalUserInPstnDecs, 18, "_setIsLocalUserInPstn"], [_handleAllUserCountUpdatedDecs, 18, "_handleAllUserCountUpdated"], [_handleUserInfoUpdatedDecs, 18, "_handleUserInfoUpdated"], [_syncParticipantsDecs, 2, "_syncParticipants"], [_handleRemoteUserJoinedDecs, 18, "_handleRemoteUserJoined"], [_handleRemoteUserLeftDecs, 18, "_handleRemoteUserLeft"], [_handleStreamsAddedDecs, 18, "_handleStreamsAdded"], [_debouncedHandleStreamsAddedDecs, 2, "_debouncedHandleStreamsAdded"], [_handleStreamsUpdatedDecs, 18, "_handleStreamsUpdated"], [_debouncedHandleStreamsUpdatedDecs, 2, "_debouncedHandleStreamsUpdated"], [_handleStreamsRemovedDecs, 18, "_handleStreamsRemoved"], [_debouncedHandleStreamsRemovedDecs, 2, "_debouncedHandleStreamsRemoved"]], []).e;
449
- var _applyDecs$e2 = _slicedToArray(_applyDecs$e, 6);
476
+ var _applyDecs$e = _applyDecs(_FcrUISharedMemberDataSourceImpl, [[observable, 1, "_isLocalUserInPstn"], [observable, 1, "_isLocalUserInVolte"], [observable, 1, "_interpreterInputLanguageList"], [observable, 1, "_localUser"], [observable, 1, "totalUserCount"], [observable, 1, "shareScreenVideoSize"], [computed, 3, "hasOwnPstnStream"], [computed, 3, "hasOwnVolteStream"], [computed, 3, "interpreterInputLanguageList"], [computed, 3, "isLocalUserHost"], [computed, 3, "remoteMembers"], [computed, 3, "remoteMembersUserInfosList"], [computed, 3, "memberUserInfoList"], [bound, 2, "_handleOnEvent"], [_updateMemberListWithBoardStateDecs, 18, "updateMemberListWithBoardState"], [_setIsLocalUserInPstnDecs, 18, "_setIsLocalUserInPstn"], [_setIsLocalUserInVolteDecs, 18, "_setIsLocalUserInVolte"], [_handleAllUserCountUpdatedDecs, 18, "_handleAllUserCountUpdated"], [_handleUserInfoUpdatedDecs, 18, "_handleUserInfoUpdated"], [_syncParticipantsDecs, 2, "_syncParticipants"], [_handleRemoteUserJoinedDecs, 18, "_handleRemoteUserJoined"], [_handleRemoteUserLeftDecs, 18, "_handleRemoteUserLeft"], [_handleStreamsAddedDecs, 18, "_handleStreamsAdded"], [_debouncedHandleStreamsAddedDecs, 2, "_debouncedHandleStreamsAdded"], [_handleStreamsUpdatedDecs, 18, "_handleStreamsUpdated"], [_debouncedHandleStreamsUpdatedDecs, 2, "_debouncedHandleStreamsUpdated"], [_handleStreamsRemovedDecs, 18, "_handleStreamsRemoved"], [_debouncedHandleStreamsRemovedDecs, 2, "_debouncedHandleStreamsRemoved"]], []).e;
477
+ var _applyDecs$e2 = _slicedToArray(_applyDecs$e, 7);
450
478
  _init__isLocalUserInPstn = _applyDecs$e2[0];
451
- _init__interpreterInputLanguageList = _applyDecs$e2[1];
452
- _init__localUser = _applyDecs$e2[2];
453
- _init_totalUserCount = _applyDecs$e2[3];
454
- _init_shareScreenVideoSize = _applyDecs$e2[4];
455
- _initProto = _applyDecs$e2[5];
479
+ _init__isLocalUserInVolte = _applyDecs$e2[1];
480
+ _init__interpreterInputLanguageList = _applyDecs$e2[2];
481
+ _init__localUser = _applyDecs$e2[3];
482
+ _init_totalUserCount = _applyDecs$e2[4];
483
+ _init_shareScreenVideoSize = _applyDecs$e2[5];
484
+ _initProto = _applyDecs$e2[6];
456
485
  _applyDecs$e;
@@ -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
  };