fcr-ui-scene 1.0.40 → 3.1.0-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/base.d.ts +13 -0
- package/lib/base.js +78 -0
- package/lib/common/device-store.d.ts +140 -0
- package/lib/common/device-store.js +1378 -0
- package/lib/common/device-stream-store.d.ts +36 -0
- package/lib/common/device-stream-store.js +372 -0
- package/lib/common/event-store.d.ts +118 -0
- package/lib/common/event-store.js +235 -0
- package/lib/common/security-store.d.ts +123 -0
- package/lib/common/security-store.js +978 -0
- package/lib/creator.d.ts +8 -0
- package/lib/creator.js +37 -0
- package/lib/electron/app.d.ts +1 -0
- package/lib/electron/app.js +140 -0
- package/lib/electron/default-options.d.ts +2 -0
- package/lib/electron/default-options.js +25 -0
- package/lib/electron/env.d.ts +5 -0
- package/lib/electron/env.js +13 -0
- package/lib/electron/index.d.ts +2 -0
- package/lib/electron/index.js +20 -0
- package/lib/electron/injections.d.ts +45 -0
- package/lib/electron/injections.js +689 -0
- package/lib/electron/main.d.ts +2 -0
- package/lib/electron/main.js +63 -0
- package/lib/electron/plugins/screenshot.d.ts +2 -0
- package/lib/electron/plugins/screenshot.js +49 -0
- package/lib/electron/preload.js +35 -0
- package/lib/electron/tools.d.ts +5 -0
- package/lib/electron/tools.js +57 -0
- package/lib/electron/window.d.ts +12 -0
- package/lib/electron/window.js +113 -0
- package/lib/fragments/base.d.ts +10 -0
- package/lib/fragments/base.js +44 -0
- package/lib/fragments/control-bar/cloud-recording-buttons.d.ts +1 -0
- package/lib/fragments/control-bar/cloud-recording-buttons.js +67 -0
- package/lib/fragments/control-bar/context.d.ts +3 -0
- package/lib/fragments/control-bar/context.js +9 -0
- package/lib/fragments/control-bar/control-bar-store.d.ts +152 -0
- package/lib/fragments/control-bar/control-bar-store.js +1275 -0
- package/lib/fragments/control-bar/device/index.d.ts +31 -0
- package/lib/fragments/control-bar/device/index.js +203 -0
- package/lib/fragments/control-bar/index.css +276 -0
- package/lib/fragments/control-bar/index.d.ts +26 -0
- package/lib/fragments/control-bar/index.js +223 -0
- package/lib/fragments/control-bar/more-actions/index.css +19 -0
- package/lib/fragments/control-bar/more-actions/index.d.ts +7 -0
- package/lib/fragments/control-bar/more-actions/index.js +259 -0
- package/lib/fragments/control-bar/security-content/index.css +24 -0
- package/lib/fragments/control-bar/security-content/index.d.ts +2 -0
- package/lib/fragments/control-bar/security-content/index.js +145 -0
- package/lib/fragments/control-bar/share-state-nav/index.css +70 -0
- package/lib/fragments/control-bar/share-state-nav/index.d.ts +10 -0
- package/lib/fragments/control-bar/share-state-nav/index.js +134 -0
- package/lib/fragments/control-bar/stop-live-streaming/index.d.ts +1 -0
- package/lib/fragments/control-bar/stop-live-streaming/index.js +82 -0
- package/lib/fragments/control-bar/transfer-position-icon/index.d.ts +11 -0
- package/lib/fragments/control-bar/transfer-position-icon/index.js +46 -0
- package/lib/fragments/control-bar/view.d.ts +1 -0
- package/lib/fragments/control-bar/view.js +321 -0
- package/lib/fragments/live-streaming/context.d.ts +3 -0
- package/lib/fragments/live-streaming/context.js +9 -0
- package/lib/fragments/live-streaming/index.css +11 -0
- package/lib/fragments/live-streaming/index.d.ts +11 -0
- package/lib/fragments/live-streaming/index.js +79 -0
- package/lib/fragments/live-streaming/store.d.ts +21 -0
- package/lib/fragments/live-streaming/store.js +228 -0
- package/lib/fragments/live-streaming/view.d.ts +2 -0
- package/lib/fragments/live-streaming/view.js +44 -0
- package/lib/fragments/share-screen-selection/context.d.ts +3 -0
- package/lib/fragments/share-screen-selection/context.js +9 -0
- package/lib/fragments/share-screen-selection/index.css +66 -0
- package/lib/fragments/share-screen-selection/index.d.ts +9 -0
- package/lib/fragments/share-screen-selection/index.js +94 -0
- package/lib/fragments/share-screen-selection/open-mic-tips.d.ts +9 -0
- package/lib/fragments/share-screen-selection/open-mic-tips.js +55 -0
- package/lib/fragments/share-screen-selection/selection-store.d.ts +36 -0
- package/lib/fragments/share-screen-selection/selection-store.js +351 -0
- package/lib/fragments/share-screen-selection/tips.css +33 -0
- package/lib/fragments/share-screen-selection/view.d.ts +9 -0
- package/lib/fragments/share-screen-selection/view.js +255 -0
- package/lib/fragments/toolbar/components/color-picker/components/color.d.ts +5 -0
- package/lib/fragments/toolbar/components/color-picker/components/color.js +54 -0
- package/lib/fragments/toolbar/components/color-picker/components/panel.d.ts +1 -0
- package/lib/fragments/toolbar/components/color-picker/components/panel.js +114 -0
- package/lib/fragments/toolbar/components/color-picker/components/picker.d.ts +1 -0
- package/lib/fragments/toolbar/components/color-picker/components/picker.js +75 -0
- package/lib/fragments/toolbar/components/color-picker/index.d.ts +2 -0
- package/lib/fragments/toolbar/components/color-picker/index.js +53 -0
- package/lib/fragments/toolbar/components/color-picker.d.ts +2 -0
- package/lib/fragments/toolbar/components/color-picker.js +127 -0
- package/lib/fragments/toolbar/components/eraser-picker.d.ts +4 -0
- package/lib/fragments/toolbar/components/eraser-picker.js +84 -0
- package/lib/fragments/toolbar/components/extension-toolbar-item.d.ts +1 -0
- package/lib/fragments/toolbar/components/extension-toolbar-item.js +78 -0
- package/lib/fragments/toolbar/components/extra-tool-picker.d.ts +1 -0
- package/lib/fragments/toolbar/components/extra-tool-picker.js +60 -0
- package/lib/fragments/toolbar/components/fold-icon.d.ts +2 -0
- package/lib/fragments/toolbar/components/fold-icon.js +41 -0
- package/lib/fragments/toolbar/components/history.d.ts +2 -0
- package/lib/fragments/toolbar/components/history.js +46 -0
- package/lib/fragments/toolbar/components/pen-picker.d.ts +4 -0
- package/lib/fragments/toolbar/components/pen-picker.js +132 -0
- package/lib/fragments/toolbar/components/screen-capture-picker.d.ts +4 -0
- package/lib/fragments/toolbar/components/screen-capture-picker.js +84 -0
- package/lib/fragments/toolbar/components/shape-picker.d.ts +4 -0
- package/lib/fragments/toolbar/components/shape-picker.js +146 -0
- package/lib/fragments/toolbar/components/toolbar-item.d.ts +1 -0
- package/lib/fragments/toolbar/components/toolbar-item.js +42 -0
- package/lib/fragments/toolbar/components/wrapper.d.ts +1 -0
- package/lib/fragments/toolbar/components/wrapper.js +138 -0
- package/lib/fragments/toolbar/hooks.d.ts +16 -0
- package/lib/fragments/toolbar/hooks.js +251 -0
- package/lib/fragments/toolbar/index.d.ts +12 -0
- package/lib/fragments/toolbar/index.js +80 -0
- package/lib/fragments/toolbar/store.d.ts +62 -0
- package/lib/fragments/toolbar/store.js +279 -0
- package/lib/fragments/toolbar/style.css +347 -0
- package/lib/fragments/toolbar/view.d.ts +1 -0
- package/lib/fragments/toolbar/view.js +34 -0
- package/lib/global.d.ts +8 -0
- package/lib/hooks/i18n.d.ts +4 -0
- package/lib/hooks/i18n.js +18 -0
- package/lib/hooks/meeting-time.d.ts +15 -0
- package/lib/hooks/meeting-time.js +92 -0
- package/lib/index.d.ts +8 -0
- package/lib/index.js +52 -0
- package/lib/modules/action-bar/action-bar-collapes-items.d.ts +17 -0
- package/lib/modules/action-bar/action-bar-collapes-items.js +199 -0
- package/lib/modules/action-bar/board/index.d.ts +4 -0
- package/lib/modules/action-bar/board/index.js +34 -0
- package/lib/modules/action-bar/breakout-room/index.d.ts +4 -0
- package/lib/modules/action-bar/breakout-room/index.js +32 -0
- package/lib/modules/action-bar/chat/index.css +80 -0
- package/lib/modules/action-bar/chat/index.d.ts +5 -0
- package/lib/modules/action-bar/chat/index.js +152 -0
- package/lib/modules/action-bar/context.d.ts +3 -0
- package/lib/modules/action-bar/context.js +9 -0
- package/lib/modules/action-bar/device/index.css +157 -0
- package/lib/modules/action-bar/device/index.d.ts +8 -0
- package/lib/modules/action-bar/device/index.js +611 -0
- package/lib/modules/action-bar/index.css +212 -0
- package/lib/modules/action-bar/index.d.ts +25 -0
- package/lib/modules/action-bar/index.dev.d.ts +1 -0
- package/lib/modules/action-bar/index.dev.js +96 -0
- package/lib/modules/action-bar/index.js +89 -0
- package/lib/modules/action-bar/item-placement.d.ts +8 -0
- package/lib/modules/action-bar/item-placement.js +18 -0
- package/lib/modules/action-bar/item.d.ts +27 -0
- package/lib/modules/action-bar/item.js +154 -0
- package/lib/modules/action-bar/leave/assign-host.d.ts +8 -0
- package/lib/modules/action-bar/leave/assign-host.js +64 -0
- package/lib/modules/action-bar/leave/index.css +116 -0
- package/lib/modules/action-bar/leave/index.d.ts +3 -0
- package/lib/modules/action-bar/leave/index.js +110 -0
- package/lib/modules/action-bar/leave/leave-meeting.d.ts +7 -0
- package/lib/modules/action-bar/leave/leave-meeting.js +135 -0
- package/lib/modules/action-bar/live-streaming/index.d.ts +4 -0
- package/lib/modules/action-bar/live-streaming/index.js +39 -0
- package/lib/modules/action-bar/more/index.css +114 -0
- package/lib/modules/action-bar/more/index.d.ts +5 -0
- package/lib/modules/action-bar/more/index.js +80 -0
- package/lib/modules/action-bar/more/poppover-content.d.ts +9 -0
- package/lib/modules/action-bar/more/poppover-content.js +369 -0
- package/lib/modules/action-bar/participants/index.css +9 -0
- package/lib/modules/action-bar/participants/index.d.ts +5 -0
- package/lib/modules/action-bar/participants/index.js +75 -0
- package/lib/modules/action-bar/record/index.css +39 -0
- package/lib/modules/action-bar/record/index.d.ts +5 -0
- package/lib/modules/action-bar/record/index.js +161 -0
- package/lib/modules/action-bar/record/stop-record-dialog.d.ts +5 -0
- package/lib/modules/action-bar/record/stop-record-dialog.js +48 -0
- package/lib/modules/action-bar/respond/index.d.ts +4 -0
- package/lib/modules/action-bar/respond/index.js +32 -0
- package/lib/modules/action-bar/screen-share/index.d.ts +4 -0
- package/lib/modules/action-bar/screen-share/index.js +97 -0
- package/lib/modules/action-bar/screen-share/submenu.d.ts +1 -0
- package/lib/modules/action-bar/screen-share/submenu.js +159 -0
- package/lib/modules/action-bar/security/drop-menu.d.ts +1 -0
- package/lib/modules/action-bar/security/drop-menu.js +164 -0
- package/lib/modules/action-bar/security/index.d.ts +4 -0
- package/lib/modules/action-bar/security/index.js +50 -0
- package/lib/modules/action-bar/settings/index.d.ts +4 -0
- package/lib/modules/action-bar/settings/index.js +41 -0
- package/lib/modules/action-bar/smaller.d.ts +1 -0
- package/lib/modules/action-bar/smaller.js +52 -0
- package/lib/modules/action-bar/store.d.ts +177 -0
- package/lib/modules/action-bar/store.js +1179 -0
- package/lib/modules/action-bar/type.d.ts +6 -0
- package/lib/modules/action-bar/type.js +13 -0
- package/lib/modules/action-bar/view.d.ts +5 -0
- package/lib/modules/action-bar/view.js +80 -0
- package/lib/modules/audio-stream/index.d.ts +21 -0
- package/lib/modules/audio-stream/index.js +119 -0
- package/lib/modules/chat/chat-bar/index.css +79 -0
- package/lib/modules/chat/chat-bar/index.d.ts +11 -0
- package/lib/modules/chat/chat-bar/index.js +125 -0
- package/lib/modules/chat/chat-select/index.css +156 -0
- package/lib/modules/chat/chat-select/index.d.ts +13 -0
- package/lib/modules/chat/chat-select/index.js +186 -0
- package/lib/modules/chat/chat.d.ts +12 -0
- package/lib/modules/chat/chat.js +295 -0
- package/lib/modules/chat/contex.d.ts +3 -0
- package/lib/modules/chat/contex.js +9 -0
- package/lib/modules/chat/demo-wrapper.d.ts +2 -0
- package/lib/modules/chat/demo-wrapper.js +42 -0
- package/lib/modules/chat/index.css +17 -0
- package/lib/modules/chat/index.d.ts +29 -0
- package/lib/modules/chat/index.dev.d.ts +1 -0
- package/lib/modules/chat/index.dev.js +58 -0
- package/lib/modules/chat/index.js +189 -0
- package/lib/modules/chat/message-list.d.ts +22 -0
- package/lib/modules/chat/message-list.js +595 -0
- package/lib/modules/chat/mock.d.ts +2 -0
- package/lib/modules/chat/mock.js +283 -0
- package/lib/modules/chat/store.d.ts +132 -0
- package/lib/modules/chat/store.js +923 -0
- package/lib/modules/chat/util.d.ts +6 -0
- package/lib/modules/chat/util.js +69 -0
- package/lib/modules/connection-gateway/components/computer/index.css +11 -0
- package/lib/modules/connection-gateway/components/computer/index.d.ts +3 -0
- package/lib/modules/connection-gateway/components/computer/index.js +66 -0
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.css +36 -0
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.d.ts +10 -0
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +75 -0
- package/lib/modules/connection-gateway/components/phone/components/calling/index.css +72 -0
- package/lib/modules/connection-gateway/components/phone/components/calling/index.d.ts +7 -0
- package/lib/modules/connection-gateway/components/phone/components/calling/index.js +58 -0
- package/lib/modules/connection-gateway/components/phone/components/remeber/index.css +10 -0
- package/lib/modules/connection-gateway/components/phone/components/remeber/index.d.ts +5 -0
- package/lib/modules/connection-gateway/components/phone/components/remeber/index.js +24 -0
- package/lib/modules/connection-gateway/components/phone/components/useing/index.css +46 -0
- package/lib/modules/connection-gateway/components/phone/components/useing/index.d.ts +3 -0
- package/lib/modules/connection-gateway/components/phone/components/useing/index.js +36 -0
- package/lib/modules/connection-gateway/components/phone/index.css +49 -0
- package/lib/modules/connection-gateway/components/phone/index.d.ts +3 -0
- package/lib/modules/connection-gateway/components/phone/index.js +181 -0
- package/lib/modules/connection-gateway/components/tabs/index.css +31 -0
- package/lib/modules/connection-gateway/components/tabs/index.d.ts +4 -0
- package/lib/modules/connection-gateway/components/tabs/index.js +43 -0
- package/lib/modules/connection-gateway/index.css +6 -0
- package/lib/modules/connection-gateway/index.d.ts +16 -0
- package/lib/modules/connection-gateway/index.js +67 -0
- package/lib/modules/connection-gateway/store.d.ts +80 -0
- package/lib/modules/connection-gateway/store.js +698 -0
- package/lib/modules/connection-gateway/view.d.ts +1 -0
- package/lib/modules/connection-gateway/view.js +22 -0
- package/lib/modules/device-pretest/assets/virtual-backdound-resources.d.ts +13 -0
- package/lib/modules/device-pretest/assets/virtual-backdound-resources.js +15 -0
- package/lib/modules/device-pretest/audio-preview/microphone-detection.d.ts +12 -0
- package/lib/modules/device-pretest/audio-preview/microphone-detection.js +71 -0
- package/lib/modules/device-pretest/audio-preview/speaker-control.d.ts +2 -0
- package/lib/modules/device-pretest/audio-preview/speaker-control.js +63 -0
- package/lib/modules/device-pretest/audio-preview/speaker-detection.d.ts +12 -0
- package/lib/modules/device-pretest/audio-preview/speaker-detection.js +71 -0
- package/lib/modules/device-pretest/context.d.ts +3 -0
- package/lib/modules/device-pretest/context.js +9 -0
- package/lib/modules/device-pretest/index.css +127 -0
- package/lib/modules/device-pretest/index.d.ts +13 -0
- package/lib/modules/device-pretest/index.js +242 -0
- package/lib/modules/device-pretest/settings/beauty.d.ts +10 -0
- package/lib/modules/device-pretest/settings/beauty.js +103 -0
- package/lib/modules/device-pretest/settings/camera-select.d.ts +12 -0
- package/lib/modules/device-pretest/settings/camera-select.js +53 -0
- package/lib/modules/device-pretest/settings/index.css +15 -0
- package/lib/modules/device-pretest/settings/video-effect.d.ts +12 -0
- package/lib/modules/device-pretest/settings/video-effect.js +50 -0
- package/lib/modules/device-pretest/settings/video-settings-basic.d.ts +2 -0
- package/lib/modules/device-pretest/settings/video-settings-basic.js +143 -0
- package/lib/modules/device-pretest/settings/virtual-background-setting.d.ts +7 -0
- package/lib/modules/device-pretest/settings/virtual-background-setting.js +99 -0
- package/lib/modules/device-pretest/store.d.ts +69 -0
- package/lib/modules/device-pretest/store.js +413 -0
- package/lib/modules/dialog/components/chat/electron.d.ts +4 -0
- package/lib/modules/dialog/components/chat/electron.js +59 -0
- package/lib/modules/dialog/components/chat/index.d.ts +7 -0
- package/lib/modules/dialog/components/chat/index.js +66 -0
- package/lib/modules/dialog/components/confirm/electron.d.ts +10 -0
- package/lib/modules/dialog/components/confirm/electron.js +84 -0
- package/lib/modules/dialog/components/confirm/index.d.ts +10 -0
- package/lib/modules/dialog/components/confirm/index.js +75 -0
- package/lib/modules/dialog/components/connection-gateway/electron.d.ts +2 -0
- package/lib/modules/dialog/components/connection-gateway/electron.js +62 -0
- package/lib/modules/dialog/components/connection-gateway/index.css +27 -0
- package/lib/modules/dialog/components/connection-gateway/index.d.ts +3 -0
- package/lib/modules/dialog/components/connection-gateway/index.js +74 -0
- package/lib/modules/dialog/components/participant/electron.d.ts +2 -0
- package/lib/modules/dialog/components/participant/electron.js +85 -0
- package/lib/modules/dialog/components/participant/index.d.ts +3 -0
- package/lib/modules/dialog/components/participant/index.js +61 -0
- package/lib/modules/dialog/components/share-screen-selection/index.d.ts +4 -0
- package/lib/modules/dialog/components/share-screen-selection/index.js +42 -0
- package/lib/modules/dialog/components/whiteboard/index.d.ts +4 -0
- package/lib/modules/dialog/components/whiteboard/index.js +74 -0
- package/lib/modules/dialog/context.d.ts +3 -0
- package/lib/modules/dialog/context.js +9 -0
- package/lib/modules/dialog/dialogs.d.ts +11 -0
- package/lib/modules/dialog/dialogs.js +376 -0
- package/lib/modules/dialog/index.css +55 -0
- package/lib/modules/dialog/index.d.ts +29 -0
- package/lib/modules/dialog/index.js +80 -0
- package/lib/modules/dialog/store.d.ts +82 -0
- package/lib/modules/dialog/store.js +525 -0
- package/lib/modules/dialog/view.d.ts +5 -0
- package/lib/modules/dialog/view.js +30 -0
- package/lib/modules/event-toast/context.d.ts +3 -0
- package/lib/modules/event-toast/context.js +9 -0
- package/lib/modules/event-toast/index.d.ts +10 -0
- package/lib/modules/event-toast/index.js +41 -0
- package/lib/modules/event-toast/store.d.ts +9 -0
- package/lib/modules/event-toast/store.js +76 -0
- package/lib/modules/event-toast/view.d.ts +1 -0
- package/lib/modules/event-toast/view.js +14 -0
- package/lib/modules/invite/context.d.ts +3 -0
- package/lib/modules/invite/context.js +9 -0
- package/lib/modules/invite/index.css +318 -0
- package/lib/modules/invite/index.d.ts +13 -0
- package/lib/modules/invite/index.js +51 -0
- package/lib/modules/invite/pstn-invite.d.ts +2 -0
- package/lib/modules/invite/pstn-invite.js +271 -0
- package/lib/modules/invite/store.d.ts +71 -0
- package/lib/modules/invite/store.js +472 -0
- package/lib/modules/invite/view.d.ts +1 -0
- package/lib/modules/invite/view.js +47 -0
- package/lib/modules/invite/voip-invite.d.ts +2 -0
- package/lib/modules/invite/voip-invite.js +294 -0
- package/lib/modules/layout/components/Aside.d.ts +7 -0
- package/lib/modules/layout/components/Aside.js +144 -0
- package/lib/modules/layout/components/Carousel.d.ts +1 -0
- package/lib/modules/layout/components/Carousel.js +271 -0
- package/lib/modules/layout/components/Gallery.d.ts +1 -0
- package/lib/modules/layout/components/Gallery.js +360 -0
- package/lib/modules/layout/components/Layout.d.ts +2 -0
- package/lib/modules/layout/components/Layout.js +160 -0
- package/lib/modules/layout/components/index.css +608 -0
- package/lib/modules/layout/components/index.d.ts +5 -0
- package/lib/modules/layout/components/index.js +55 -0
- package/lib/modules/layout/components/utils.d.ts +1 -0
- package/lib/modules/layout/components/utils.js +10 -0
- package/lib/modules/layout/context.d.ts +3 -0
- package/lib/modules/layout/context.js +9 -0
- package/lib/modules/layout/index.css +27 -0
- package/lib/modules/layout/index.d.ts +10 -0
- package/lib/modules/layout/index.dev.d.ts +1 -0
- package/lib/modules/layout/index.dev.js +378 -0
- package/lib/modules/layout/index.js +72 -0
- package/lib/modules/layout/member-window/index.css +321 -0
- package/lib/modules/layout/member-window/index.d.ts +67 -0
- package/lib/modules/layout/member-window/index.js +730 -0
- package/lib/modules/layout/store.d.ts +177 -0
- package/lib/modules/layout/store.js +1278 -0
- package/lib/modules/layout/type.d.ts +64 -0
- package/lib/modules/layout/type.js +52 -0
- package/lib/modules/layout/video-window-datasource.d.ts +119 -0
- package/lib/modules/layout/video-window-datasource.js +1031 -0
- package/lib/modules/layout/view.d.ts +2 -0
- package/lib/modules/layout/view.js +10 -0
- package/lib/modules/live-streaming/context.d.ts +3 -0
- package/lib/modules/live-streaming/context.js +9 -0
- package/lib/modules/live-streaming/index.css +0 -0
- package/lib/modules/live-streaming/index.d.ts +13 -0
- package/lib/modules/live-streaming/index.dev.d.ts +1 -0
- package/lib/modules/live-streaming/index.dev.js +59 -0
- package/lib/modules/live-streaming/index.js +76 -0
- package/lib/modules/live-streaming/store.d.ts +38 -0
- package/lib/modules/live-streaming/store.js +360 -0
- package/lib/modules/live-streaming/view.d.ts +1 -0
- package/lib/modules/live-streaming/view.js +33 -0
- package/lib/modules/participant/attendee/index.css +14 -0
- package/lib/modules/participant/attendee/index.d.ts +19 -0
- package/lib/modules/participant/attendee/index.js +280 -0
- package/lib/modules/participant/attendee/participants-more-action.d.ts +18 -0
- package/lib/modules/participant/attendee/participants-more-action.js +275 -0
- package/lib/modules/participant/attendee/user-more-actions.d.ts +22 -0
- package/lib/modules/participant/attendee/user-more-actions.js +76 -0
- package/lib/modules/participant/can-moveable/index.d.ts +1 -0
- package/lib/modules/participant/can-moveable/index.js +68 -0
- package/lib/modules/participant/context.d.ts +3 -0
- package/lib/modules/participant/context.js +9 -0
- package/lib/modules/participant/index.css +58 -0
- package/lib/modules/participant/index.d.ts +25 -0
- package/lib/modules/participant/index.dev.d.ts +1 -0
- package/lib/modules/participant/index.dev.js +98 -0
- package/lib/modules/participant/index.js +93 -0
- package/lib/modules/participant/member-list-data-source.d.ts +28 -0
- package/lib/modules/participant/member-list-data-source.js +261 -0
- package/lib/modules/participant/room-control-drop-menu/index.css +19 -0
- package/lib/modules/participant/room-control-drop-menu/index.d.ts +2 -0
- package/lib/modules/participant/room-control-drop-menu/index.js +154 -0
- package/lib/modules/participant/store.d.ts +145 -0
- package/lib/modules/participant/store.js +1334 -0
- package/lib/modules/participant/type.d.ts +34 -0
- package/lib/modules/participant/type.js +22 -0
- package/lib/modules/participant/view.d.ts +11 -0
- package/lib/modules/participant/view.js +260 -0
- package/lib/modules/setting/audio-settings/audio-settings.d.ts +4 -0
- package/lib/modules/setting/audio-settings/audio-settings.js +303 -0
- package/lib/modules/setting/audio-settings/index.css +144 -0
- package/lib/{fcr-ui-scene/src/containers/stream-window/index.d.ts → modules/setting/common/advance-link.d.ts} +1 -1
- package/lib/modules/setting/common/advance-link.js +27 -0
- package/lib/modules/setting/common/index.css +26 -0
- package/lib/modules/setting/common/useNamespace.d.ts +15 -0
- package/lib/modules/setting/common/useNamespace.js +66 -0
- package/lib/modules/setting/config.d.ts +16 -0
- package/lib/modules/setting/config.js +17 -0
- package/lib/modules/setting/context.d.ts +3 -0
- package/lib/modules/setting/context.js +9 -0
- package/lib/modules/setting/dialog-wrapper.d.ts +2 -0
- package/lib/modules/setting/dialog-wrapper.js +110 -0
- package/lib/modules/setting/general-settings/general-settings.d.ts +4 -0
- package/lib/modules/setting/general-settings/general-settings.js +66 -0
- package/lib/modules/setting/general-settings/index.css +26 -0
- package/lib/modules/setting/index.css +115 -0
- package/lib/modules/setting/index.d.ts +21 -0
- package/lib/modules/setting/index.dev.d.ts +1 -0
- package/lib/modules/setting/index.dev.js +71 -0
- package/lib/modules/setting/index.js +81 -0
- package/lib/modules/setting/state/index.css +211 -0
- package/lib/modules/setting/state/index.d.ts +4 -0
- package/lib/modules/setting/state/index.js +331 -0
- package/lib/modules/setting/storage-settings/index.css +91 -0
- package/lib/modules/setting/storage-settings/storage-settings.d.ts +3 -0
- package/lib/modules/setting/storage-settings/storage-settings.js +84 -0
- package/lib/modules/setting/store.d.ts +213 -0
- package/lib/modules/setting/store.js +1125 -0
- package/lib/modules/setting/video-settings/index.css +339 -0
- package/lib/modules/setting/video-settings/video-settings-basic.d.ts +9 -0
- package/lib/modules/setting/video-settings/video-settings-basic.js +160 -0
- package/lib/modules/setting/video-settings/video-settings.d.ts +10 -0
- package/lib/modules/setting/video-settings/video-settings.js +191 -0
- package/lib/modules/setting/view.d.ts +10 -0
- package/lib/modules/setting/view.js +139 -0
- package/lib/modules/share-screen/index.css +0 -0
- package/lib/modules/share-screen/index.d.ts +26 -0
- package/lib/modules/share-screen/index.dev.d.ts +1 -0
- package/lib/modules/share-screen/index.dev.js +96 -0
- package/lib/modules/share-screen/index.js +171 -0
- package/lib/modules/share-screen/selection/index.css +66 -0
- package/lib/modules/share-screen/selection/index.d.ts +9 -0
- package/lib/modules/share-screen/selection/index.js +224 -0
- package/lib/modules/share-screen/share-state-bar/index.css +38 -0
- package/lib/modules/share-screen/share-state-bar/index.d.ts +5 -0
- package/lib/modules/share-screen/share-state-bar/index.js +67 -0
- package/lib/modules/share-screen/store.d.ts +132 -0
- package/lib/modules/share-screen/store.js +1714 -0
- package/lib/modules/share-screen/view.d.ts +2 -0
- package/lib/modules/share-screen/view.js +45 -0
- package/lib/modules/state-bar/assets/fcr_grid_big.svg +3 -0
- package/lib/modules/state-bar/assets/fcr_listontop_big.svg +3 -0
- package/lib/modules/state-bar/assets/live-streaming.gif +0 -0
- package/lib/modules/state-bar/context.d.ts +3 -0
- package/lib/modules/state-bar/context.js +9 -0
- package/lib/modules/state-bar/index.css +630 -0
- package/lib/modules/state-bar/index.d.ts +18 -0
- package/lib/modules/state-bar/index.dev.d.ts +1 -0
- package/lib/modules/state-bar/index.dev.js +82 -0
- package/lib/modules/state-bar/index.js +69 -0
- package/lib/modules/state-bar/layout-config.d.ts +5 -0
- package/lib/modules/state-bar/layout-config.js +151 -0
- package/lib/modules/state-bar/live-streaming-state.d.ts +1 -0
- package/lib/modules/state-bar/live-streaming-state.js +199 -0
- package/lib/modules/state-bar/meeting-detail.css +107 -0
- package/lib/modules/state-bar/meeting-details.d.ts +2 -0
- package/lib/modules/state-bar/meeting-details.js +151 -0
- package/lib/modules/state-bar/meeting-network-state.css +131 -0
- package/lib/modules/state-bar/meeting-network-state.d.ts +2 -0
- package/lib/modules/state-bar/meeting-network-state.js +108 -0
- package/lib/modules/state-bar/meeting-time.d.ts +2 -0
- package/lib/modules/state-bar/meeting-time.js +49 -0
- package/lib/modules/state-bar/network-quality.d.ts +2 -0
- package/lib/modules/state-bar/network-quality.js +33 -0
- package/lib/modules/state-bar/recording.d.ts +1 -0
- package/lib/modules/state-bar/recording.js +110 -0
- package/lib/modules/state-bar/store.d.ts +70 -0
- package/lib/modules/state-bar/store.js +515 -0
- package/lib/modules/state-bar/view.d.ts +5 -0
- package/lib/modules/state-bar/view.js +182 -0
- package/lib/modules/video-window/context.d.ts +3 -0
- package/lib/modules/video-window/context.js +9 -0
- package/lib/modules/video-window/deviceState/index.d.ts +15 -0
- package/lib/modules/video-window/deviceState/index.js +77 -0
- package/lib/modules/video-window/index.css +17 -0
- package/lib/modules/video-window/index.d.ts +9 -0
- package/lib/modules/video-window/index.js +65 -0
- package/lib/modules/video-window/members/index.css +50 -0
- package/lib/modules/video-window/members/index.d.ts +2 -0
- package/lib/modules/video-window/members/index.js +134 -0
- package/lib/modules/video-window/speaking/index.css +69 -0
- package/lib/modules/video-window/speaking/index.d.ts +3 -0
- package/lib/modules/video-window/speaking/index.js +57 -0
- package/lib/modules/video-window/store.d.ts +88 -0
- package/lib/modules/video-window/store.js +598 -0
- package/lib/modules/video-window/topControl/index.css +35 -0
- package/lib/modules/video-window/topControl/index.d.ts +3 -0
- package/lib/modules/video-window/topControl/index.js +85 -0
- package/lib/modules/video-window/type.d.ts +23 -0
- package/lib/modules/video-window/type.js +32 -0
- package/lib/modules/video-window/view.d.ts +2 -0
- package/lib/modules/video-window/view.js +63 -0
- package/lib/modules/whiteboard/app.d.ts +2 -0
- package/lib/modules/whiteboard/app.js +55 -0
- package/lib/modules/whiteboard/components/control-bar/index.css +49 -0
- package/lib/modules/whiteboard/components/control-bar/index.d.ts +2 -0
- package/lib/modules/whiteboard/components/control-bar/index.js +163 -0
- package/lib/modules/whiteboard/components/control-bar/store.d.ts +36 -0
- package/lib/modules/whiteboard/components/control-bar/store.js +288 -0
- package/lib/modules/whiteboard/components/loading/index.css +76 -0
- package/lib/modules/whiteboard/components/loading/index.d.ts +2 -0
- package/lib/modules/whiteboard/components/loading/index.js +68 -0
- package/lib/modules/whiteboard/components/loading/loading.png +0 -0
- package/lib/modules/whiteboard/components/multi-window/index.css +63 -0
- package/lib/modules/whiteboard/components/multi-window/index.d.ts +5 -0
- package/lib/modules/whiteboard/components/multi-window/index.js +34 -0
- package/lib/modules/whiteboard/components/pagination/index.css +228 -0
- package/lib/modules/whiteboard/components/pagination/index.d.ts +15 -0
- package/lib/modules/whiteboard/components/pagination/index.js +163 -0
- package/lib/modules/whiteboard/components/pagination/store.d.ts +19 -0
- package/lib/modules/whiteboard/components/pagination/store.js +17 -0
- package/lib/modules/whiteboard/components/progress/electron.d.ts +1 -0
- package/lib/modules/whiteboard/components/progress/electron.js +32 -0
- package/lib/modules/whiteboard/components/progress/index.d.ts +5 -0
- package/lib/modules/whiteboard/components/progress/index.js +43 -0
- package/lib/modules/whiteboard/components/progress/style.css +50 -0
- package/lib/modules/whiteboard/components/scene-pagination.d.ts +1 -0
- package/lib/modules/whiteboard/components/scene-pagination.js +32 -0
- package/lib/modules/whiteboard/components/switch-theme/index.css +94 -0
- package/lib/modules/whiteboard/components/switch-theme/index.d.ts +2 -0
- package/lib/modules/whiteboard/components/switch-theme/index.js +77 -0
- package/lib/modules/whiteboard/components/switch-theme/item.d.ts +8 -0
- package/lib/modules/whiteboard/components/switch-theme/item.js +44 -0
- package/lib/modules/whiteboard/components/switch-theme/libs.d.ts +3 -0
- package/lib/modules/whiteboard/components/switch-theme/libs.js +28 -0
- package/lib/modules/whiteboard/components/toolbar/ style.css +588 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/color.d.ts +5 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/color.js +39 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.d.ts +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +105 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/picker.d.ts +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/picker.js +63 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/index.d.ts +2 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/index.js +44 -0
- package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.d.ts +4 -0
- package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.js +98 -0
- package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.d.ts +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +59 -0
- package/lib/modules/whiteboard/components/toolbar/components/history.d.ts +2 -0
- package/lib/modules/whiteboard/components/toolbar/components/history.js +46 -0
- package/lib/modules/whiteboard/components/toolbar/components/icons/fold-icon.d.ts +2 -0
- package/lib/modules/whiteboard/components/toolbar/components/icons/fold-icon.js +41 -0
- package/lib/modules/whiteboard/components/toolbar/components/icons/move-icon.d.ts +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/icons/move-icon.js +66 -0
- package/lib/modules/whiteboard/components/toolbar/components/move-handle.d.ts +5 -0
- package/lib/modules/whiteboard/components/toolbar/components/move-handle.js +131 -0
- package/lib/modules/whiteboard/components/toolbar/components/pen-picker.d.ts +4 -0
- package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +112 -0
- package/lib/modules/whiteboard/components/toolbar/components/screen-capture-picker.d.ts +4 -0
- package/lib/modules/whiteboard/components/toolbar/components/screen-capture-picker.js +74 -0
- package/lib/modules/whiteboard/components/toolbar/components/shape-picker.d.ts +4 -0
- package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +163 -0
- package/lib/modules/whiteboard/components/toolbar/hooks/index.d.ts +14 -0
- package/lib/modules/whiteboard/components/toolbar/hooks/index.js +211 -0
- package/lib/modules/whiteboard/components/toolbar/index.d.ts +2 -0
- package/lib/modules/whiteboard/components/toolbar/index.js +175 -0
- package/lib/modules/whiteboard/components/toolbar/store.d.ts +50 -0
- package/lib/modules/whiteboard/components/toolbar/store.js +224 -0
- package/lib/modules/whiteboard/context.d.ts +66 -0
- package/lib/modules/whiteboard/context.js +34 -0
- package/lib/modules/whiteboard/index.d.ts +115 -0
- package/lib/modules/whiteboard/index.js +1082 -0
- package/lib/modules/whiteboard/style.css +142 -0
- package/lib/modules/whiteboard/type.d.ts +96 -0
- package/lib/modules/whiteboard/type.js +94 -0
- package/lib/modules/whiteboard/utils.d.ts +11 -0
- package/lib/modules/whiteboard/utils.js +25 -0
- package/lib/plugins/browser-runtime-plugin.d.ts +0 -0
- package/lib/plugins/browser-runtime-plugin.js +67 -0
- package/lib/plugins/css-preset-plugin.d.ts +1 -0
- package/lib/plugins/css-preset-plugin.js +22 -0
- package/lib/plugins/electron-rtc-plugin.d.ts +1 -0
- package/lib/plugins/electron-rtc-plugin.js +5 -0
- package/lib/plugins/module-dev-plugin.d.ts +12 -0
- package/lib/plugins/module-dev-plugin.js +181 -0
- package/lib/plugins/multi-lang-plugin.d.ts +5 -0
- package/lib/plugins/multi-lang-plugin.js +17 -0
- package/lib/plugins/rtm-plugin.d.ts +1 -0
- package/lib/plugins/rtm-plugin.js +5 -0
- package/lib/plugins/web-rtc-plugin.d.ts +1 -0
- package/lib/plugins/web-rtc-plugin.js +5 -0
- package/lib/runtime.d.ts +86 -0
- package/lib/translations/enUS.d.ts +993 -0
- package/lib/translations/enUS.js +1016 -0
- package/lib/translations/zhCN.d.ts +993 -0
- package/lib/translations/zhCN.js +1016 -0
- package/lib/type.d.ts +107 -0
- package/lib/type.js +42 -0
- package/lib/ui-manager.d.ts +17 -0
- package/lib/ui-manager.js +555 -0
- package/lib/ui-scene.d.ts +13 -0
- package/lib/ui-scene.js +142 -0
- package/lib/utilities/board-context.d.ts +5 -0
- package/lib/utilities/board-context.js +12 -0
- package/lib/utilities/constant.d.ts +248 -0
- package/lib/utilities/constant.js +232 -0
- package/lib/utilities/copyText.d.ts +2 -0
- package/lib/utilities/copyText.js +43 -0
- package/lib/utilities/default-config.d.ts +32 -0
- package/lib/utilities/default-config.js +39 -0
- package/lib/utilities/extract.d.ts +5 -0
- package/lib/utilities/extract.js +97 -0
- package/lib/utilities/hooks.d.ts +14 -0
- package/lib/utilities/hooks.js +99 -0
- package/lib/utilities/mute-action.d.ts +4 -0
- package/lib/utilities/mute-action.js +48 -0
- package/lib/utilities/parameters.d.ts +7 -0
- package/lib/utilities/parameters.js +20 -0
- package/lib/utilities/platform.d.ts +1 -0
- package/lib/utilities/platform.js +11 -0
- package/lib/utilities/regex.d.ts +1 -0
- package/lib/utilities/regex.js +14 -0
- package/lib/utilities/renderer-event.d.ts +9 -0
- package/lib/utilities/renderer-event.js +76 -0
- package/lib/utilities/renderer.d.ts +23 -0
- package/lib/utilities/renderer.js +109 -0
- package/lib/utilities/screen.d.ts +3 -0
- package/lib/utilities/screen.js +41 -0
- package/lib/utilities/tools.d.ts +25 -0
- package/lib/utilities/tools.js +164 -0
- package/lib/utilities/ui-resources.d.ts +2 -0
- package/lib/utilities/ui-resources.js +9 -0
- package/lib/utilities/useNamespace.d.ts +15 -0
- package/lib/utilities/useNamespace.js +66 -0
- package/lib/utilities/video-track-render-context.d.ts +8 -0
- package/lib/utilities/video-track-render-context.js +9 -0
- package/package.json +61 -85
- package/public/assets/fcr_chat_reddot.svg +5 -0
- package/public/assets/fcr_defaultpage.png +0 -0
- package/public/assets/fcr_grid_big.svg +3 -0
- package/public/assets/fcr_listontop_big.svg +3 -0
- package/public/assets/pretest.mp3 +0 -0
- package/public/assets/state-bar-logo.png +0 -0
- package/public/assets/step-gradient.svg +10 -0
- package/public/extensions/agora-extension-virtual-background/agora-wasm.wasm +0 -0
- package/public/extensions/ai-denoiser/denoiser-wasm-simd.wasm +0 -0
- package/public/extensions/ai-denoiser/denoiser-wasm.js +1 -0
- package/public/extensions/ai-denoiser/denoiser-wasm.wasm +0 -0
- package/public/index.html +26 -0
- package/.github/workflows/gitee-sync.yml +0 -27
- package/lib/fcr-ui-kit/src/components/avatar/helper.d.ts +0 -2
- package/lib/fcr-ui-kit/src/components/avatar/index.d.ts +0 -8
- package/lib/fcr-ui-kit/src/components/button/index.d.ts +0 -82
- package/lib/fcr-ui-kit/src/components/checkbox/index.d.ts +0 -12
- package/lib/fcr-ui-kit/src/components/dialog/class-dialog.d.ts +0 -51
- package/lib/fcr-ui-kit/src/components/dialog/confirm-dialog.d.ts +0 -70
- package/lib/fcr-ui-kit/src/components/dialog/global-dialog.d.ts +0 -11
- package/lib/fcr-ui-kit/src/components/dialog/index.d.ts +0 -68
- package/lib/fcr-ui-kit/src/components/dropdown/index.d.ts +0 -58
- package/lib/fcr-ui-kit/src/components/input/index.d.ts +0 -69
- package/lib/fcr-ui-kit/src/components/input-number/index.d.ts +0 -69
- package/lib/fcr-ui-kit/src/components/pagination/index.d.ts +0 -27
- package/lib/fcr-ui-kit/src/components/popover/index.d.ts +0 -47
- package/lib/fcr-ui-kit/src/components/progress/index.d.ts +0 -11
- package/lib/fcr-ui-kit/src/components/radio/index.d.ts +0 -21
- package/lib/fcr-ui-kit/src/components/slider/index.d.ts +0 -22
- package/lib/fcr-ui-kit/src/components/sound-player/index.d.ts +0 -6
- package/lib/fcr-ui-kit/src/components/svg-img/clickable-icon.d.ts +0 -25
- package/lib/fcr-ui-kit/src/components/svg-img/index.d.ts +0 -15
- package/lib/fcr-ui-kit/src/components/svg-img/mic.d.ts +0 -5
- package/lib/fcr-ui-kit/src/components/svg-img/svg-dict.d.ts +0 -12
- package/lib/fcr-ui-kit/src/components/svg-img/type.d.ts +0 -196
- package/lib/fcr-ui-kit/src/components/svga-player/index.d.ts +0 -15
- package/lib/fcr-ui-kit/src/components/svga-player/svga-types.d.ts +0 -1
- package/lib/fcr-ui-kit/src/components/table/index.d.ts +0 -9
- package/lib/fcr-ui-kit/src/components/tabs/index.d.ts +0 -14
- package/lib/fcr-ui-kit/src/components/textarea/helper.d.ts +0 -2
- package/lib/fcr-ui-kit/src/components/textarea/index.d.ts +0 -100
- package/lib/fcr-ui-kit/src/components/toast/index.d.ts +0 -122
- package/lib/fcr-ui-kit/src/components/tooltip/dialog.d.ts +0 -19
- package/lib/fcr-ui-kit/src/components/tooltip/index.d.ts +0 -89
- package/lib/fcr-ui-kit/src/components/tooltip/info.d.ts +0 -6
- package/lib/fcr-ui-kit/src/components/volume/index.d.ts +0 -8
- package/lib/fcr-ui-kit/src/utils/click-anywhere.d.ts +0 -1
- package/lib/fcr-ui-kit/src/utils/hooks/animations.d.ts +0 -14
- package/lib/fcr-ui-kit/src/utils/hooks/use-click-anywhere.d.ts +0 -2
- package/lib/fcr-ui-kit/src/utils/tailwindcss.d.ts +0 -3
- package/lib/fcr-ui-scene/src/app.d.ts +0 -5
- package/lib/fcr-ui-scene/src/configs/base-theme.d.ts +0 -391
- package/lib/fcr-ui-scene/src/configs/base-ui.d.ts +0 -12
- package/lib/fcr-ui-scene/src/configs/room-template.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/chat/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/cloud/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/device/index.d.ts +0 -9
- package/lib/fcr-ui-scene/src/containers/action-bar/index.d.ts +0 -24
- package/lib/fcr-ui-scene/src/containers/action-bar/leave/index.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/action-bar/participants/index.d.ts +0 -5
- package/lib/fcr-ui-scene/src/containers/action-bar/raise-hands/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/record/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/screen-share/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/setting/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/toolbox/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/whiteboard/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/breakout-room/ask-help-list.d.ts +0 -10
- package/lib/fcr-ui-scene/src/containers/breakout-room/broadcast-panel.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/breakout-room/create-panel.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/breakout-room/group-info-panel.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/breakout-room/group-panel.d.ts +0 -5
- package/lib/fcr-ui-scene/src/containers/breakout-room/group-status-panel.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/breakout-room/grouping.d.ts +0 -15
- package/lib/fcr-ui-scene/src/containers/breakout-room/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/breakout-room/search-panel.d.ts +0 -5
- package/lib/fcr-ui-scene/src/containers/breakout-room/wizard.d.ts +0 -6
- package/lib/fcr-ui-scene/src/containers/cloud/dialog-header.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/cloud/index.d.ts +0 -6
- package/lib/fcr-ui-scene/src/containers/cloud/personal.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/cloud/public.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/common/interact-labels.d.ts +0 -6
- package/lib/fcr-ui-scene/src/containers/device-pretest/basic-settings.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/device-pretest/beauty-filter.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/device-pretest/beauty-slider.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/device-pretest/device-select.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/device-pretest/index.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/device-pretest/mirror-toggle.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/device-pretest/video-portal.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/device-pretest/virtual-background.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/device-settings/audio-settings.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/device-settings/dialog-wrapper.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/device-settings/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/device-settings/video-settings.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/dialog/class-info.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/dialog/confirm.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/dialog/index.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/layout/cover-view.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/layout/gallery-view.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/layout/presentation-view.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/loading/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/participants/dialog.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/participants/index.d.ts +0 -5
- package/lib/fcr-ui-scene/src/containers/status-bar/class-duration/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/status-bar/fullscreen/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/status-bar/index.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/status-bar/layout-switch/index.d.ts +0 -22
- package/lib/fcr-ui-scene/src/containers/status-bar/network/index.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/status-bar/record-status/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/status-bar/room-info/index.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/status-bar/share/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/status-bar/widgets/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/stream-window/context.d.ts +0 -52
- package/lib/fcr-ui-scene/src/containers/video-player/index.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/video-player/players.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/widget/break-out-room/index.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/widget/draggable-wrapper/index.d.ts +0 -7
- package/lib/fcr-ui-scene/src/containers/widget/helpers.d.ts +0 -40
- package/lib/fcr-ui-scene/src/containers/widget/hooks.d.ts +0 -21
- package/lib/fcr-ui-scene/src/containers/widget/index.d.ts +0 -7
- package/lib/fcr-ui-scene/src/containers/widget/participants/index.d.ts +0 -2
- package/lib/fcr-ui-scene/src/extension/board.d.ts +0 -73
- package/lib/fcr-ui-scene/src/extension/edu-tool.d.ts +0 -57
- package/lib/fcr-ui-scene/src/extension/events.d.ts +0 -91
- package/lib/fcr-ui-scene/src/extension/type.d.ts +0 -94
- package/lib/fcr-ui-scene/src/index.d.ts +0 -39
- package/lib/fcr-ui-scene/src/lock.d.ts +0 -8
- package/lib/fcr-ui-scene/src/preset.d.ts +0 -1
- package/lib/fcr-ui-scene/src/resources/translations/enUs.d.ts +0 -400
- package/lib/fcr-ui-scene/src/resources/translations/zhCn.d.ts +0 -405
- package/lib/fcr-ui-scene/src/scenarios/classroom.d.ts +0 -2
- package/lib/fcr-ui-scene/src/scenarios/layout/index.d.ts +0 -2
- package/lib/fcr-ui-scene/src/type.d.ts +0 -361
- package/lib/fcr-ui-scene/src/uistores/action-bar.d.ts +0 -58
- package/lib/fcr-ui-scene/src/uistores/base.d.ts +0 -58
- package/lib/fcr-ui-scene/src/uistores/breakout.d.ts +0 -225
- package/lib/fcr-ui-scene/src/uistores/cloud/helper.d.ts +0 -26
- package/lib/fcr-ui-scene/src/uistores/cloud/index.d.ts +0 -51
- package/lib/fcr-ui-scene/src/uistores/cloud/struct.d.ts +0 -131
- package/lib/fcr-ui-scene/src/uistores/context.d.ts +0 -7
- package/lib/fcr-ui-scene/src/uistores/device-setting.d.ts +0 -222
- package/lib/fcr-ui-scene/src/uistores/gallery-view.d.ts +0 -16
- package/lib/fcr-ui-scene/src/uistores/getters.d.ts +0 -42
- package/lib/fcr-ui-scene/src/uistores/index.d.ts +0 -47
- package/lib/fcr-ui-scene/src/uistores/layout.d.ts +0 -64
- package/lib/fcr-ui-scene/src/uistores/notification.d.ts +0 -9
- package/lib/fcr-ui-scene/src/uistores/participants.d.ts +0 -48
- package/lib/fcr-ui-scene/src/uistores/presentation-view.d.ts +0 -24
- package/lib/fcr-ui-scene/src/uistores/status-bar.d.ts +0 -47
- package/lib/fcr-ui-scene/src/uistores/stream.d.ts +0 -48
- package/lib/fcr-ui-scene/src/uistores/subscription/abstract.d.ts +0 -45
- package/lib/fcr-ui-scene/src/uistores/subscription/index.d.ts +0 -13
- package/lib/fcr-ui-scene/src/uistores/subscription/main-room.d.ts +0 -14
- package/lib/fcr-ui-scene/src/uistores/subscription/type.d.ts +0 -10
- package/lib/fcr-ui-scene/src/uistores/type.d.ts +0 -86
- package/lib/fcr-ui-scene/src/uistores/widget.d.ts +0 -49
- package/lib/fcr-ui-scene/src/utils/asset.d.ts +0 -1
- package/lib/fcr-ui-scene/src/utils/check.d.ts +0 -7
- package/lib/fcr-ui-scene/src/utils/clamp-bounds.d.ts +0 -14
- package/lib/fcr-ui-scene/src/utils/config-loader.d.ts +0 -7
- package/lib/fcr-ui-scene/src/utils/grid/index.d.ts +0 -9
- package/lib/fcr-ui-scene/src/utils/hooks/use-authorization.d.ts +0 -5
- package/lib/fcr-ui-scene/src/utils/hooks/use-device-switch.d.ts +0 -29
- package/lib/fcr-ui-scene/src/utils/hooks/use-drag-position.d.ts +0 -21
- package/lib/fcr-ui-scene/src/utils/hooks/use-network.d.ts +0 -17
- package/lib/fcr-ui-scene/src/utils/hooks/use-pin-stream.d.ts +0 -4
- package/lib/fcr-ui-scene/src/utils/hooks/use-rnd-position.d.ts +0 -24
- package/lib/fcr-ui-scene/src/utils/hooks/use-store.d.ts +0 -1
- package/lib/fcr-ui-scene/src/utils/hooks/use-video-renderable.d.ts +0 -3
- package/lib/fcr-ui-scene/src/utils/hooks/use-z-index.d.ts +0 -8
- package/lib/fcr-ui-scene/src/utils/index.d.ts +0 -7
- package/lib/fcr-ui-scene/src/utils/launch-options-holder.d.ts +0 -10
- package/lib/fcr-ui-scene/src/utils/rtc-extensions.d.ts +0 -29
- package/lib/fcr-ui-scene/src/utils/short-name.d.ts +0 -1
- package/lib/fcr-ui-scene/src/utils/stream/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/utils/stream/state-keeper.d.ts +0 -18
- package/lib/fcr-ui-scene/src/utils/stream/struct.d.ts +0 -67
- package/lib/fcr-ui-scene/src/utils/vsd-pattern.d.ts +0 -1
- package/lib/fcr-ui-scene/src/utils/z-index-controller.d.ts +0 -9
- package/lib/fcr-ui-scene/tailwind.config.d.ts +0 -1
- package/lib/scene.bundle.js +0 -2
- /package/lib/{fcr-ui-scene/src/containers/video-player/tools-overlay.d.ts → electron/preload.d.ts} +0 -0
|
@@ -0,0 +1,993 @@
|
|
|
1
|
+
export declare const zhCn: {
|
|
2
|
+
fmt_role_host: string;
|
|
3
|
+
fmt_role_participant: string;
|
|
4
|
+
fmt_role_cohost: string;
|
|
5
|
+
fmt_participants_label_participants: string;
|
|
6
|
+
fmt_participants_label_popUp: string;
|
|
7
|
+
fmt_participants_window_title: string;
|
|
8
|
+
fmt_participants_button_muteAll: string;
|
|
9
|
+
fmt_participants_button_unmuteAll: string;
|
|
10
|
+
fmt_participants_button_meetingManagement: string;
|
|
11
|
+
fmt_participants_button_invite: string;
|
|
12
|
+
fmt_participants_member_button_mute: string;
|
|
13
|
+
fmt_participants_member_button_unmute: string;
|
|
14
|
+
fmt_participants_member_button_more: string;
|
|
15
|
+
fmt_attendies_options_muteall: string;
|
|
16
|
+
fmt_attendies_button_muteall: string;
|
|
17
|
+
fmt_attendies_button_cancel: string;
|
|
18
|
+
fmt_attendies_options_muteuponjoin: string;
|
|
19
|
+
fmt_attendies_options_allowunmute: string;
|
|
20
|
+
fmt_attendies_options_applyunmute: string;
|
|
21
|
+
fmt_attendies_button_request: string;
|
|
22
|
+
fmt_attendies_button_handsdown: string;
|
|
23
|
+
fmt_attendies_label_privatechat: string;
|
|
24
|
+
fmt_attendies_options_setfocus: string;
|
|
25
|
+
fmt_attendies_options_replacefixed: string;
|
|
26
|
+
fmt_attendies_options_fixfirst: string;
|
|
27
|
+
fmt_attendies_options_cancelfixed: string;
|
|
28
|
+
fmt_attendies_options_sethost: string;
|
|
29
|
+
fmt_attendies_options_revokecohost: string;
|
|
30
|
+
fmt_attendies_options_setcohost: string;
|
|
31
|
+
fmt_attendies_button_rename: string;
|
|
32
|
+
fmt_attendies_options_allowlocalrecord: string;
|
|
33
|
+
fmt_attendies_options_putinwaitingroom: string;
|
|
34
|
+
fmt_attendies_button_remove: string;
|
|
35
|
+
fmt_participants_options_allunmute: string;
|
|
36
|
+
fmt_participants_options_allmute: string;
|
|
37
|
+
fmt_modules_tips_mergevideo: string;
|
|
38
|
+
fmt_participant_label_Me: string;
|
|
39
|
+
fmt_attendies_button_serach: string;
|
|
40
|
+
fmt_attendies_tips_nopermission: string;
|
|
41
|
+
fmt_attendies_tab_meetingroom: string;
|
|
42
|
+
fmt_attendies_tab_waitingroom: string;
|
|
43
|
+
fmt_attendies_host_permission: string;
|
|
44
|
+
fmt_attendies_option_apply_all_audio: string;
|
|
45
|
+
fmt_attendies_status_item_ringing: string;
|
|
46
|
+
fmt_attendies_labels_setting_mine: string;
|
|
47
|
+
fmt_attendies_tips_setting_title: string;
|
|
48
|
+
fmt_attendies_tips_setting_media_co_host_unable: string;
|
|
49
|
+
fmt_attendies_tips_setting_media_host_unable: string;
|
|
50
|
+
fmt_attendies_tips_setting_make_host_info: string;
|
|
51
|
+
fmt_attendies_tips_setting_make_co_host_info: string;
|
|
52
|
+
fmt_attendies_tips_setting_require_unmute: string;
|
|
53
|
+
fmt_attendies_label_no_data: string;
|
|
54
|
+
fmt_attendies_tips_send_mute_all_on: string;
|
|
55
|
+
fmt_attendies_tips_mute_all_off: string;
|
|
56
|
+
fmt_attendies_tips_chat_off: string;
|
|
57
|
+
fmt_attendies_tips_apply_audio_title: string;
|
|
58
|
+
fmt_attendies_tips_apply_audio_info: string;
|
|
59
|
+
fmt_attendies_label_apply_audio_cancel: string;
|
|
60
|
+
fmt_attendies_tips_apply_video_title: string;
|
|
61
|
+
fmt_attendies_tips_apply_video_info: string;
|
|
62
|
+
fmt_attendies_label_apply_video_cancel: string;
|
|
63
|
+
fmt_attendies_tips_receive_mute_all: string;
|
|
64
|
+
fmt_attendies_tips_receive_mute_you: string;
|
|
65
|
+
fmt_attendies_tips_receive_video_off_you: string;
|
|
66
|
+
fmt_attendies_tips_mine_new_host: string;
|
|
67
|
+
fmt_attendies_tips_new_host: string;
|
|
68
|
+
fmt_attendies_tips_mine_new_co_host: string;
|
|
69
|
+
fmt_attendies_tips_new_co_host: string;
|
|
70
|
+
fmt_attendies_tips_invoke_co_host: string;
|
|
71
|
+
fmt_attendies_tips_revoke_co_host: string;
|
|
72
|
+
fmt_attendies_tips_not_co_host: string;
|
|
73
|
+
fmt_attendies_tips_operation_success: string;
|
|
74
|
+
fmt_attendies_tips_operation_failed: string;
|
|
75
|
+
fmt_attendies_tips_forbid_close: string;
|
|
76
|
+
fmt_attendies_tips_request_send: string;
|
|
77
|
+
fmt_additional_tips_cohostbeenrevoke: string;
|
|
78
|
+
fmt_additional_tips_cohostrevoke: string;
|
|
79
|
+
fmt_additional_tips_nolongercohost: string;
|
|
80
|
+
fmt_actionbar_tips_leavemeeting: string;
|
|
81
|
+
fmt_actionbar_button_plenarysession: string;
|
|
82
|
+
fmt_actionbar_tips_locked: string;
|
|
83
|
+
fmt_actionbar_tips_recheckleave: string;
|
|
84
|
+
fmt_aside_status_connecting: string;
|
|
85
|
+
fmt_actionbar_labels_endmeeting: string;
|
|
86
|
+
fmt_actionbar__button_leaveyes: string;
|
|
87
|
+
fmt_actionbar__button_leaveno: string;
|
|
88
|
+
fmt_actionbar_options_utoadjust: string;
|
|
89
|
+
fmt_actionbar_options_micautoadjust: string;
|
|
90
|
+
fmt_actionbar_label_reducenoise: string;
|
|
91
|
+
fmt_actionbar_tips_cameraturnon: string;
|
|
92
|
+
fmt_actionbar_button_accept: string;
|
|
93
|
+
fmt_actionbar_button_refuse: string;
|
|
94
|
+
fmt_actionbar_tips_unmute: string;
|
|
95
|
+
fmt_actionbar_tips_agreeturnon: string;
|
|
96
|
+
fmt_actionbar_options_Keepsilent: string;
|
|
97
|
+
fmt_statusbar_label_fullscreen: string;
|
|
98
|
+
fmt_statusbar_label_exitfullscreen: string;
|
|
99
|
+
fmt_statusbar_label_switchlayout: string;
|
|
100
|
+
fmt_statusbar_label_durationtime: string;
|
|
101
|
+
fmt_statusbar_label_layout: string;
|
|
102
|
+
fmt_statusbar_label_layoutsetting: string;
|
|
103
|
+
fmt_statusbar_opions_listontop: string;
|
|
104
|
+
fmt_statusbar_label_grid: string;
|
|
105
|
+
fmt_statusbar_label_customwating: string;
|
|
106
|
+
fmt_statusbar_status_coppied: string;
|
|
107
|
+
fmt_statusbar_tips_copyfailed: string;
|
|
108
|
+
fmt_statusbar_tips_onstreaming: string;
|
|
109
|
+
fmt_statusbar_label_hour: string;
|
|
110
|
+
fmt_statusbar_label_minutes: string;
|
|
111
|
+
fmt_statusbar_label_cloudrecordingpaused: string;
|
|
112
|
+
fmt_statusbar_label_networkpaused: string;
|
|
113
|
+
fmt_statusbar_label_unknown: string;
|
|
114
|
+
fmt_statusbar_label_millisecond: string;
|
|
115
|
+
fmt_toolbar_tips_expand: string;
|
|
116
|
+
fmt_toolbar_label_connectaudio: string;
|
|
117
|
+
fmt_toolbar_label_nodevice: string;
|
|
118
|
+
fmt_toolbar_label_camera: string;
|
|
119
|
+
fmt_toolbar_options_enablecamera: string;
|
|
120
|
+
fmt_toolbar_tips_nodevice: string;
|
|
121
|
+
fmt_toolbar_button_audioaccess: string;
|
|
122
|
+
fmt_toolbar_options_pcaudio: string;
|
|
123
|
+
fmt_toolbar_options_phoneaudio: string;
|
|
124
|
+
fmt_toolbar_options_switchaccessmode: string;
|
|
125
|
+
fmt_toolbar_button_assignnewhost: string;
|
|
126
|
+
fmt_toolbar_button_assignleave: string;
|
|
127
|
+
fmt_toolbar_button_end: string;
|
|
128
|
+
fmt_toolbar_button_leave: string;
|
|
129
|
+
fmt_toolbar_button_cancel: string;
|
|
130
|
+
fmt_popup_tips_endplenarymeeting: string;
|
|
131
|
+
fmt_popup_button_endmeeting: string;
|
|
132
|
+
fmt_popup_button_leavemeeting: string;
|
|
133
|
+
fmt_popup_button_cancel: string;
|
|
134
|
+
fmt_meetingroom_status_abnormal: string;
|
|
135
|
+
fmt_meetingroom_tips_disconnected: string;
|
|
136
|
+
fmt_meetingroom_join_fail: string;
|
|
137
|
+
fmt_meetingroom_tips_rejoin: string;
|
|
138
|
+
fmt_meetingroom_button_sure: string;
|
|
139
|
+
fmt_popup_tips_leavenow: string;
|
|
140
|
+
fmt_popup_label_expression: string;
|
|
141
|
+
fmt_popup_tips_alreadycopied: string;
|
|
142
|
+
fmt_popup_button_meetinginfor: string;
|
|
143
|
+
fmt_popup_button_activatewaitingroom: string;
|
|
144
|
+
fmt_popup_button_openvideo: string;
|
|
145
|
+
fmt_popup_button_drag: string;
|
|
146
|
+
fmt_popup_label_muted: string;
|
|
147
|
+
fmt_popup_label_turnedon: string;
|
|
148
|
+
fmt_popup_label_meetingduration: string;
|
|
149
|
+
fmt_leave_tips_removetip: string;
|
|
150
|
+
fmt_leave_tips_classover: string;
|
|
151
|
+
fmt_toolbar_label_receiver: string;
|
|
152
|
+
fmt_toolbar_label_me: string;
|
|
153
|
+
fmt_toolbar_label_ear_phone: string;
|
|
154
|
+
fmt_toolbar_label_confirm: string;
|
|
155
|
+
fmt_toolbar_label_open: string;
|
|
156
|
+
fmt_toolbar_label_unlock: string;
|
|
157
|
+
fmt_toolbar_tips_microphone_open: string;
|
|
158
|
+
fmt_toolbar_tips_microphone_close: string;
|
|
159
|
+
fmt_toolbar_tips_camera_open: string;
|
|
160
|
+
fmt_toolbar_tips_camera_close: string;
|
|
161
|
+
fmt_toolbar_tips_host_forbid_open_mic: string;
|
|
162
|
+
fmt_toolbar_tips_host_forbid_open_camera: string;
|
|
163
|
+
fmt_toolbar_details_info_locked: string;
|
|
164
|
+
fmt_toolbar_details_room_locked: string;
|
|
165
|
+
fmt_toolbar_details_room_locked_tip: string;
|
|
166
|
+
fmt_toolbar_tips_details_unlock_meeting: string;
|
|
167
|
+
fmt_toolbar_tips_actions_route_earphone: string;
|
|
168
|
+
fmt_toolbar_tips_actions_route_receiver: string;
|
|
169
|
+
fmt_toolbar_tips_actions_route_speaker: string;
|
|
170
|
+
fmt_toolbar_tips_leave_room_lock_title: string;
|
|
171
|
+
fmt_toolbar_tips_leave_room_lock_info: string;
|
|
172
|
+
fmt_toolbar_leave_room_end_submit: string;
|
|
173
|
+
fmt_toolbar_tips_leave_room_end_cancel: string;
|
|
174
|
+
fmt_toolbar_tips_leave_host_select_submit_tips: string;
|
|
175
|
+
fmt_toolbar_leave_confirm_dialog_kick_title: string;
|
|
176
|
+
fmt_toolbar_tips_leave_confirm_dialog_kick_info: string;
|
|
177
|
+
fmt_toolbar_leave_confirm_dialog_submit: string;
|
|
178
|
+
fmt_toolbar_tips_leave_confirm_dialog_end_title: string;
|
|
179
|
+
fmt_toolbar_tips_leave_confirm_dialog_end_info: string;
|
|
180
|
+
fmt_additional_tips_cameraturnon: string;
|
|
181
|
+
fmt_additional_button_accept: string;
|
|
182
|
+
fmt_additional_button_refuse: string;
|
|
183
|
+
fmt_additional_tips_unmute: string;
|
|
184
|
+
fmt_additional_tips_agreeturnon: string;
|
|
185
|
+
fmt_additional_options_Keepsilent: string;
|
|
186
|
+
fmt_actionbar_button_enable: string;
|
|
187
|
+
fmt_actionbar_button_disable: string;
|
|
188
|
+
fmt_actionbar_tips_cloudrecording_already: string;
|
|
189
|
+
fmt_actionbar_tips_joinroom_noaudio: string;
|
|
190
|
+
fmt_actionbar_tips_canthear: string;
|
|
191
|
+
fmt_actionbar_button_continue: string;
|
|
192
|
+
fmt_actionbar_option_connectaudio: string;
|
|
193
|
+
fmt_actionbar_label_dialsip: string;
|
|
194
|
+
fmt_actionbar_tips_hidenonvideo: string;
|
|
195
|
+
fmt_popup_copywrite_stopstreamingnow: string;
|
|
196
|
+
fmt_popup_options_confirmstop: string;
|
|
197
|
+
fmt_popup_options_placedbottom: string;
|
|
198
|
+
fmt_popup_options_placedtop: string;
|
|
199
|
+
fmt_broadcast_tips_righturl: string;
|
|
200
|
+
fmt_broadcast_tips_anyonewatch: string;
|
|
201
|
+
fmt_broadcast_tips_streamingwebpage: string;
|
|
202
|
+
fmt_broadcast_tips_rightstreamingwebpage: string;
|
|
203
|
+
fmt_broadcast_tips_initiatefailed: string;
|
|
204
|
+
fmt_broadcast_tips_alreadybroadcasting: string;
|
|
205
|
+
fmt_additional_tips_startstreamingfailed: string;
|
|
206
|
+
fmt_additional_tips_updatelayoutfailed: string;
|
|
207
|
+
fmt_additional_tips_stoplivefailed: string;
|
|
208
|
+
fmt_actionbar_livestreaming_option_livenow: string;
|
|
209
|
+
fmt_actionbar_livestreaming_option_customlive: string;
|
|
210
|
+
fmt_actionbar_livestreaming_button_stoplive: string;
|
|
211
|
+
fmt_actionbar__livestreaming_labels_live: string;
|
|
212
|
+
fmt_broadcast_text_copyurl: string;
|
|
213
|
+
fmt_broadcast_livestream_stopped: string;
|
|
214
|
+
fmt_broadcast_livestream_merge: string;
|
|
215
|
+
fmt_device_label_audio_mute: string;
|
|
216
|
+
fmt_device_label_audio_unmute: string;
|
|
217
|
+
fmt_device_label_video_start: string;
|
|
218
|
+
fmt_device_label_video_stop: string;
|
|
219
|
+
fmt_device_label_audio_list_selectMicrophone: string;
|
|
220
|
+
fmt_device_label_audio_list_selectSpeaker: string;
|
|
221
|
+
fmt_device_label_audio_list_leaveComputerAudio: string;
|
|
222
|
+
fmt_device_label_audio_list_switchToPhoneCall: string;
|
|
223
|
+
fmt_device_label_audio_list_testAudioDevice: string;
|
|
224
|
+
fmt_device_label_audio_list_moreAudioSettings: string;
|
|
225
|
+
fmt_device_label_video_list_selectCamera: string;
|
|
226
|
+
fmt_device_label_video_list_selectVirtualBackground: string;
|
|
227
|
+
fmt_device_label_video_list_selectVideoFilter: string;
|
|
228
|
+
fmt_device_label_video_list_moreVideoSettings: string;
|
|
229
|
+
fmt_modules_tips_notapplicate: string;
|
|
230
|
+
fmt_device_button_signout: string;
|
|
231
|
+
fmt_device_statues_opend: string;
|
|
232
|
+
fmt_device_statues_closed: string;
|
|
233
|
+
fmt_device_options_whitening: string;
|
|
234
|
+
fmt_device_options_smoother: string;
|
|
235
|
+
fmt_device_options_brighter: string;
|
|
236
|
+
fmt_device_tips_videoeffectson: string;
|
|
237
|
+
fmt_device_labels_specialeffects: string;
|
|
238
|
+
fmt_device_options_videojoin: string;
|
|
239
|
+
fmt_modules_labels_devicesettings: string;
|
|
240
|
+
fmt_status_label_Qualitystatistics: string;
|
|
241
|
+
fmt_status_label_saysomething: string;
|
|
242
|
+
fmt_status_label_stoprecord: string;
|
|
243
|
+
fmt_status_label_rotation: string;
|
|
244
|
+
fmt_sip_button_unmute: string;
|
|
245
|
+
fmt_sip_button_opencamera: string;
|
|
246
|
+
fmt_sip_button_topup: string;
|
|
247
|
+
fmt_sip_button_rename: string;
|
|
248
|
+
fmt_sip_button_remove: string;
|
|
249
|
+
fmt_security_options_allowunmute: string;
|
|
250
|
+
fmt_device_label_inspection_user_name: string;
|
|
251
|
+
fmt_device_label_inspection_mirror_mode: string;
|
|
252
|
+
fmt_device_inspection_camera_on: string;
|
|
253
|
+
fmt_device_inspection_turn_on_camera: string;
|
|
254
|
+
fmt_device_label_inspection_switch_camera: string;
|
|
255
|
+
fmt_device_label_inspection_speaker_on: string;
|
|
256
|
+
fmt_device_inspection_turn_on_speaker: string;
|
|
257
|
+
fmt_device_inspection_start_meeting: string;
|
|
258
|
+
fmt_device_label_inspection_audio_route_speaker: string;
|
|
259
|
+
fmt_device_label_inspection_audio_route_receiver: string;
|
|
260
|
+
fmt_device_inspection_audio_route_headset: string;
|
|
261
|
+
fmt_device_inspection_audio_route_mute: string;
|
|
262
|
+
fmt_device_enabled: string;
|
|
263
|
+
fmt_device_disable: string;
|
|
264
|
+
fmt_device_lightening: string;
|
|
265
|
+
fmt_device_smoothness: string;
|
|
266
|
+
fmt_device_redness: string;
|
|
267
|
+
fmt_device_reset: string;
|
|
268
|
+
fmt_device_beauty_camera_open_remind: string;
|
|
269
|
+
fmt_device_other_watch_me: string;
|
|
270
|
+
fmt_device_i_watch_self: string;
|
|
271
|
+
fmt_device_enable_beauty_filter: string;
|
|
272
|
+
fmt_device_disable_beauty_filter: string;
|
|
273
|
+
fmt_device_beauty_turnoff: string;
|
|
274
|
+
fmt_device_remind_property_title: string;
|
|
275
|
+
fmt_device_remind_property_content: string;
|
|
276
|
+
fmt_device_remind_beauty_open_camera_title: string;
|
|
277
|
+
fmt_device_remind_beauty_open_camera_content: string;
|
|
278
|
+
fmt_device_confirm_enable: string;
|
|
279
|
+
fmt_device_mirroring_enable: string;
|
|
280
|
+
fmt_device_not_yet: string;
|
|
281
|
+
fmt_device_beauty_on: string;
|
|
282
|
+
fmt_device_options_redness: string;
|
|
283
|
+
fmt_layout_label_speaker: string;
|
|
284
|
+
fmt_layout_label_gallery: string;
|
|
285
|
+
fmt_uimanager_labels_roomname: string;
|
|
286
|
+
fmt_uimanager_labels_blank: string;
|
|
287
|
+
fmt_uimanager_labels_Switchview: string;
|
|
288
|
+
fmt_uimanager_labels_sharing: string;
|
|
289
|
+
fmt_uimanager_button_returntocontent: string;
|
|
290
|
+
fmt_uimanager_labels_screen: string;
|
|
291
|
+
fmt_uimanager_labels_whiteboard: string;
|
|
292
|
+
fmt_uimanager_tips_passwordcopied: string;
|
|
293
|
+
fmt_uimanager_labels_wirednetwork: string;
|
|
294
|
+
fmt_uimanager_option_flipleaf: string;
|
|
295
|
+
fmt_uimanager_option_Reset: string;
|
|
296
|
+
fmt_uimanager_option_Cameraview: string;
|
|
297
|
+
fmt_uimanager_option_Selfieview: string;
|
|
298
|
+
fmt_uimanager_tips_urmuted: string;
|
|
299
|
+
fmt_uimanager_tips_urturnedoff: string;
|
|
300
|
+
fmt_uimanager_tips_norightsvideo: string;
|
|
301
|
+
fmt_uimanager_tips_norightsaudio: string;
|
|
302
|
+
fmt_uimanager_tips_inviteturnon: string;
|
|
303
|
+
fmt_uimanager_tips_Remove: string;
|
|
304
|
+
fmt_uimanager_tips_designedas: string;
|
|
305
|
+
fmt_uimanager_tips_userleaft: string;
|
|
306
|
+
fmt_uimanager_labels_Setas: string;
|
|
307
|
+
fmt_uimanager_tips_allmuted: string;
|
|
308
|
+
fmt_uimanager_tips_meetinglocked: string;
|
|
309
|
+
fmt_uimanager_tips_meetingunlocked: string;
|
|
310
|
+
fmt_uimanager_labels_designate: string;
|
|
311
|
+
fmt_uimanager_labels_Becoming: string;
|
|
312
|
+
fmt_uimanager_tips_exceed: string;
|
|
313
|
+
fmt_uimanager_labels_Clickselect: string;
|
|
314
|
+
fmt_uimanager_button_determine: string;
|
|
315
|
+
fmt_uimanager_button_Meetnow: string;
|
|
316
|
+
fmt_uimanager_option_dualchannel: string;
|
|
317
|
+
fmt_uimanager_option_Sharedmono: string;
|
|
318
|
+
fmt_uimanager_option_Monochannel: string;
|
|
319
|
+
fmt_uimanager_option_Stereo: string;
|
|
320
|
+
fmt_uimanager_option_Improvefluency: string;
|
|
321
|
+
fmt_uimanager_option_Fluencypriority: string;
|
|
322
|
+
fmt_uimanager_option_Movebottom: string;
|
|
323
|
+
fmt_uimanager_option_Movetop: string;
|
|
324
|
+
fmt_uimanager_labels_Application: string;
|
|
325
|
+
fmt_uimanager_tips_ilock: string;
|
|
326
|
+
fmt_uimanager_button_close: string;
|
|
327
|
+
fmt_uimanager_option_popwindow: string;
|
|
328
|
+
fmt_uimanager_option_mergeview: string;
|
|
329
|
+
fmt_uimanager_labels_deviceselect: string;
|
|
330
|
+
fmt_uimanager_labels_mirror: string;
|
|
331
|
+
fmt_modules_labels_speaking: string;
|
|
332
|
+
fmt_modules_status_nowspeaking: string;
|
|
333
|
+
fmt_uimanager_window_un_pin: string;
|
|
334
|
+
fmt_uimanager_window_pin_success: string;
|
|
335
|
+
fmt_uimanager_window_un_pin_success: string;
|
|
336
|
+
fmt_uimanager_window_pin_error_hide_mine: string;
|
|
337
|
+
fmt_uimanager_window_pin_error_hide_no_video: string;
|
|
338
|
+
fmt_uimanager_follow_pc: string;
|
|
339
|
+
fmt_chat_label_chat: string;
|
|
340
|
+
fmt_chat_window_title: string;
|
|
341
|
+
fmt_chat_setting_privilege: string;
|
|
342
|
+
fmt_chat_setting_privilege_list_no: string;
|
|
343
|
+
fmt_chat_setting_privilege_list_everyone: string;
|
|
344
|
+
fmt_chat_window_position_popup: string;
|
|
345
|
+
fmt_chat_window_position_merge: string;
|
|
346
|
+
fmt_chat_tips_exceedlimit: string;
|
|
347
|
+
fmt_chat_button_muteall: string;
|
|
348
|
+
fmt_chat_tips_Networkconnect: string;
|
|
349
|
+
fmt_chat_tips_selectchat: string;
|
|
350
|
+
fmt_chat_tips_permissionchange: string;
|
|
351
|
+
fmt_chat_option_onlypublic: string;
|
|
352
|
+
fmt_chat_option_onlyprivate: string;
|
|
353
|
+
fmt_chat_tips_newmessage: string;
|
|
354
|
+
fmt_chat_button_latestlocation: string;
|
|
355
|
+
fmt_chat_tips_freechat: string;
|
|
356
|
+
fmt_chat_tips_onlypublic: string;
|
|
357
|
+
fmt_chat_tips_muteroom: string;
|
|
358
|
+
fmt_chat_labels_sendto: string;
|
|
359
|
+
fmt_chat_option_all: string;
|
|
360
|
+
fmt_chat_tips_selecthost: string;
|
|
361
|
+
fmt_chat_tips_nodata: string;
|
|
362
|
+
fmt_chats_label_from: string;
|
|
363
|
+
fmt_chats_label_privatechat: string;
|
|
364
|
+
fmt_chat_options_Freechat: string;
|
|
365
|
+
fmt_chat_options_Forbidchat: string;
|
|
366
|
+
fmt_chat_options_Notapplicable: string;
|
|
367
|
+
fmt_chat_label_Chatmanagement: string;
|
|
368
|
+
fmt_chat_button_MultipleChoice: string;
|
|
369
|
+
fmt_chat_tips_otherpartyleave: string;
|
|
370
|
+
fmt_chat_options_onlyprivatechat: string;
|
|
371
|
+
fmt_chat_tips_chatpermissionchange: string;
|
|
372
|
+
fmt_pairicipant_tips_cohostbeenrevoke: string;
|
|
373
|
+
fmt_pairicipant_tips_cohostrevoke: string;
|
|
374
|
+
fmt_pairicipant_tips_nolongercohost: string;
|
|
375
|
+
fmt_pairicipant_label_Now: string;
|
|
376
|
+
fmt_pairicipant_tips_notempty: string;
|
|
377
|
+
fmt_chat_to_label_to: string;
|
|
378
|
+
fmt_chat_label_bubbletip: string;
|
|
379
|
+
fmt_attendies_label_chatpermisson: string;
|
|
380
|
+
fmt_chate_tips_leave: string;
|
|
381
|
+
fmt_chat_label_meetingchat: string;
|
|
382
|
+
fmt_chate_tips_wordoutrange: string;
|
|
383
|
+
fmt_chat_txt_max_number: string;
|
|
384
|
+
fmt_chat_private_tips: string;
|
|
385
|
+
fmt_chat_send_to: string;
|
|
386
|
+
fmt_chat_copy_to_clipboard: string;
|
|
387
|
+
fmt_chat_private_hosts: string;
|
|
388
|
+
fmt_chat_private_permission_changes: string;
|
|
389
|
+
fmt_chat_status_call_in: string;
|
|
390
|
+
fmt_chat_room_chat_limit: string;
|
|
391
|
+
fmt_chat_private_to_me: string;
|
|
392
|
+
fmt_chat_enable_limit: string;
|
|
393
|
+
fmt_chat_say_something: string;
|
|
394
|
+
fmt_chat_send_cohost: string;
|
|
395
|
+
fmt_chat_setting_value: string;
|
|
396
|
+
fmt_chat_send_open: string;
|
|
397
|
+
fmt_chat_send_only_open: string;
|
|
398
|
+
fmt_chat_send_only_cohost: string;
|
|
399
|
+
fmt_chat_send_limit: string;
|
|
400
|
+
fmt_chat_to_me: string;
|
|
401
|
+
fmt_chat_sending_to: string;
|
|
402
|
+
fmt_chat_to_you: string;
|
|
403
|
+
fmt_send_msg_max_length: string;
|
|
404
|
+
fmt_networkstatus_state_disconnect: string;
|
|
405
|
+
fmt_open_chat_permission: string;
|
|
406
|
+
fmt_chat_rooms_are_enable: string;
|
|
407
|
+
fmt_chat_room_mute_is_enabled: string;
|
|
408
|
+
fmt_chat_only_open: string;
|
|
409
|
+
fmt_chat_only_host_cohost: string;
|
|
410
|
+
fmt_allow_white_board_label_edit: string;
|
|
411
|
+
fmt_chat_copy_me_to: string;
|
|
412
|
+
fmt_chat_copy_from_to: string;
|
|
413
|
+
fmt_chat_copy_me_to_all: string;
|
|
414
|
+
fmt_chat_copy_from_to_all: string;
|
|
415
|
+
fmt_chat_back_to_the_latest_location: string;
|
|
416
|
+
fmt_chat_new_unread_messages: string;
|
|
417
|
+
fmt_chat_unread_messages: string;
|
|
418
|
+
fmt_chat_private_to_user: string;
|
|
419
|
+
fmt_chat_network_connect: string;
|
|
420
|
+
fmt_chat_setting_title: string;
|
|
421
|
+
fmt_chat_setting_bubble_tips: string;
|
|
422
|
+
fmt_chat_big_bubble: string;
|
|
423
|
+
fmt_chat_small_bubble: string;
|
|
424
|
+
fmt_chat_label_enter_message: string;
|
|
425
|
+
fmt_screenshare_window_tab_basic: string;
|
|
426
|
+
fmt_screenshare_window_tab_advanced: string;
|
|
427
|
+
fmt_screenshare_window_button_start: string;
|
|
428
|
+
fmt_screenshare_window_checkbox_shareAudio: string;
|
|
429
|
+
fmt_screenshare_controlbar_button_stop: string;
|
|
430
|
+
fmt_screenshare_controlbar_button_microphone: string;
|
|
431
|
+
fmt_screenshare_controlbar_button_camera: string;
|
|
432
|
+
fmt_screenshare_controlbar_button_security: string;
|
|
433
|
+
fmt_screenshare_controlbar_button_participant: string;
|
|
434
|
+
fmt_screenshare_controlbar_button_newScreenshare: string;
|
|
435
|
+
fmt_screenshare_controlbar_button_more: string;
|
|
436
|
+
fmt_screenshare_controlbar_button_more_chat: string;
|
|
437
|
+
fmt_screenshare_controlbar_button_more_cloudRecord: string;
|
|
438
|
+
fmt_screenshare_controlbar_button_more_live: string;
|
|
439
|
+
fmt_screenshare_controlbar_button_more_setting: string;
|
|
440
|
+
fmt_screenshare_controlbar_status_sharing: string;
|
|
441
|
+
fmt_screenshare_controlbar_security_list_lock: string;
|
|
442
|
+
fmt_screenshare_controlbar_security_list_participant_screenshare: string;
|
|
443
|
+
fmt_screenshare_controlbar_security_list_participant_chat: string;
|
|
444
|
+
fmt_screenshare_controlbar_security_list_participant_unmute: string;
|
|
445
|
+
fmt_screenshare_controlbar_security_list_participant_startVideo: string;
|
|
446
|
+
fmt_screenshare_controlbar_security_list_participant_changeName: string;
|
|
447
|
+
fmt_screenshare_controlbar_security_list_participantManagement: string;
|
|
448
|
+
fmt_screenshare_button_chosecontent: string;
|
|
449
|
+
fmt_screenshare_tips_newsharing: string;
|
|
450
|
+
fmt_screenshare_label_screenshare: string;
|
|
451
|
+
fmt_screenshare_button_sharewhiteboard: string;
|
|
452
|
+
fmt_screenshare_button_chosewhiteboard: string;
|
|
453
|
+
fmt_screenshare_options_alreadyopend: string;
|
|
454
|
+
fmt_screenshare_options_allow: string;
|
|
455
|
+
fmt_screenshare_options_editable: string;
|
|
456
|
+
fmt_screenshare_button_disableshare: string;
|
|
457
|
+
fmt_screenshare_label_application: string;
|
|
458
|
+
fmt_screenshare_tips_imsharing: string;
|
|
459
|
+
fmt_screenshare_tips_smonesharing: string;
|
|
460
|
+
fmt_screenshare_tips_alreadyopened: string;
|
|
461
|
+
fmt_screenshare_button_stopshare: string;
|
|
462
|
+
fmt_screenshare_button_localrecordingmiss: string;
|
|
463
|
+
fmt_screenshare_tips_hostprohibits: string;
|
|
464
|
+
fmt_screenshare_tips_enablecollection: string;
|
|
465
|
+
fmt_screenshare_tips_hostprohibitssharing: string;
|
|
466
|
+
fmt_screenshare_tips_faild_reselect: string;
|
|
467
|
+
fmt_screenshare_tips_faild_screenselect: string;
|
|
468
|
+
fmt_screenshare_tips_faild_nopermission: string;
|
|
469
|
+
fmt_screenshare_tips_faild_restrict: string;
|
|
470
|
+
fmt_screenshare_tips_faild_alreadysharing: string;
|
|
471
|
+
fmt_screenshare_options_allowshare: string;
|
|
472
|
+
fmt_screenshare_tips_notavailable: string;
|
|
473
|
+
fmt_screenshare_whiteboard_button_exitdrawing: string;
|
|
474
|
+
fmt_screenshare_options_enableedit: string;
|
|
475
|
+
fmt_actionbar_screenshare_option_selectcontent: string;
|
|
476
|
+
fmt_actionbar_screenshare_labels_others: string;
|
|
477
|
+
fmt_actionbar_screenshare_tips_restrictshare: string;
|
|
478
|
+
fmt_modules_labels_sharing: string;
|
|
479
|
+
fmt_share_tips_othsersharing: string;
|
|
480
|
+
fmt_share_tips_stopothersharing: string;
|
|
481
|
+
fmt_share_buttons_contiueshare: string;
|
|
482
|
+
fmt_share_tips_otherssharing: string;
|
|
483
|
+
fmt_share_tips_sharingdisabled: string;
|
|
484
|
+
fmt_share_tips_sharingprohibit_byhost: string;
|
|
485
|
+
fmt_share_tips_sharingprohibit_bycohost: string;
|
|
486
|
+
fmt_share_tips_sharingprohibit_gotit: string;
|
|
487
|
+
fmt_share_tips_othersharingboard: string;
|
|
488
|
+
fmt_share_tips_boardonly: string;
|
|
489
|
+
fmt_share_tips_sharingscreen: string;
|
|
490
|
+
fmt_share_tips_willstopsharingscreen: string;
|
|
491
|
+
fmt_share_label_saysomething: string;
|
|
492
|
+
fmt_share_label_canttalk: string;
|
|
493
|
+
fmt_screenshare_screen_and_board: string;
|
|
494
|
+
fmt_screenshare_editable_board: string;
|
|
495
|
+
fmt_screenshare: string;
|
|
496
|
+
fmt_screenshare_button_newshare: string;
|
|
497
|
+
fmt_screenshare_button_stopsharing: string;
|
|
498
|
+
fmt_screenshare_status_sharing: string;
|
|
499
|
+
fmt_screenshare_button_replace: string;
|
|
500
|
+
fmt_screenshare_button_start: string;
|
|
501
|
+
fmt_screenshare_button_stop: string;
|
|
502
|
+
fmt_screenshare_stop_share_board: string;
|
|
503
|
+
fmt_screenshare_stop_share_screen: string;
|
|
504
|
+
fmt_screenshare_no_permission_open_board: string;
|
|
505
|
+
fmt_screenshare_administrator_disables_share_screen_board: string;
|
|
506
|
+
fmt_screenshare_no_permission_close_board: string;
|
|
507
|
+
fmt_screenshare_clash_board_remind_title: string;
|
|
508
|
+
fmt_screenshare_clash_board_remind_content: string;
|
|
509
|
+
fmt_screenshare_clash_screen_share_remind_title: string;
|
|
510
|
+
fmt_screenshare_clash_screen_share_remind_content: string;
|
|
511
|
+
fmt_screenshare_clash_screen_share_remind_content_stop_board: string;
|
|
512
|
+
fmt_screenshare_opposite_side: string;
|
|
513
|
+
fmt_screenshare_continue_share: string;
|
|
514
|
+
fmt_screenshare_cohost_can_not_share_remind: string;
|
|
515
|
+
fmt_screenshare_pop_more: string;
|
|
516
|
+
fmt_screenshare_room_new_screen_share: string;
|
|
517
|
+
fmt_screenshare_room_speaker_spotlight_username: string;
|
|
518
|
+
fmt_screenshare_stop_other_screen_share: string;
|
|
519
|
+
fmt_screenshare_not_open_yet: string;
|
|
520
|
+
fmt_screenshare_audio_des: string;
|
|
521
|
+
fmt_screenshare_audio_on: string;
|
|
522
|
+
fmt_screenshare_audio_off: string;
|
|
523
|
+
fmt_screenshare_stop_screen_share: string;
|
|
524
|
+
fmt_screenshare_disablelayout_while_share: string;
|
|
525
|
+
fmt_screenshare_start: string;
|
|
526
|
+
fmt_screenshare_stop_your_share: string;
|
|
527
|
+
fmt_screenshare_tips_share_audio_micon: string;
|
|
528
|
+
fmt_screenshare_tips_share_audio_turnonmic: string;
|
|
529
|
+
fmt_screenshare_button_giveup_shareaudio: string;
|
|
530
|
+
fmt_screenshare_button_confirm_shareaudio: string;
|
|
531
|
+
fmt_screenshare_tips_sharing_audio_keep_on: string;
|
|
532
|
+
fmt_screenshare_tips_sharing_audio_cancel: string;
|
|
533
|
+
fmt_screenshare_tips_sharing_audio_confirm: string;
|
|
534
|
+
fmt_screenshare_tips_sharing_disabled_tocontact: string;
|
|
535
|
+
fmt_screenshare_tips_unenabled: string;
|
|
536
|
+
fmt_screenshare_whiteboard_options_changetheme: string;
|
|
537
|
+
fmt_screenshare_tips_alreadyoriginalsize: string;
|
|
538
|
+
fmt_screenshare_lables_originalsize: string;
|
|
539
|
+
fmt_screenshare_whiteboard_tips_alreadyadaptionsize: string;
|
|
540
|
+
fmt_screenshare_lables_adaptionlsize: string;
|
|
541
|
+
fmt_screenshare_whiteboard_tips_alreadymaximumsize: string;
|
|
542
|
+
fmt_screenshare_whiteboard_button_enlarge: string;
|
|
543
|
+
fmt_screenshare_whiteboard_tips_alreadyminumumsize: string;
|
|
544
|
+
fmt_screenshare_whiteboard_button_narrow: string;
|
|
545
|
+
fmt_screenshare_whiteboard_tips_someonesharing: string;
|
|
546
|
+
fmt_screenshare_whiteboard_tips_reconnecting: string;
|
|
547
|
+
fmt_screenshare_whiteboard_tips_reconnectinghold: string;
|
|
548
|
+
fmt_screenshare_whiteboard_tips_couldreopen: string;
|
|
549
|
+
fmt_screenshare_whiteboard_tips_reopening: string;
|
|
550
|
+
fmt_screenshare_whiteboard_tips_continuewaiting: string;
|
|
551
|
+
fmt_screenshare_whiteboard_button_dontwait: string;
|
|
552
|
+
fmt_screenshare_whiteboard_tips_defaultwhiteboard: string;
|
|
553
|
+
fmt_screenshare_whiteboard_tips_blackboard: string;
|
|
554
|
+
fmt_screenshare_whiteboard_lables_wallpoaster: string;
|
|
555
|
+
fmt_screenshare_whiteboard_tips_righclick: string;
|
|
556
|
+
fmt_screenshare_whiteboard_button_setcolor: string;
|
|
557
|
+
fmt_screenshare_whiteboard_button_eraser: string;
|
|
558
|
+
fmt_screenshare_whiteboard_button_empty: string;
|
|
559
|
+
fmt_screenshare_whiteboard_button_additionaltools: string;
|
|
560
|
+
fmt_screenshare_whiteboard_button_withdrwa: string;
|
|
561
|
+
fmt_screenshare_whiteboard_button_forward: string;
|
|
562
|
+
fmt_screenshare_whiteboard_button_paintbrush: string;
|
|
563
|
+
fmt_screenshare_whiteboard_button_cutting: string;
|
|
564
|
+
fmt_screenshare_whiteboard_button_screenshot: string;
|
|
565
|
+
fmt_screenshare_whiteboard_options_hideshot: string;
|
|
566
|
+
fmt_screenshare_whiteboard_button_shape: string;
|
|
567
|
+
fmt_screenshare_whiteboard_button_laserpen: string;
|
|
568
|
+
fmt_screenshare_whiteboard_button_boxselection: string;
|
|
569
|
+
fmt_screenshare_whiteboard_button_text: string;
|
|
570
|
+
fmt_screenshare_whiteboard_button_dragdrop: string;
|
|
571
|
+
fmt_screenshare_whiteboard_button_savescript: string;
|
|
572
|
+
fmt_screenshare_whiteboard_button_spread: string;
|
|
573
|
+
fmt_screenshare_whiteboard_tips_downloading: string;
|
|
574
|
+
fmt_screenshare_whiteboard_tips_savedsuccessfully: string;
|
|
575
|
+
fmt_screenshare_whiteboard_tips_failed: string;
|
|
576
|
+
fmt_screenshare_whiteboard_tips_stoppedboard: string;
|
|
577
|
+
fmt_screenshare_whiteboard_lables_newshare: string;
|
|
578
|
+
fmt_screenshare_whiteboard_button_gotit: string;
|
|
579
|
+
fmt_screenshare_whiteboard_tips_stopped: string;
|
|
580
|
+
fmt_screenshare_whiteboard_tips_cannotjoin: string;
|
|
581
|
+
fmt_screenshare_whiteboard_tips_alreadyopend: string;
|
|
582
|
+
fmt_screenshare_whiteboard_tips_stop_continue: string;
|
|
583
|
+
fmt_whiteboard_labels_colour: string;
|
|
584
|
+
fmt_share_options_smallpen: string;
|
|
585
|
+
fmt_share_options_midpen: string;
|
|
586
|
+
fmt_share_options_bigpen: string;
|
|
587
|
+
fmt_share_options_yellow: string;
|
|
588
|
+
fmt_share_options_blue: string;
|
|
589
|
+
fmt_share_options_purple: string;
|
|
590
|
+
fmt_share_options_green: string;
|
|
591
|
+
fmt_share_options_whiteboard: string;
|
|
592
|
+
fmt_whiteboard_save_success: string;
|
|
593
|
+
fmt_whiteboard_save_failure: string;
|
|
594
|
+
fmt_whiteboard_tips_two_finger_move: string;
|
|
595
|
+
fmt_whiteboard_tips_expanded: string;
|
|
596
|
+
fmt_whiteboard_tips_collapsed: string;
|
|
597
|
+
fmt_whiteboard_tips_selector: string;
|
|
598
|
+
fmt_whiteboard_tips_text: string;
|
|
599
|
+
fmt_whiteboard_tips_rectangle: string;
|
|
600
|
+
fmt_whiteboard_tips_triangle: string;
|
|
601
|
+
fmt_whiteboard_tips_circle: string;
|
|
602
|
+
fmt_whiteboard_label_pentagon: string;
|
|
603
|
+
fmt_whiteboard_label_prismatic: string;
|
|
604
|
+
fmt_whiteboard_tips_straight: string;
|
|
605
|
+
fmt_whiteboard_tips_arrow: string;
|
|
606
|
+
fmt_whiteboard_tips_change_color: string;
|
|
607
|
+
fmt_whiteboard_tips_change_bg: string;
|
|
608
|
+
fmt_whiteboard_tips_change_bg_white: string;
|
|
609
|
+
fmt_whiteboard_tips_change_bg_black: string;
|
|
610
|
+
fmt_whiteboard_tips_change_bg_green: string;
|
|
611
|
+
fmt_whiteboard_tips_stop_share: string;
|
|
612
|
+
fmt_whiteboard_tips_start_share: string;
|
|
613
|
+
fmt_whiteboard_tips_share_failed: string;
|
|
614
|
+
fmt_whiteboard_tips_stop_share_failed: string;
|
|
615
|
+
fmt_whiteboard_tips_start_share_failed: string;
|
|
616
|
+
fmt_whiteboard_tips_download_permission_denied: string;
|
|
617
|
+
fmt_whiteboard_dialog_share_stopped_message_host: string;
|
|
618
|
+
fmt_whiteboard_dialog_share_stopped_message_cohost: string;
|
|
619
|
+
fmt_screenshare_whiteboard_option_disablesharing: string;
|
|
620
|
+
fmt_share_options_blackboard: string;
|
|
621
|
+
fmt_share_options_chalkboard: string;
|
|
622
|
+
fmt_share_label_shareboard: string;
|
|
623
|
+
fmt_information_label_clicktocopy: string;
|
|
624
|
+
fmt_information_tips_beencopied: string;
|
|
625
|
+
fmt_information_tips_numbercopyfailed: string;
|
|
626
|
+
fmt_information_options_sharedetail: string;
|
|
627
|
+
fmt_meetingInfo_label: string;
|
|
628
|
+
fmt_meetingInfo_window_title: string;
|
|
629
|
+
fmt_meetingInfo_window_info_meetingID: string;
|
|
630
|
+
fmt_meetingInfo_window_info_meetingID_copy: string;
|
|
631
|
+
fmt_sharing_button_download: string;
|
|
632
|
+
fmt_invitation_tips_invitationfailed: string;
|
|
633
|
+
fmt_invitation_tips_invitation: string;
|
|
634
|
+
fmt_meetinginfo_tips_lockedroom: string;
|
|
635
|
+
fmt_meetinginfo_tips_nobycanjoin: string;
|
|
636
|
+
fmt_meetinginfo_label_code: string;
|
|
637
|
+
fmt_meetinginfo_details_code_none: string;
|
|
638
|
+
fmt_meetinginfo_my_name_label: string;
|
|
639
|
+
fmt_meetinginfo_room_topic: string;
|
|
640
|
+
fmt_meetinginfo_duration_reservation: string;
|
|
641
|
+
fmt_meetinginfo_dialog_title_meeting_info: string;
|
|
642
|
+
fmt_meetinginfo_duration_1: string;
|
|
643
|
+
fmt_meetinginfo_duration_2: string;
|
|
644
|
+
fmt_meetinginfo_duration_2_no_min: string;
|
|
645
|
+
fmt_information_label_lockmeeting: string;
|
|
646
|
+
fmt_information_tips_lockedbyhost: string;
|
|
647
|
+
fmt_information_tips_copysuccess: string;
|
|
648
|
+
fmt_information_tips_copyfailed: string;
|
|
649
|
+
fmt_information_label_sharemeetingnumber: string;
|
|
650
|
+
fmt_additional_tips_invitationfailed: string;
|
|
651
|
+
fmt_additional_tips_invitation: string;
|
|
652
|
+
fmt_sharing_button_copydetailed: string;
|
|
653
|
+
fmt_sharing_label_invitationlink: string;
|
|
654
|
+
fmt_sharing_tips_copyto_clipboard: string;
|
|
655
|
+
fmt_sharing_tips_copyfull_failed: string;
|
|
656
|
+
fmt_sharing_label_invitationdetailed: string;
|
|
657
|
+
fmt_information_tips_meeting_inprogress: string;
|
|
658
|
+
fmt_information_tips_click_return_meeting: string;
|
|
659
|
+
fmt_networkstatus_window_title: string;
|
|
660
|
+
fmt_networkstatus_window_rate_good: string;
|
|
661
|
+
fmt_networkstatus_window_rate_medium: string;
|
|
662
|
+
fmt_networkstatus_window_rate_bad: string;
|
|
663
|
+
fmt_networkstatus_window_latency: string;
|
|
664
|
+
fmt_networkstatus_window_loss: string;
|
|
665
|
+
fmt_networkstatus_window_moreData: string;
|
|
666
|
+
fmt_modules_labels_qualitystatistics: string;
|
|
667
|
+
fmt_meetinginfo_label_time: string;
|
|
668
|
+
fmt_meetinginfo_label_myname: string;
|
|
669
|
+
fmt_meetinginfo_label_lockedmeeting: string;
|
|
670
|
+
fmt_networkstatus_up_link: string;
|
|
671
|
+
fmt_networkstatus_down_link: string;
|
|
672
|
+
fmt_networkstatus_down_loss: string;
|
|
673
|
+
fmt_networkstatus_up_loss: string;
|
|
674
|
+
fmt_security_options_restract: string;
|
|
675
|
+
fmt_security_options_removemultiple: string;
|
|
676
|
+
fmt_security_options_openvideo: string;
|
|
677
|
+
fmt_security_options_stopvideo: string;
|
|
678
|
+
fmt_security_options_openaudio: string;
|
|
679
|
+
fmt_security_options_stopaudio: string;
|
|
680
|
+
fmt_security_options_activatewaitingroom: string;
|
|
681
|
+
fmt_security_options_playnotification: string;
|
|
682
|
+
fmt_security_options_silence: string;
|
|
683
|
+
fmt_security_buttons_allhandsdown: string;
|
|
684
|
+
fmt_security_options_muteall: string;
|
|
685
|
+
fmt_security_buttons_muteall: string;
|
|
686
|
+
fmt_security_buttons_cancel: string;
|
|
687
|
+
fmt_security_waiting_room: string;
|
|
688
|
+
fmt_security_start_video: string;
|
|
689
|
+
fmt_security_pause_all: string;
|
|
690
|
+
fmt_security_remove_all: string;
|
|
691
|
+
fmt_security_tips_lock_meeting_on: string;
|
|
692
|
+
fmt_security_tips_lock_meeting_off: string;
|
|
693
|
+
fmt_security_tips_waiting_room_on: string;
|
|
694
|
+
fmt_security_tips_waiting_room_off: string;
|
|
695
|
+
fmt_security_tips_join_mute_on: string;
|
|
696
|
+
fmt_security_tips_join_mute_off: string;
|
|
697
|
+
fmt_security_tips_share_screen_on: string;
|
|
698
|
+
fmt_security_tips_share_screen_off: string;
|
|
699
|
+
fmt_security_tips_start_audio_on: string;
|
|
700
|
+
fmt_security_tips_start_audio_off: string;
|
|
701
|
+
fmt_security_tips_host_start_audio_on: string;
|
|
702
|
+
fmt_security_tips_host_start_audio_off: string;
|
|
703
|
+
fmt_security_tips_start_video_on: string;
|
|
704
|
+
fmt_security_tips_start_video_off: string;
|
|
705
|
+
fmt_security_tips_host_start_video_on: string;
|
|
706
|
+
fmt_security_tips_host_start_video_off: string;
|
|
707
|
+
fmt_security_chat_with_hosts: string;
|
|
708
|
+
fmt_security_tips_allow_write_board: string;
|
|
709
|
+
fmt_security_tips_disallow_write_board: string;
|
|
710
|
+
fmt_settings_option_setting: string;
|
|
711
|
+
fmt_settings_option_general: string;
|
|
712
|
+
fmt_settings_option_about_us: string;
|
|
713
|
+
fmt_settings_option_about_videoset: string;
|
|
714
|
+
fmt_settings_option_debug: string;
|
|
715
|
+
fmt_settings_option_region_na: string;
|
|
716
|
+
fmt_settings_option_region_ap: string;
|
|
717
|
+
fmt_settings_option_region_cn: string;
|
|
718
|
+
fmt_settings_option_region_eu: string;
|
|
719
|
+
fmt_settings_option_enviroment_Dev: string;
|
|
720
|
+
fmt_settings_option_enviroment_Test: string;
|
|
721
|
+
fmt_settings_option_enviroment_Pre: string;
|
|
722
|
+
fmt_settings_option_enviroment_Pro: string;
|
|
723
|
+
fmt_settings_label_region: string;
|
|
724
|
+
fmt_settings_label_about_us_about_us: string;
|
|
725
|
+
fmt_settings_label_aboutus_ver: string;
|
|
726
|
+
fmt_settings_label_aboutus_declaration: string;
|
|
727
|
+
fmt_settings_label_video_resolution: string;
|
|
728
|
+
fmt_settings_label_video_bitrate_frame: string;
|
|
729
|
+
fmt_settings_label_video_resolution_small: string;
|
|
730
|
+
fmt_settings_label_video_bitrate_frame_small: string;
|
|
731
|
+
fmt_settings_label_video_screenshare_resolution: string;
|
|
732
|
+
fmt_settings_label_video_screenshare_bitrate_frame: string;
|
|
733
|
+
fmt_settings_link_about_us_user_agreement: string;
|
|
734
|
+
fmt_settings_link_about_us_privacy_policy: string;
|
|
735
|
+
fmt_settings_label_aboutus_slogan: string;
|
|
736
|
+
fmt_settings_button_logout: string;
|
|
737
|
+
fmt_setting_label_setting: string;
|
|
738
|
+
fmt_setting_option_Voice: string;
|
|
739
|
+
fmt_setting_option_Video: string;
|
|
740
|
+
fmt_setting_label_Speaker: string;
|
|
741
|
+
fmt_setting_label_oututlevel: string;
|
|
742
|
+
fmt_setting_button_Speaker_pause: string;
|
|
743
|
+
fmt_setting_label_volume: string;
|
|
744
|
+
fmt_setting_option_volumeadjust: string;
|
|
745
|
+
fmt_setting_label_Mic: string;
|
|
746
|
+
fmt_setting_button_Mic: string;
|
|
747
|
+
fmt_setting_button_Speaker_recording: string;
|
|
748
|
+
fmt_setting_label_3a: string;
|
|
749
|
+
fmt_setting_option_3alow: string;
|
|
750
|
+
fmt_setting_option_3amoderate: string;
|
|
751
|
+
fmt_setting_option_3ahigh: string;
|
|
752
|
+
fmt_setting_label_professional: string;
|
|
753
|
+
fmt_setting_option_orinalvoise: string;
|
|
754
|
+
fmt_setting_tips_speaker: string;
|
|
755
|
+
fmt_setting_tips_mic: string;
|
|
756
|
+
fmt_setting_tips_speaker_unwork: string;
|
|
757
|
+
fmt_setting_tips_mic_unwork: string;
|
|
758
|
+
fmt_setting_label_preview: string;
|
|
759
|
+
fmt_setting_option_preview_highdefinition: string;
|
|
760
|
+
fmt_setting_option_basics: string;
|
|
761
|
+
fmt_setting_option_backgrounds: string;
|
|
762
|
+
fmt_setting_option_beauty: string;
|
|
763
|
+
fmt_setting_option_high_definition: string;
|
|
764
|
+
fmt_setting_option_joinmeeting: string;
|
|
765
|
+
fmt_setting_option_joinmeeting_preview: string;
|
|
766
|
+
fmt_setting_option_hidenonvideo: string;
|
|
767
|
+
fmt_setting_label_maxattendees: string;
|
|
768
|
+
fmt_setting_label_maxattendees_16: string;
|
|
769
|
+
fmt_setting_label_maxattendees_25: string;
|
|
770
|
+
fmt_modules_labels_Videobackground: string;
|
|
771
|
+
fmt_modules_tips_Imagebackground: string;
|
|
772
|
+
fmt_internalsetting_label_generalsetting: string;
|
|
773
|
+
fmt_internalsetting_label_inputlevel: string;
|
|
774
|
+
fmt_internalsetting_label_inputvolume: string;
|
|
775
|
+
fmt_internalsetting_label_automatic: string;
|
|
776
|
+
fmt_internalsetting_tips_backgroundsound: string;
|
|
777
|
+
fmt_internalsetting_tips_fanpan: string;
|
|
778
|
+
fmt_internalsetting_tips_dogbarking: string;
|
|
779
|
+
fmt_internalsetting_label_senior: string;
|
|
780
|
+
fmt_internalsetting_button_detectspeaker: string;
|
|
781
|
+
fmt_internalsetting_status_recording: string;
|
|
782
|
+
fmt_internalsetting_status_nodevice: string;
|
|
783
|
+
fmt_internalsetting_labels_enableoptions: string;
|
|
784
|
+
fmt_internalsetting_options_highqualitymusic: string;
|
|
785
|
+
fmt_internalsetting_options_echocancell: string;
|
|
786
|
+
fmt_internalsetting_options_stereo: string;
|
|
787
|
+
fmt_internalsetting_labels_audiostereoencode: string;
|
|
788
|
+
fmt_internalsetting_tips_preventechoes: string;
|
|
789
|
+
fmt_internalsetting_tips_optiomizeaudio: string;
|
|
790
|
+
fmt_internalsetting_tips_speakerpriority: string;
|
|
791
|
+
fmt_internalsetting_labels_voicestimulation: string;
|
|
792
|
+
fmt_internalsetting_options_hidenonvideo: string;
|
|
793
|
+
fmt_internalsetting_options_adjustlowlight: string;
|
|
794
|
+
fmt_internalsetting_options_closevideojoin: string;
|
|
795
|
+
fmt_internalsetting_options_alwaysbox: string;
|
|
796
|
+
fmt_internalsetting_labels_advancedsetting: string;
|
|
797
|
+
fmt_internalsetting_options_videonoisereduction: string;
|
|
798
|
+
fmt_internalsetting_options_hardwareacceleration: string;
|
|
799
|
+
fmt_internalsetting_tips_nocamerajoin: string;
|
|
800
|
+
fmt_internalsetting_options_mirromyvideo: string;
|
|
801
|
+
fmt_internalsetting_tips_optimizevideo: string;
|
|
802
|
+
fmt_internalsetting_tips_reducevideo: string;
|
|
803
|
+
fmt_internalsetting_labels_currency: string;
|
|
804
|
+
fmt_internalsetting_labels_application: string;
|
|
805
|
+
fmt_internalsetting_labels_other: string;
|
|
806
|
+
fmt_internalsetting_labels_bandwidth: string;
|
|
807
|
+
fmt_internalsetting_labels_Network: string;
|
|
808
|
+
fmt_internalsetting_labels_Networktype: string;
|
|
809
|
+
fmt_internalsetting_labels_Maximumresolution: string;
|
|
810
|
+
fmt_internalsetting_labels_Framerate: string;
|
|
811
|
+
fmt_internalsetting_labels_Bitrate: string;
|
|
812
|
+
fmt_internalsetting_labels_resolvingpower: string;
|
|
813
|
+
fmt_internalsetting_labels_bitrate2: string;
|
|
814
|
+
fmt_internalsetting_labels_mic: string;
|
|
815
|
+
fmt_internalsetting_labels_speaker: string;
|
|
816
|
+
fmt_internalsetting_labels_Memory: string;
|
|
817
|
+
fmt_settings_button_unlockroom: string;
|
|
818
|
+
fmt_internalsetting_beauty_background: string;
|
|
819
|
+
fmt_internalsetting_sites: string;
|
|
820
|
+
fmt_internalsetting_mini_meeting: string;
|
|
821
|
+
fmt_internalsetting_raise_hand: string;
|
|
822
|
+
fmt_internalsetting_disconnect_audio: string;
|
|
823
|
+
fmt_internalsetting_other_join: string;
|
|
824
|
+
fmt_internalsetting_other_personal: string;
|
|
825
|
+
fmt_internalsetting_other_join_mute: string;
|
|
826
|
+
fmt_internalsetting_other_join_sound: string;
|
|
827
|
+
fmt_internalsetting_other_join_name: string;
|
|
828
|
+
fmt_internalsetting_other_hide_no_video_toast: string;
|
|
829
|
+
fmt_internalsetting_other_hide_no_video_pin_cancelled: string;
|
|
830
|
+
fmt_internalsetting_other_hide_my_window_pin_cancelled: string;
|
|
831
|
+
fmt_internalsetting_other_hide_me: string;
|
|
832
|
+
fmt_internalsetting_other_hide_me_toast: string;
|
|
833
|
+
fmt_internalsetting_other_spot_light: string;
|
|
834
|
+
fmt_internalsetting_other_spot_light_desc: string;
|
|
835
|
+
fmt_internalsetting_room_window_top: string;
|
|
836
|
+
fmt_internalsetting_room_window_big: string;
|
|
837
|
+
fmt_internalsetting_room_window_left: string;
|
|
838
|
+
fmt_internalsetting_room_window_tip: string;
|
|
839
|
+
fmt_internalsetting_room_window_switched: string;
|
|
840
|
+
fmt_internalsetting_labels_Network_type: string;
|
|
841
|
+
fmt_internalsetting_labels_resolving_power: string;
|
|
842
|
+
fmt_settings_labels_sidebar: string;
|
|
843
|
+
fmt_settings_labels_fold: string;
|
|
844
|
+
fmt_settings_labels_theme: string;
|
|
845
|
+
fmt_settings_tips_sharingprohibited: string;
|
|
846
|
+
fmt_settings_tips_videoenabled: string;
|
|
847
|
+
fmt_settings_tips_disabledvideo: string;
|
|
848
|
+
fmt_settings_tips_allowedScreensharing: string;
|
|
849
|
+
fmt_settings_tips_disabledScreensharing: string;
|
|
850
|
+
fmt_settings_tips_allowedchat: string;
|
|
851
|
+
fmt_settings_tips_banedchat: string;
|
|
852
|
+
fmt_settings_tips_allowedselfunmuting: string;
|
|
853
|
+
fmt_settings_tips_disabledselfunmuting: string;
|
|
854
|
+
fmt_settings_tips_muteallwhilejoin: string;
|
|
855
|
+
fmt_settings_labels_you: string;
|
|
856
|
+
fmt_settings_tips_Blockallchat: string;
|
|
857
|
+
fmt_settings_tips_groupchatonly: string;
|
|
858
|
+
fmt_settings_tips_hostchatonly: string;
|
|
859
|
+
fmt_settings_tips_confirmactivate: string;
|
|
860
|
+
fmt_settings_tips_passwordcopyfailed: string;
|
|
861
|
+
fmt_settings_tips_sharing: string;
|
|
862
|
+
fmt_settings_labels_miniutes: string;
|
|
863
|
+
fmt_settings_options_enableoptions: string;
|
|
864
|
+
fmt_settings_options_highquality: string;
|
|
865
|
+
fmt_settings_options_echocancel: string;
|
|
866
|
+
fmt_settings_options_stereo: string;
|
|
867
|
+
fmt_settings_options_toolbarcollapse: string;
|
|
868
|
+
fmt_settings_tips_screenlocked: string;
|
|
869
|
+
fmt_settings_tips_screenunlock: string;
|
|
870
|
+
fmt_settings_options_pausecloudrecording: string;
|
|
871
|
+
fmt_settings_popup_disable_while_microphone_detected: string;
|
|
872
|
+
fmt_settings_popup_disable_while_speaker_detected: string;
|
|
873
|
+
fmt_live_label_thirdplatform: string;
|
|
874
|
+
fmt_live_label_videostreamingurl: string;
|
|
875
|
+
fmt_live_inputtips_videostreamingurl: string;
|
|
876
|
+
fmt_live_label_videostreamingkey: string;
|
|
877
|
+
fmt_live_inputtips_videostreamingkey: string;
|
|
878
|
+
fmt_live_label_ivepage: string;
|
|
879
|
+
fmt_tips_label_Livepage: string;
|
|
880
|
+
fmt_tips_inputlabel_Livepage: string;
|
|
881
|
+
fmt_tips_button_Golive: string;
|
|
882
|
+
fmt_tips_button_Stopolive: string;
|
|
883
|
+
fmt_live_tips_alreadylive: string;
|
|
884
|
+
fmt_live_tips_livestreaming: string;
|
|
885
|
+
fmt_live_label_customizedlive: string;
|
|
886
|
+
fmt_live_label_watchcustomizedlive: string;
|
|
887
|
+
fmt_live_label_copylink: string;
|
|
888
|
+
fmt_tips_button_Stopsteaming: string;
|
|
889
|
+
fmt_record_button_Cloudrecording: string;
|
|
890
|
+
fmt_record_button_Localrecording: string;
|
|
891
|
+
fmt_record_button_pauserecording: string;
|
|
892
|
+
fmt_record_tips_Localrecording_Start: string;
|
|
893
|
+
fmt_record_tips_Cloudrecording_Start: string;
|
|
894
|
+
fmt_record_tips_recording: string;
|
|
895
|
+
fmt_record_tips_Cloudrecording: string;
|
|
896
|
+
fmt_record_button_Cloudrecording_restore: string;
|
|
897
|
+
fmt_record_button_Localrecording_restore: string;
|
|
898
|
+
fmt_record_button_Cloudrecording_stop: string;
|
|
899
|
+
fmt_record_button_Localrecording_stop: string;
|
|
900
|
+
fmt_record_tips_recordingpaused: string;
|
|
901
|
+
fmt_record_tips_recordingrestored: string;
|
|
902
|
+
fmt_record_tips_Cloudrecording_inprogress: string;
|
|
903
|
+
fmt_record_tips_Localrecording_inprogress: string;
|
|
904
|
+
fmt_recording_button_rrecording: string;
|
|
905
|
+
fmt_actionbar_record_tips_stoprecord: string;
|
|
906
|
+
fmt_actionbar_record_option_stoprecord: string;
|
|
907
|
+
fmt_modules_labels_localrecord: string;
|
|
908
|
+
fmt_modules_labels_notset: string;
|
|
909
|
+
fmt_modules_button_change: string;
|
|
910
|
+
fmt_modules_button_open: string;
|
|
911
|
+
fmt_modules_labels_surplus: string;
|
|
912
|
+
fmt_record_scene_meeting_rec: string;
|
|
913
|
+
fmt_record_tip_share_scaling: string;
|
|
914
|
+
fmt_record_gallery_guide_toast: string;
|
|
915
|
+
fmt_record_share_nick: string;
|
|
916
|
+
fmt_record_share_board_nick: string;
|
|
917
|
+
fmt_record_new_sharing_stream_tip: string;
|
|
918
|
+
fmt_record_record_starting2: string;
|
|
919
|
+
fmt_record_record_pause_for_more: string;
|
|
920
|
+
fmt_record_record_start_fail: string;
|
|
921
|
+
fmt_record_record_resume_fail: string;
|
|
922
|
+
fmt_record_record_stop_fail: string;
|
|
923
|
+
fmt_record_record_pause_fail: string;
|
|
924
|
+
fmt_record_record_stoped: string;
|
|
925
|
+
fmt_record_record_started: string;
|
|
926
|
+
fmt_record_record_stop_ask: string;
|
|
927
|
+
fmt_record_record_stop_confirm: string;
|
|
928
|
+
fmt_pstn_label_accessmethod: string;
|
|
929
|
+
fmt_pstn_options_PCaudioconnet: string;
|
|
930
|
+
fmt_pstn_options_phoneaudioconnet: string;
|
|
931
|
+
fmt_pstn_options_audio_setting: string;
|
|
932
|
+
fmt_pstn_options_PCaudio: string;
|
|
933
|
+
fmt_pstn_options_phoneaudio: string;
|
|
934
|
+
fmt_pstn_label_connected: string;
|
|
935
|
+
fmt_pstn_label_accessmethodPC: string;
|
|
936
|
+
fmt_pstn_button_devicetest: string;
|
|
937
|
+
fmt_pstn_label_micselect: string;
|
|
938
|
+
fmt_pstn_button_PCaudiostop: string;
|
|
939
|
+
fmt_pstn_label_alreadyin: string;
|
|
940
|
+
fmt_pstn_options_rememberphone: string;
|
|
941
|
+
fmt_pstn_button_callme: string;
|
|
942
|
+
fmt_pstn_label_dialinphone: string;
|
|
943
|
+
fmt_pstn_label_countryregion: string;
|
|
944
|
+
fmt_pstn_label_dial: string;
|
|
945
|
+
fmt_pstn_label_meetingid: string;
|
|
946
|
+
fmt_pstn_label_participantid: string;
|
|
947
|
+
fmt_pstn_label_viaphone: string;
|
|
948
|
+
fmt_pstn_status_unconnectted: string;
|
|
949
|
+
fmt_pstn_tips_alreadyphone: string;
|
|
950
|
+
fmt_pstn_status_calling: string;
|
|
951
|
+
fmt_pstn_button_hangupphone: string;
|
|
952
|
+
fmt_pstn_label_merge: string;
|
|
953
|
+
fmt_pstn_button_merge: string;
|
|
954
|
+
fmt_pstn_button_cancel: string;
|
|
955
|
+
fmt_pstn_label_phonecall: string;
|
|
956
|
+
fmt_pstn_inputtips_name: string;
|
|
957
|
+
fmt_pstn_button_phonecall: string;
|
|
958
|
+
fmt_pstn_label_or: string;
|
|
959
|
+
fmt_pstn_label_copylink: string;
|
|
960
|
+
fmt_pstn_status_ringing: string;
|
|
961
|
+
fmt_pstn_status_Answered: string;
|
|
962
|
+
fmt_pstn_status_failed: string;
|
|
963
|
+
fmt_pstn_status_hungup: string;
|
|
964
|
+
fmt_pstn_status_maitain: string;
|
|
965
|
+
fmt_PSTN_status_connected: string;
|
|
966
|
+
fmt_PSTN_label_pcaudio: string;
|
|
967
|
+
fmt_PSTN_status_hangup: string;
|
|
968
|
+
fmt_PSTN_status_china: string;
|
|
969
|
+
fmt_PSTN_status_usa: string;
|
|
970
|
+
fmt_PSTN_tips_unempty: string;
|
|
971
|
+
fmt_PSTN_tips_formaterror: string;
|
|
972
|
+
fmt_PSTN_status_voiceconnected: string;
|
|
973
|
+
fmt_PSTN_status_hungup: string;
|
|
974
|
+
fmt_pstn_tips_errorformat: string;
|
|
975
|
+
fmt_gateway_tips_nodata: string;
|
|
976
|
+
fmt_PSTN_toast_merged: string;
|
|
977
|
+
fmt_sip_options_callout: string;
|
|
978
|
+
fmt_sip_options_callin: string;
|
|
979
|
+
fmt_sip_inputtips_sip_323: string;
|
|
980
|
+
fmt_sip_options_H323: string;
|
|
981
|
+
fmt_sip_options_SIP: string;
|
|
982
|
+
fmt_sip_button_call: string;
|
|
983
|
+
fmt_sip_button_Hangup: string;
|
|
984
|
+
fmt_sip_label_dialviasip: string;
|
|
985
|
+
fmt_sip_label_dial: string;
|
|
986
|
+
fmt_sip_label_inputid: string;
|
|
987
|
+
fmt_sip_label_password: string;
|
|
988
|
+
fmt_pstn_status_dialling: string;
|
|
989
|
+
fmt_pstn_status_raining: string;
|
|
990
|
+
fmt_SIP323_copywrite_phonenumber: string;
|
|
991
|
+
fmt_SIP323_options_detailedinfor: string;
|
|
992
|
+
fmt_SIP323_tips_alreadycopied: string;
|
|
993
|
+
};
|