fcr-ui-scene 1.0.20 → 3.1.0-1
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 +26 -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 +107 -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/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 -3
- 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 -214
- package/lib/fcr-ui-scene/src/uistores/gallery-view.d.ts +0 -16
- package/lib/fcr-ui-scene/src/uistores/getters.d.ts +0 -40
- 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,1016 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
require("core-js/modules/es.object.define-property.js");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.enUs = void 0;
|
|
8
|
+
var enUs = exports.enUs = {
|
|
9
|
+
fmt_role_host: 'Host',
|
|
10
|
+
fmt_role_participant: 'Attendees',
|
|
11
|
+
fmt_role_cohost: 'Co host',
|
|
12
|
+
fmt_participants_label_participants: 'Member List',
|
|
13
|
+
fmt_participants_label_popUp: 'Eject',
|
|
14
|
+
fmt_participants_window_title: 'Attendees{reason1}',
|
|
15
|
+
fmt_participants_button_muteAll: 'All staff are muted',
|
|
16
|
+
fmt_participants_button_unmuteAll: 'Remove the mute for all personnel',
|
|
17
|
+
fmt_participants_button_meetingManagement: 'Management of meetings',
|
|
18
|
+
fmt_participants_button_invite: 'Invitation',
|
|
19
|
+
fmt_participants_member_button_mute: 'Mute',
|
|
20
|
+
fmt_participants_member_button_unmute: 'Unmute',
|
|
21
|
+
fmt_participants_member_button_more: 'More',
|
|
22
|
+
//****************** 参会者 ******************
|
|
23
|
+
fmt_attendies_options_muteall: 'Mute all attendees in the meeting room',
|
|
24
|
+
fmt_attendies_button_muteall: 'Mute all',
|
|
25
|
+
fmt_attendies_button_cancel: 'Cancel',
|
|
26
|
+
fmt_attendies_options_muteuponjoin: 'Mute all participants upon joining',
|
|
27
|
+
fmt_attendies_options_allowunmute: 'Allow participants to self unmute',
|
|
28
|
+
fmt_attendies_options_applyunmute: 'Request unmute',
|
|
29
|
+
fmt_attendies_button_request: 'Request',
|
|
30
|
+
fmt_attendies_button_handsdown: 'Put your hands down',
|
|
31
|
+
fmt_attendies_label_privatechat: 'Private chat',
|
|
32
|
+
fmt_attendies_options_setfocus: 'Set as the spotlight video',
|
|
33
|
+
fmt_attendies_options_replacefixed: 'Replace fixed window',
|
|
34
|
+
fmt_attendies_options_fixfirst: 'Fix the window to top ',
|
|
35
|
+
fmt_attendies_options_cancelfixed: 'Cancel fixed window',
|
|
36
|
+
fmt_attendies_options_sethost: 'Set as the host',
|
|
37
|
+
fmt_attendies_options_revokecohost: 'Revoke co host',
|
|
38
|
+
fmt_attendies_options_setcohost: 'Set as co host',
|
|
39
|
+
fmt_attendies_button_rename: 'Rename',
|
|
40
|
+
fmt_attendies_options_allowlocalrecord: 'Allow recording of local videos',
|
|
41
|
+
fmt_attendies_options_putinwaitingroom: 'Put it in the waiting room',
|
|
42
|
+
fmt_attendies_button_remove: 'Remove',
|
|
43
|
+
fmt_participants_options_allunmute: 'Allow all members to self unmute',
|
|
44
|
+
fmt_participants_options_allmute: 'Enable all staff mute',
|
|
45
|
+
fmt_modules_tips_mergevideo: 'Merge with video',
|
|
46
|
+
fmt_participant_label_Me: 'Me',
|
|
47
|
+
fmt_attendies_button_serach: 'Search',
|
|
48
|
+
fmt_attendies_tips_nopermission: 'The other party is {reason1}, you cannot operate it',
|
|
49
|
+
fmt_attendies_tab_meetingroom: 'In meeting',
|
|
50
|
+
fmt_attendies_tab_waitingroom: 'Waiting Room',
|
|
51
|
+
fmt_attendies_host_permission: 'Retract host privileges',
|
|
52
|
+
fmt_attendies_option_apply_all_audio: 'Unmute all',
|
|
53
|
+
fmt_attendies_status_item_ringing: 'Ringing',
|
|
54
|
+
fmt_attendies_labels_setting_mine: '(Me)',
|
|
55
|
+
fmt_attendies_tips_setting_title: 'Member settings',
|
|
56
|
+
fmt_attendies_tips_setting_media_co_host_unable: 'The other party is a co host, you cannot operate it',
|
|
57
|
+
fmt_attendies_tips_setting_media_host_unable: 'The other party is the host, you cannot operate it',
|
|
58
|
+
fmt_attendies_tips_setting_make_host_info: 'Should {reason1} be appointed as the moderator of the meeting?',
|
|
59
|
+
fmt_attendies_tips_setting_make_co_host_info: 'Should {reason1} be designated as the co chair of the meeting?',
|
|
60
|
+
fmt_attendies_tips_setting_require_unmute: 'Request everyone to unmute',
|
|
61
|
+
fmt_attendies_label_no_data: 'No Data',
|
|
62
|
+
fmt_attendies_tips_send_mute_all_on: 'You have muted all',
|
|
63
|
+
fmt_attendies_tips_mute_all_off: 'Everyone is able to turn on the microphone',
|
|
64
|
+
fmt_attendies_tips_chat_off: 'Host prohibits private chat',
|
|
65
|
+
fmt_attendies_tips_apply_audio_title: '{reason1} request you to unmute',
|
|
66
|
+
fmt_attendies_tips_apply_audio_info: 'After agreeing to release, your microphone will turn on.',
|
|
67
|
+
fmt_attendies_label_apply_audio_cancel: 'Keep mute',
|
|
68
|
+
fmt_attendies_tips_apply_video_title: '{reason1} request to turn on camera',
|
|
69
|
+
fmt_attendies_tips_apply_video_info: 'After agreeing to release, your camera will turn on.',
|
|
70
|
+
fmt_attendies_label_apply_video_cancel: 'Keep closed',
|
|
71
|
+
fmt_attendies_tips_receive_mute_all: '{reason1} has muted all .',
|
|
72
|
+
fmt_attendies_tips_receive_mute_you: '{reason1} has muted you',
|
|
73
|
+
fmt_attendies_tips_receive_video_off_you: 'The {reason1} has turned off your camera',
|
|
74
|
+
fmt_attendies_tips_mine_new_host: '{reason1} (Me) became the new host',
|
|
75
|
+
fmt_attendies_tips_new_host: '{reason1} becomes the new host',
|
|
76
|
+
fmt_attendies_tips_mine_new_co_host: 'You have been appointed as a co host',
|
|
77
|
+
fmt_attendies_tips_new_co_host: '{reason1} has become the co host',
|
|
78
|
+
fmt_attendies_tips_invoke_co_host: "{reason1}'s co host status has been revoked",
|
|
79
|
+
fmt_attendies_tips_revoke_co_host: 'Your co host identity has been revoked',
|
|
80
|
+
fmt_attendies_tips_not_co_host: '{reason1} is no longer a co host',
|
|
81
|
+
fmt_attendies_tips_operation_success: 'Operate succeed',
|
|
82
|
+
fmt_attendies_tips_operation_failed: 'Operate failed',
|
|
83
|
+
fmt_attendies_tips_forbid_close: 'Host prohibits closing',
|
|
84
|
+
fmt_attendies_tips_request_send: 'You have sent a request',
|
|
85
|
+
fmt_additional_tips_cohostbeenrevoke: 'Your co host identity has been revoked',
|
|
86
|
+
fmt_additional_tips_cohostrevoke: "{reason1}'s co host status has been revoked",
|
|
87
|
+
fmt_additional_tips_nolongercohost: '{reason1} is no longer a co host',
|
|
88
|
+
fmt_actionbar_tips_leavemeeting: 'Are you sure you want to leave the meeting now?',
|
|
89
|
+
fmt_actionbar_button_plenarysession: 'End the plenary meeting',
|
|
90
|
+
fmt_actionbar_tips_locked: 'The meeting has been locked by the host',
|
|
91
|
+
fmt_actionbar_tips_recheckleave: 'You cannot join the meeting after leaving the meeting; Are you sure you want to leave the meeting now?',
|
|
92
|
+
fmt_aside_status_connecting: 'Connecting',
|
|
93
|
+
fmt_actionbar_labels_endmeeting: 'Are you sure you want to end the meeting now?',
|
|
94
|
+
fmt_actionbar__button_leaveyes: 'Yes',
|
|
95
|
+
fmt_actionbar__button_leaveno: 'No',
|
|
96
|
+
fmt_actionbar_options_utoadjust: 'Automatically adjust speaker volume',
|
|
97
|
+
fmt_actionbar_options_micautoadjust: 'Automatically adjust microphone volume',
|
|
98
|
+
fmt_actionbar_label_reducenoise: 'Reduce background noise',
|
|
99
|
+
fmt_actionbar_tips_cameraturnon: 'After accepting the invitation, your camera will turn on.',
|
|
100
|
+
fmt_actionbar_button_accept: 'Accept',
|
|
101
|
+
fmt_actionbar_button_refuse: 'Refuse',
|
|
102
|
+
fmt_actionbar_tips_unmute: "The host wants you to 'unmute'",
|
|
103
|
+
fmt_actionbar_tips_agreeturnon: 'After agreeing to release, your microphone will turn on.',
|
|
104
|
+
fmt_actionbar_options_Keepsilent: 'Keep mute',
|
|
105
|
+
fmt_statusbar_label_fullscreen: 'Full screen',
|
|
106
|
+
fmt_statusbar_label_exitfullscreen: 'Exit full-screen mode',
|
|
107
|
+
fmt_statusbar_label_switchlayout: 'Switch layout',
|
|
108
|
+
fmt_statusbar_label_durationtime: 'Meeting duration (scheduled meeting time {reason1}{reason2})',
|
|
109
|
+
fmt_statusbar_label_layout: 'Layout',
|
|
110
|
+
fmt_statusbar_label_layoutsetting: 'Layout Settings',
|
|
111
|
+
fmt_statusbar_opions_listontop: 'List on top',
|
|
112
|
+
fmt_statusbar_label_grid: 'Grid({reason1}views)',
|
|
113
|
+
fmt_statusbar_label_customwating: 'Watch live streams on a custom live streaming server',
|
|
114
|
+
fmt_statusbar_status_coppied: 'Already copied on the clipboard',
|
|
115
|
+
fmt_statusbar_tips_copyfailed: 'Copy failed',
|
|
116
|
+
fmt_statusbar_tips_onstreaming: 'The meeting is being live streamed on a custom live streaming service',
|
|
117
|
+
fmt_statusbar_label_hour: 'hour',
|
|
118
|
+
fmt_statusbar_label_minutes: 'minute',
|
|
119
|
+
fmt_statusbar_label_cloudrecordingpaused: 'Cloud recording paused',
|
|
120
|
+
fmt_statusbar_label_networkpaused: 'Network status',
|
|
121
|
+
fmt_statusbar_label_unknown: 'unknown',
|
|
122
|
+
fmt_statusbar_label_millisecond: 'millisecond',
|
|
123
|
+
fmt_toolbar_tips_expand: 'Expand the toolbar',
|
|
124
|
+
fmt_toolbar_label_connectaudio: 'Connect audio',
|
|
125
|
+
fmt_toolbar_label_nodevice: 'No device',
|
|
126
|
+
fmt_toolbar_label_camera: 'Camera',
|
|
127
|
+
fmt_toolbar_options_enablecamera: 'Enable camera',
|
|
128
|
+
fmt_toolbar_tips_nodevice: 'No available devices',
|
|
129
|
+
fmt_toolbar_button_audioaccess: 'Select audio access method',
|
|
130
|
+
fmt_toolbar_options_pcaudio: 'Connect to PC audio',
|
|
131
|
+
fmt_toolbar_options_phoneaudio: 'Connect to phone audio',
|
|
132
|
+
fmt_toolbar_options_switchaccessmode: 'Switch audio access mode',
|
|
133
|
+
fmt_toolbar_button_assignnewhost: 'Assign a New Host',
|
|
134
|
+
fmt_toolbar_button_assignleave: 'Assign and Leave',
|
|
135
|
+
fmt_toolbar_button_end: 'End',
|
|
136
|
+
fmt_toolbar_button_leave: 'Leave',
|
|
137
|
+
fmt_toolbar_button_cancel: 'Cancel',
|
|
138
|
+
fmt_popup_tips_endplenarymeeting: 'Is the plenary meeting over now?',
|
|
139
|
+
fmt_popup_button_endmeeting: 'leave the chair',
|
|
140
|
+
fmt_popup_button_leavemeeting: 'Leave the meeting',
|
|
141
|
+
fmt_popup_button_cancel: 'Cancel',
|
|
142
|
+
fmt_meetingroom_status_abnormal: 'The meeting is abnormal',
|
|
143
|
+
fmt_meetingroom_tips_disconnected: 'The meeting connection is interrupted, please rejoin',
|
|
144
|
+
fmt_meetingroom_join_fail: 'Failed to join',
|
|
145
|
+
fmt_meetingroom_tips_rejoin: 'Please rejoin',
|
|
146
|
+
fmt_meetingroom_button_sure: 'Sure',
|
|
147
|
+
fmt_popup_tips_leavenow: 'Are you sure you want to leave the meeting now?',
|
|
148
|
+
fmt_popup_label_expression: 'expression',
|
|
149
|
+
fmt_popup_tips_alreadycopied: 'Already copied on the clipboard',
|
|
150
|
+
fmt_popup_button_meetinginfor: 'Copy meeting information',
|
|
151
|
+
fmt_popup_button_activatewaitingroom: 'Activate waiting room',
|
|
152
|
+
fmt_popup_button_openvideo: 'Open video',
|
|
153
|
+
fmt_popup_button_drag: 'Drag',
|
|
154
|
+
fmt_popup_label_muted: 'Muted',
|
|
155
|
+
fmt_popup_label_turnedon: 'Turned on',
|
|
156
|
+
fmt_popup_label_meetingduration: 'Meeting duration {reason1} minutes',
|
|
157
|
+
fmt_leave_tips_removetip: 'You have been removed from this meeting. Clicking the button to exit',
|
|
158
|
+
fmt_leave_tips_classover: 'The meeting has ended, click the button to leave the meeting room.',
|
|
159
|
+
fmt_toolbar_label_receiver: 'receiver',
|
|
160
|
+
fmt_toolbar_label_me: 'Me',
|
|
161
|
+
fmt_toolbar_label_ear_phone: 'Headset',
|
|
162
|
+
fmt_toolbar_label_confirm: 'Confirm',
|
|
163
|
+
fmt_toolbar_label_open: 'Open',
|
|
164
|
+
fmt_toolbar_label_unlock: 'Unlock',
|
|
165
|
+
fmt_toolbar_tips_microphone_open: 'Microphone turned on',
|
|
166
|
+
fmt_toolbar_tips_microphone_close: 'Microphone off',
|
|
167
|
+
fmt_toolbar_tips_camera_open: 'Camera turned on',
|
|
168
|
+
fmt_toolbar_tips_camera_close: 'Camera off',
|
|
169
|
+
fmt_toolbar_tips_host_forbid_open_mic: 'The host prohibits turning on the microphone',
|
|
170
|
+
fmt_toolbar_tips_host_forbid_open_camera: 'The host prohibits turning on the camera',
|
|
171
|
+
fmt_toolbar_details_info_locked: '(Locked)',
|
|
172
|
+
fmt_toolbar_details_room_locked: 'Meeting locked',
|
|
173
|
+
fmt_toolbar_details_room_locked_tip: 'No participants are allowed to enter the meeting',
|
|
174
|
+
fmt_toolbar_tips_details_unlock_meeting: 'You have unlocked the meeting, new participants can join',
|
|
175
|
+
fmt_toolbar_tips_actions_route_earphone: 'Switch to headphone mode',
|
|
176
|
+
fmt_toolbar_tips_actions_route_receiver: 'Switch to earpiece mode',
|
|
177
|
+
fmt_toolbar_tips_actions_route_speaker: 'Switch to speaker mode',
|
|
178
|
+
fmt_toolbar_tips_leave_room_lock_title: 'The meeting has been locked by the host',
|
|
179
|
+
fmt_toolbar_tips_leave_room_lock_info: 'After leaving the meeting, you cannot join again. Are you sure you want to leave?',
|
|
180
|
+
fmt_toolbar_leave_room_end_submit: 'Confirmed end',
|
|
181
|
+
fmt_toolbar_tips_leave_room_end_cancel: 'Temporarily not ending the meeting',
|
|
182
|
+
fmt_toolbar_tips_leave_host_select_submit_tips: 'Please designate a new host',
|
|
183
|
+
fmt_toolbar_leave_confirm_dialog_kick_title: 'Leave the meeting',
|
|
184
|
+
fmt_toolbar_tips_leave_confirm_dialog_kick_info: 'You have been removed from the meeting, click the button to exit the meeting.',
|
|
185
|
+
fmt_toolbar_leave_confirm_dialog_submit: 'Got It',
|
|
186
|
+
fmt_toolbar_tips_leave_confirm_dialog_end_title: 'The meeting has ended',
|
|
187
|
+
fmt_toolbar_tips_leave_confirm_dialog_end_info: 'The meeting has ended, please click the button to leave the meeting room',
|
|
188
|
+
fmt_additional_tips_cameraturnon: 'After accepting the invitation, your camera will turn on.',
|
|
189
|
+
fmt_additional_button_accept: 'accept',
|
|
190
|
+
fmt_additional_button_refuse: 'refuse',
|
|
191
|
+
fmt_additional_tips_unmute: "The host wants you to 'unmute'",
|
|
192
|
+
fmt_additional_tips_agreeturnon: 'After agreeing to release, your microphone will turn on.',
|
|
193
|
+
fmt_additional_options_Keepsilent: 'Keep silent',
|
|
194
|
+
fmt_actionbar_button_enable: 'Enable',
|
|
195
|
+
fmt_actionbar_button_disable: 'Disable',
|
|
196
|
+
fmt_actionbar_tips_cloudrecording_already: 'Cloud Recording has {reason1}',
|
|
197
|
+
fmt_actionbar_tips_joinroom_noaudio: 'Are you sure to join the meeting without audio?',
|
|
198
|
+
fmt_actionbar_tips_canthear: "You can't hear the other participants, and they can't hear you.",
|
|
199
|
+
fmt_actionbar_button_continue: 'Continue',
|
|
200
|
+
fmt_actionbar_option_connectaudio: 'Connect your audio',
|
|
201
|
+
fmt_actionbar_label_dialsip: 'Dial H.323/SIP Room System',
|
|
202
|
+
fmt_actionbar_tips_hidenonvideo: 'You have enabled the "Hide non-video window function", and the fixed window does not take effect',
|
|
203
|
+
fmt_popup_copywrite_stopstreamingnow: 'Are you sure to stop the live broadcast now?',
|
|
204
|
+
fmt_popup_options_confirmstop: 'Confirm to stop live streaming',
|
|
205
|
+
fmt_popup_options_placedbottom: 'Send to back',
|
|
206
|
+
fmt_popup_options_placedtop: 'Bring to front',
|
|
207
|
+
fmt_broadcast_tips_righturl: 'Please enter the correct live streaming page address',
|
|
208
|
+
fmt_broadcast_tips_anyonewatch: 'Anyone who uses this link can watch the live broadcast',
|
|
209
|
+
fmt_broadcast_tips_streamingwebpage: 'Please enter the URL of the live streaming webpage',
|
|
210
|
+
fmt_broadcast_tips_rightstreamingwebpage: 'Please enter the correct URL for the live streaming webpage',
|
|
211
|
+
fmt_broadcast_tips_initiatefailed: 'Initiate failed',
|
|
212
|
+
fmt_broadcast_tips_alreadybroadcasting: 'You have already initiated a live streaming service and need to stop before you can start a new live stream',
|
|
213
|
+
fmt_additional_tips_startstreamingfailed: 'Start live streaming failed',
|
|
214
|
+
fmt_additional_tips_updatelayoutfailed: 'Update live streaming layout failed',
|
|
215
|
+
fmt_additional_tips_stoplivefailed: 'Stop live streaming failed',
|
|
216
|
+
fmt_actionbar_livestreaming_option_livenow: 'Live On Custom Live Streaming now',
|
|
217
|
+
fmt_actionbar_livestreaming_option_customlive: 'On Custom Live Streaming Service',
|
|
218
|
+
fmt_actionbar_livestreaming_button_stoplive: 'Stop Live',
|
|
219
|
+
fmt_actionbar__livestreaming_labels_live: 'Live',
|
|
220
|
+
fmt_broadcast_text_copyurl: 'The meeting is streaming on other platforms, you can copy the live streaming link to others',
|
|
221
|
+
fmt_broadcast_livestream_stopped: 'The live stream has stopped',
|
|
222
|
+
fmt_broadcast_livestream_merge: 'Will be merged with {reason1}',
|
|
223
|
+
//****************** 设备检测&管理 ******************
|
|
224
|
+
fmt_device_label_audio_mute: 'Mute',
|
|
225
|
+
fmt_device_label_audio_unmute: 'Unmute',
|
|
226
|
+
fmt_device_label_video_start: 'Open Camera',
|
|
227
|
+
fmt_device_label_video_stop: 'Close camera',
|
|
228
|
+
fmt_device_label_audio_list_selectMicrophone: 'Select microphone',
|
|
229
|
+
fmt_device_label_audio_list_selectSpeaker: 'Select Speaker',
|
|
230
|
+
fmt_device_label_audio_list_leaveComputerAudio: 'Disable computer audio',
|
|
231
|
+
fmt_device_label_audio_list_switchToPhoneCall: 'Switch to phone audio',
|
|
232
|
+
fmt_device_label_audio_list_testAudioDevice: 'Test speaker and microphone',
|
|
233
|
+
fmt_device_label_audio_list_moreAudioSettings: 'More audio settings',
|
|
234
|
+
fmt_device_label_video_list_selectCamera: 'Select camera',
|
|
235
|
+
fmt_device_label_video_list_selectVirtualBackground: 'Select Virtual Background',
|
|
236
|
+
fmt_device_label_video_list_selectVideoFilter: 'Select video filter',
|
|
237
|
+
fmt_device_label_video_list_moreVideoSettings: 'More video settings',
|
|
238
|
+
fmt_modules_tips_notapplicate: 'Not applicable',
|
|
239
|
+
fmt_device_button_signout: 'Signout',
|
|
240
|
+
fmt_device_statues_opend: 'Opened',
|
|
241
|
+
fmt_device_statues_closed: 'Closed',
|
|
242
|
+
fmt_device_options_whitening: 'Whitening',
|
|
243
|
+
fmt_device_options_smoother: 'Smoother',
|
|
244
|
+
fmt_device_options_brighter: 'Brighter',
|
|
245
|
+
fmt_device_tips_videoeffectson: 'If the camera is turned on, the video effects will change in real-time',
|
|
246
|
+
fmt_device_labels_specialeffects: 'Special effects',
|
|
247
|
+
fmt_device_options_videojoin: 'Join with Video',
|
|
248
|
+
fmt_modules_labels_devicesettings: 'Device Settings',
|
|
249
|
+
fmt_status_label_Qualitystatistics: 'Quality statistics',
|
|
250
|
+
fmt_status_label_saysomething: 'Say Something',
|
|
251
|
+
fmt_status_label_stoprecord: 'Stop Recording',
|
|
252
|
+
fmt_status_label_rotation: 'reverse lens',
|
|
253
|
+
//****************** 入会检测 ******************
|
|
254
|
+
fmt_sip_button_unmute: 'Request to unmute',
|
|
255
|
+
fmt_sip_button_opencamera: 'Request to open camera',
|
|
256
|
+
fmt_sip_button_topup: 'Top up',
|
|
257
|
+
fmt_sip_button_rename: 'Rename',
|
|
258
|
+
fmt_sip_button_remove: 'Remove from meeting',
|
|
259
|
+
fmt_security_options_allowunmute: 'Allow participants to self unmute',
|
|
260
|
+
fmt_device_label_inspection_user_name: '{reason1} (you)',
|
|
261
|
+
fmt_device_label_inspection_mirror_mode: 'Mirror mode',
|
|
262
|
+
fmt_device_inspection_camera_on: 'Camera on',
|
|
263
|
+
fmt_device_inspection_turn_on_camera: 'Open Camera',
|
|
264
|
+
fmt_device_label_inspection_switch_camera: 'Flip over',
|
|
265
|
+
fmt_device_label_inspection_speaker_on: 'Speaker on',
|
|
266
|
+
fmt_device_inspection_turn_on_speaker: 'Open speaker',
|
|
267
|
+
fmt_device_inspection_start_meeting: 'Join Meeting',
|
|
268
|
+
fmt_device_label_inspection_audio_route_speaker: 'Speaker',
|
|
269
|
+
fmt_device_label_inspection_audio_route_receiver: 'Receiver',
|
|
270
|
+
fmt_device_inspection_audio_route_headset: 'Headset',
|
|
271
|
+
fmt_device_inspection_audio_route_mute: 'Mute',
|
|
272
|
+
fmt_device_enabled: 'Enabled',
|
|
273
|
+
fmt_device_disable: 'Not enabled',
|
|
274
|
+
fmt_device_lightening: 'Skin whitening',
|
|
275
|
+
fmt_device_smoothness: 'Grinding skin',
|
|
276
|
+
fmt_device_redness: 'Rosy',
|
|
277
|
+
fmt_device_reset: 'Reset',
|
|
278
|
+
fmt_device_beauty_camera_open_remind: 'If the camera is turned on, the video effects will change in real-time',
|
|
279
|
+
fmt_device_other_watch_me: 'Others look at me',
|
|
280
|
+
fmt_device_i_watch_self: 'I look at myself',
|
|
281
|
+
fmt_device_enable_beauty_filter: 'Beautification on',
|
|
282
|
+
fmt_device_disable_beauty_filter: 'Beautification off',
|
|
283
|
+
fmt_device_beauty_turnoff: 'Not applicable',
|
|
284
|
+
fmt_device_remind_property_title: 'IT is not recommended to use special effects due to the device performance is too low',
|
|
285
|
+
fmt_device_remind_property_content: 'Your device performance rating is below the requirements for the best experience, and enabling the current feature may cause the device to overheat and lag. Are you sure you want to continue enabling this feature?',
|
|
286
|
+
fmt_device_remind_beauty_open_camera_title: 'The effect you set will take effect. Do you want to turn on the camera?',
|
|
287
|
+
fmt_device_remind_beauty_open_camera_content: 'If the camera is not turned on, the Beautification will not take effect when exiting',
|
|
288
|
+
fmt_device_confirm_enable: 'Confirm activate',
|
|
289
|
+
fmt_device_mirroring_enable: 'Enable mirroring',
|
|
290
|
+
fmt_device_not_yet: 'Not yet',
|
|
291
|
+
fmt_device_beauty_on: 'Open',
|
|
292
|
+
fmt_device_options_redness: 'Rosy',
|
|
293
|
+
fmt_layout_label_speaker: 'Presenter View',
|
|
294
|
+
fmt_layout_label_gallery: 'Gallery view',
|
|
295
|
+
fmt_uimanager_labels_roomname: 'Room Name',
|
|
296
|
+
fmt_uimanager_labels_blank: '---',
|
|
297
|
+
fmt_uimanager_labels_Switchview: 'Switch layout',
|
|
298
|
+
fmt_uimanager_labels_sharing: 'Sharing...',
|
|
299
|
+
fmt_uimanager_button_returntocontent: 'Return to shared content',
|
|
300
|
+
fmt_uimanager_labels_screen: 'Screen',
|
|
301
|
+
fmt_uimanager_labels_whiteboard: 'Whiteboard',
|
|
302
|
+
fmt_uimanager_tips_passwordcopied: 'The meeting password has been copied to the clipboard',
|
|
303
|
+
fmt_uimanager_labels_wirednetwork: 'Wired network',
|
|
304
|
+
fmt_uimanager_option_flipleaf: 'Flip left',
|
|
305
|
+
fmt_uimanager_option_Reset: 'Reset',
|
|
306
|
+
fmt_uimanager_option_Cameraview: 'Others look at me ',
|
|
307
|
+
fmt_uimanager_option_Selfieview: 'Look at my self ',
|
|
308
|
+
fmt_uimanager_tips_urmuted: 'You have been muted by the host',
|
|
309
|
+
fmt_uimanager_tips_urturnedoff: 'You have had your camera turned off by the host',
|
|
310
|
+
fmt_uimanager_tips_norightsvideo: 'You have no permission to start video',
|
|
311
|
+
fmt_uimanager_tips_norightsaudio: 'You have no permission to start audio',
|
|
312
|
+
fmt_uimanager_tips_inviteturnon: 'The host invites you to turn on the camera',
|
|
313
|
+
fmt_uimanager_tips_Remove: 'Remove {reason2}',
|
|
314
|
+
fmt_uimanager_tips_designedas: 'Should {reason1} be designated as the {reason2} of the meeting?',
|
|
315
|
+
fmt_uimanager_tips_userleaft: 'The user has left the meeting',
|
|
316
|
+
fmt_uimanager_labels_Setas: 'Set as {reason1}',
|
|
317
|
+
fmt_uimanager_tips_allmuted: 'You have turned on all mute',
|
|
318
|
+
fmt_uimanager_tips_meetinglocked: 'You have locked the meeting, no one else can join',
|
|
319
|
+
fmt_uimanager_tips_meetingunlocked: 'You have unlocked the meeting, new participants can join',
|
|
320
|
+
fmt_uimanager_labels_designate: 'You have been designated as',
|
|
321
|
+
fmt_uimanager_labels_Becoming: '{reason2} Becoming {reason1}',
|
|
322
|
+
fmt_uimanager_tips_exceed: 'Exceeding the limit',
|
|
323
|
+
fmt_uimanager_labels_Clickselect: 'Click to select',
|
|
324
|
+
fmt_uimanager_button_determine: 'Confirm',
|
|
325
|
+
fmt_uimanager_button_Meetnow: 'Meet now',
|
|
326
|
+
fmt_uimanager_option_dualchannel: 'Shared dual channel',
|
|
327
|
+
fmt_uimanager_option_Sharedmono: 'Shared mono',
|
|
328
|
+
fmt_uimanager_option_Monochannel: 'Mono channel',
|
|
329
|
+
fmt_uimanager_option_Stereo: 'Stereo (high fidelity)',
|
|
330
|
+
fmt_uimanager_option_Improvefluency: 'Improve video fluency',
|
|
331
|
+
fmt_uimanager_option_Fluencypriority: 'Fluency first',
|
|
332
|
+
fmt_uimanager_option_Movebottom: 'Move to the bottom',
|
|
333
|
+
fmt_uimanager_option_Movetop: 'Move to the top',
|
|
334
|
+
fmt_uimanager_labels_Application: 'Application',
|
|
335
|
+
fmt_uimanager_tips_ilock: 'The host (me) has locked the meeting,and no one else is allowed to join',
|
|
336
|
+
fmt_uimanager_button_close: 'Close',
|
|
337
|
+
fmt_uimanager_option_popwindow: 'Pop up a separate window',
|
|
338
|
+
fmt_uimanager_option_mergeview: 'Merge to the right side of the view',
|
|
339
|
+
fmt_uimanager_labels_deviceselect: 'Please select a device',
|
|
340
|
+
fmt_uimanager_labels_mirror: 'Mirror',
|
|
341
|
+
fmt_modules_labels_speaking: 'Speaking:',
|
|
342
|
+
fmt_modules_status_nowspeaking: '{reason1} is speaking',
|
|
343
|
+
fmt_uimanager_window_un_pin: 'Cancel fixed',
|
|
344
|
+
fmt_uimanager_window_pin_success: 'The screen is locked. Click on the bottom right corner to unlock it',
|
|
345
|
+
fmt_uimanager_window_un_pin_success: 'The screen has been unlocked',
|
|
346
|
+
fmt_uimanager_window_pin_error_hide_mine: "You have enabled the 'Hide My Videos' feature, but the fixed window cannot take effect",
|
|
347
|
+
fmt_uimanager_window_pin_error_hide_no_video: "You have enabled the 'Hide Non Video Attendees' feature, but the fixed window cannot take effect",
|
|
348
|
+
fmt_uimanager_follow_pc: "Simulate following the host's computer view",
|
|
349
|
+
fmt_chat_label_chat: 'Chat',
|
|
350
|
+
fmt_chat_window_title: 'Chat',
|
|
351
|
+
fmt_chat_setting_privilege: 'Attendees can chat with:',
|
|
352
|
+
fmt_chat_setting_privilege_list_no: 'Nothing',
|
|
353
|
+
fmt_chat_setting_privilege_list_everyone: 'All',
|
|
354
|
+
fmt_chat_window_position_popup: 'Independent pop-up',
|
|
355
|
+
fmt_chat_window_position_merge: 'Merge into the main window',
|
|
356
|
+
fmt_chat_tips_exceedlimit: 'Exceeding word limit, please delete before sending',
|
|
357
|
+
fmt_chat_button_muteall: 'All prohibited speech',
|
|
358
|
+
fmt_chat_tips_Networkconnect: 'Network connection in progress Cannot send temporarily',
|
|
359
|
+
fmt_chat_tips_selectchat: 'Please select the user you want to chat with',
|
|
360
|
+
fmt_chat_tips_permissionchange: 'The host has changed permissions, please select again',
|
|
361
|
+
fmt_chat_option_onlypublic: 'Only allow public chat',
|
|
362
|
+
fmt_chat_option_onlyprivate: 'Only allow private chat hosts and co hosts',
|
|
363
|
+
fmt_chat_tips_newmessage: '{reason1} New Messages',
|
|
364
|
+
fmt_chat_button_latestlocation: 'Return to the latest location',
|
|
365
|
+
fmt_chat_tips_freechat: 'Free chat permission has been enabled',
|
|
366
|
+
fmt_chat_tips_onlypublic: 'The chat room permission has been changed to only allow public chat',
|
|
367
|
+
fmt_chat_tips_muteroom: 'The chat room has been muted',
|
|
368
|
+
fmt_chat_labels_sendto: 'Send to',
|
|
369
|
+
fmt_chat_option_all: 'All',
|
|
370
|
+
fmt_chat_tips_selecthost: 'Please choose a host or cohost',
|
|
371
|
+
fmt_chat_tips_nodata: 'No data',
|
|
372
|
+
fmt_chats_label_from: 'From',
|
|
373
|
+
fmt_chats_label_privatechat: 'Private chat',
|
|
374
|
+
fmt_chat_options_Freechat: 'Free chat',
|
|
375
|
+
fmt_chat_options_Forbidchat: 'Forbid chat',
|
|
376
|
+
fmt_chat_options_Notapplicable: 'Not applicable',
|
|
377
|
+
fmt_chat_label_Chatmanagement: 'Chat management',
|
|
378
|
+
fmt_chat_button_MultipleChoice: 'Multiple Choice',
|
|
379
|
+
fmt_chat_tips_otherpartyleave: 'The other party may have left the meeting and cannot receive messages. Please select a new chat partner',
|
|
380
|
+
fmt_chat_options_onlyprivatechat: 'Private chat with the host and co host',
|
|
381
|
+
fmt_chat_tips_chatpermissionchange: 'The chat room permissions have changed to only host and co host can private chat ',
|
|
382
|
+
fmt_pairicipant_tips_cohostbeenrevoke: 'Your co host identity has been revoked',
|
|
383
|
+
fmt_pairicipant_tips_cohostrevoke: "{reason1}'s co host status has been revoked",
|
|
384
|
+
fmt_pairicipant_tips_nolongercohost: '{reason1} is no longer a co host',
|
|
385
|
+
fmt_pairicipant_label_Now: 'Now',
|
|
386
|
+
fmt_pairicipant_tips_notempty: 'Role type cannot be empty',
|
|
387
|
+
fmt_chat_to_label_to: 'towards',
|
|
388
|
+
fmt_chat_label_bubbletip: 'Chat Bubble Tips',
|
|
389
|
+
fmt_attendies_label_chatpermisson: "Participants' chat permissions during the meeting",
|
|
390
|
+
fmt_chate_tips_leave: '{reason1} may have left the meeting and cannot receive messages. Please select a new chat partner',
|
|
391
|
+
fmt_chat_label_meetingchat: 'Meeting Chat',
|
|
392
|
+
fmt_chate_tips_wordoutrange: 'Exceeding the word limit, please adjust the word count before sending',
|
|
393
|
+
fmt_chat_txt_max_number: 'Exceeding the word limit, please adjust the word count before sending',
|
|
394
|
+
fmt_chat_private_tips: 'The other party may have left the meeting and cannot receive messages. Please select a new chat partner',
|
|
395
|
+
fmt_chat_send_to: 'Send to',
|
|
396
|
+
fmt_chat_copy_to_clipboard: 'Copy to clipboard',
|
|
397
|
+
fmt_chat_private_hosts: 'Please select the user you want to chat with',
|
|
398
|
+
fmt_chat_private_permission_changes: 'The host has changed permissions, please select again',
|
|
399
|
+
fmt_chat_status_call_in: 'Connecting via voice',
|
|
400
|
+
fmt_chat_room_chat_limit: 'Currently muted, unable to send messages',
|
|
401
|
+
fmt_chat_private_to_me: 'Me (private)',
|
|
402
|
+
fmt_chat_enable_limit: 'Currently mutted',
|
|
403
|
+
fmt_chat_say_something: 'Say something',
|
|
404
|
+
fmt_chat_send_cohost: 'Host/Co Host',
|
|
405
|
+
fmt_chat_setting_value: "Participants' chat permissions in the meeting",
|
|
406
|
+
fmt_chat_send_open: 'Allow chat freely',
|
|
407
|
+
fmt_chat_send_only_open: 'Only public chat allowed',
|
|
408
|
+
fmt_chat_send_only_cohost: 'Only hosts and co hosts private chat allowed',
|
|
409
|
+
fmt_chat_send_limit: 'All participants are prohibited from speaking',
|
|
410
|
+
fmt_chat_to_me: 'to me',
|
|
411
|
+
fmt_chat_sending_to: 'to',
|
|
412
|
+
fmt_chat_to_you: 'You',
|
|
413
|
+
fmt_send_msg_max_length: 'Copy to clipboard (up to %1$d entries)',
|
|
414
|
+
fmt_networkstatus_state_disconnect: 'Reconnecting network... Cannot send messages',
|
|
415
|
+
fmt_open_chat_permission: 'Free chat allowed',
|
|
416
|
+
fmt_chat_rooms_are_enable: 'Chat room enabled',
|
|
417
|
+
fmt_chat_room_mute_is_enabled: 'The chat room has been disabled',
|
|
418
|
+
fmt_chat_only_open: 'The chat room permission has been changed to only allow public chat',
|
|
419
|
+
fmt_chat_only_host_cohost: 'The chat room permissions have been changed to only allow host and co host private chat',
|
|
420
|
+
fmt_allow_white_board_label_edit: 'Editable whiteboard',
|
|
421
|
+
fmt_chat_copy_me_to: 'I said to {reason1} (%2$s): \n%3$s',
|
|
422
|
+
fmt_chat_copy_from_to: '{reason1} said to%2$s (%3$s): \n%4$s',
|
|
423
|
+
fmt_chat_copy_me_to_all: 'I say to everyone ({reason1}): \n%2$s',
|
|
424
|
+
fmt_chat_copy_from_to_all: '{reason1} To everyone (%2$s): \n%3$s',
|
|
425
|
+
fmt_chat_back_to_the_latest_location: 'Return to the latest location',
|
|
426
|
+
fmt_chat_new_unread_messages: '%1$d new unread message',
|
|
427
|
+
fmt_chat_unread_messages: '%1$d unread message',
|
|
428
|
+
fmt_chat_private_to_user: 'to {reason1}',
|
|
429
|
+
fmt_chat_network_connect: 'Connecting %1$s',
|
|
430
|
+
fmt_chat_setting_title: 'Chat Setting',
|
|
431
|
+
fmt_chat_setting_bubble_tips: 'Chat Bubble Tips',
|
|
432
|
+
fmt_chat_big_bubble: 'Big Bubble',
|
|
433
|
+
fmt_chat_small_bubble: 'Small Bubble',
|
|
434
|
+
fmt_chat_label_enter_message: 'Enter a message ',
|
|
435
|
+
fmt_screenshare_window_tab_basic: 'Basics',
|
|
436
|
+
fmt_screenshare_window_tab_advanced: 'Senior',
|
|
437
|
+
fmt_screenshare_window_button_start: 'Start sharing',
|
|
438
|
+
fmt_screenshare_window_checkbox_shareAudio: 'Share sound',
|
|
439
|
+
fmt_screenshare_controlbar_button_stop: 'Stop sharing',
|
|
440
|
+
fmt_screenshare_controlbar_button_microphone: 'Microphone',
|
|
441
|
+
fmt_screenshare_controlbar_button_camera: 'Camera',
|
|
442
|
+
fmt_screenshare_controlbar_button_security: 'Security',
|
|
443
|
+
fmt_screenshare_controlbar_button_participant: 'Member List',
|
|
444
|
+
fmt_screenshare_controlbar_button_newScreenshare: 'New sharing',
|
|
445
|
+
fmt_screenshare_controlbar_button_more: 'More',
|
|
446
|
+
fmt_screenshare_controlbar_button_more_chat: 'Chat',
|
|
447
|
+
fmt_screenshare_controlbar_button_more_cloudRecord: 'Cloud recording',
|
|
448
|
+
fmt_screenshare_controlbar_button_more_live: 'Live Broadcast',
|
|
449
|
+
fmt_screenshare_controlbar_button_more_setting: 'Setting',
|
|
450
|
+
fmt_screenshare_controlbar_status_sharing: 'You are sharing a screen',
|
|
451
|
+
fmt_screenshare_controlbar_security_list_lock: 'Lock the meeting',
|
|
452
|
+
fmt_screenshare_controlbar_security_list_participant_screenshare: 'Share Screen',
|
|
453
|
+
fmt_screenshare_controlbar_security_list_participant_chat: 'chat',
|
|
454
|
+
fmt_screenshare_controlbar_security_list_participant_unmute: 'Self unmute',
|
|
455
|
+
fmt_screenshare_controlbar_security_list_participant_startVideo: 'Self start video',
|
|
456
|
+
fmt_screenshare_controlbar_security_list_participant_changeName: 'Change name',
|
|
457
|
+
fmt_screenshare_controlbar_security_list_participantManagement: 'Allow attendees',
|
|
458
|
+
fmt_screenshare_button_chosecontent: 'Select shared content',
|
|
459
|
+
fmt_screenshare_tips_newsharing: 'Initiate a new screen sharing',
|
|
460
|
+
fmt_screenshare_label_screenshare: 'Share Screen',
|
|
461
|
+
fmt_screenshare_button_sharewhiteboard: 'Share Whiteboard',
|
|
462
|
+
fmt_screenshare_button_chosewhiteboard: 'Close whiteboard',
|
|
463
|
+
fmt_screenshare_options_alreadyopend: 'Shared whiteboard (already opened by others)',
|
|
464
|
+
fmt_screenshare_options_allow: 'Allow attendees',
|
|
465
|
+
fmt_screenshare_options_editable: 'Annotate and edit whiteboards',
|
|
466
|
+
fmt_screenshare_button_disableshare: 'Disable sharing of {reason1}',
|
|
467
|
+
fmt_screenshare_label_application: 'Application',
|
|
468
|
+
fmt_screenshare_tips_imsharing: 'I am in sharing the whiteboard',
|
|
469
|
+
fmt_screenshare_tips_smonesharing: 'Someone is sharing the whiteboard',
|
|
470
|
+
fmt_screenshare_tips_alreadyopened: 'Someone has already opened the whiteboard',
|
|
471
|
+
fmt_screenshare_button_stopshare: 'Stop',
|
|
472
|
+
fmt_screenshare_button_localrecordingmiss: 'Local recording',
|
|
473
|
+
fmt_screenshare_tips_hostprohibits: 'The host prohibits screen sharing. You can contact the meeting administrator to enable it',
|
|
474
|
+
fmt_screenshare_tips_enablecollection: 'Screen sharing is being collected. Please try again later',
|
|
475
|
+
fmt_screenshare_tips_hostprohibitssharing: 'Host prohibits screen sharing',
|
|
476
|
+
fmt_screenshare_tips_faild_reselect: 'Screen sharing failed, please reselect the window',
|
|
477
|
+
fmt_screenshare_tips_faild_screenselect: 'Screen sharing failed, please select the screen to share again',
|
|
478
|
+
fmt_screenshare_tips_faild_nopermission: 'Screen sharing failed, screen sharing permission has been revoked by the host',
|
|
479
|
+
fmt_screenshare_tips_faild_restrict: 'Screen sharing is restricted',
|
|
480
|
+
fmt_screenshare_tips_faild_alreadysharing: 'Someone is already sharing the screen, you cannot operate it temporarily.',
|
|
481
|
+
fmt_screenshare_options_allowshare: 'Allow flexible meetings to share screens',
|
|
482
|
+
fmt_screenshare_tips_notavailable: 'Screen sharing is not available',
|
|
483
|
+
fmt_screenshare_whiteboard_button_exitdrawing: 'Exit drawing',
|
|
484
|
+
fmt_screenshare_options_enableedit: 'Enable whiteboard editing',
|
|
485
|
+
fmt_actionbar_screenshare_option_selectcontent: 'Select shared content',
|
|
486
|
+
fmt_actionbar_screenshare_labels_others: 'Others',
|
|
487
|
+
fmt_actionbar_screenshare_tips_restrictshare: 'The Host restricts screen sharing function',
|
|
488
|
+
fmt_modules_labels_sharing: 'You are sharing',
|
|
489
|
+
fmt_share_tips_othsersharing: 'Other attendees are sharing',
|
|
490
|
+
fmt_share_tips_stopothersharing: "Initiate sharing now and {reason1}'s sharing will be stopped. Continue?",
|
|
491
|
+
fmt_share_buttons_contiueshare: 'Continue',
|
|
492
|
+
fmt_share_tips_otherssharing: 'There are other participants who are sharing',
|
|
493
|
+
fmt_share_tips_sharingdisabled: 'Your sharing is stopped',
|
|
494
|
+
fmt_share_tips_sharingprohibit_byhost: 'The host {reason1} has stopped your sharing',
|
|
495
|
+
fmt_share_tips_sharingprohibit_bycohost: 'Co-host {reason1} has stopped your sharing',
|
|
496
|
+
fmt_share_tips_sharingprohibit_gotit: 'Got it ',
|
|
497
|
+
fmt_share_tips_othersharingboard: 'Other attendees are sharing the whiteboard',
|
|
498
|
+
fmt_share_tips_boardonly: 'Only one person can initiate a cloud whiteboard for a meeting',
|
|
499
|
+
fmt_share_tips_sharingscreen: 'You are sharing the screen',
|
|
500
|
+
fmt_share_tips_willstopsharingscreen: 'Initiating whiteboard sharing now will stop your screen sharing. Continue?',
|
|
501
|
+
fmt_share_label_saysomething: 'Say something',
|
|
502
|
+
fmt_share_label_canttalk: 'Currently muted',
|
|
503
|
+
fmt_screenshare_screen_and_board: 'Share screen and whiteboard',
|
|
504
|
+
fmt_screenshare_editable_board: 'Editable whiteboard',
|
|
505
|
+
fmt_screenshare: 'Share',
|
|
506
|
+
fmt_screenshare_button_newshare: 'New share',
|
|
507
|
+
fmt_screenshare_button_stopsharing: 'Stop share',
|
|
508
|
+
fmt_screenshare_status_sharing: 'Screen sharing',
|
|
509
|
+
fmt_screenshare_button_replace: 'Replace',
|
|
510
|
+
fmt_screenshare_button_start: 'Start',
|
|
511
|
+
fmt_screenshare_button_stop: 'Stop',
|
|
512
|
+
fmt_screenshare_stop_share_board: 'Stop sharing whiteboard',
|
|
513
|
+
fmt_screenshare_stop_share_screen: 'Stop sharing screen',
|
|
514
|
+
fmt_screenshare_no_permission_open_board: 'No permission to open whiteboard',
|
|
515
|
+
fmt_screenshare_administrator_disables_share_screen_board: 'Meeting administrators disable shared screens or whiteboards',
|
|
516
|
+
fmt_screenshare_no_permission_close_board: 'No permission to close whiteboard',
|
|
517
|
+
fmt_screenshare_clash_board_remind_title: 'Other attendees are sharing the whiteboard',
|
|
518
|
+
fmt_screenshare_clash_board_remind_content: 'The cloud whiteboard in the meeting only supports one person to initiate.',
|
|
519
|
+
fmt_screenshare_clash_screen_share_remind_title: 'Other attendees are sharing',
|
|
520
|
+
fmt_screenshare_clash_screen_share_remind_content: 'Initiating the sharing now will stop {reason1}‘s screen sharing. Do you want to continue?',
|
|
521
|
+
fmt_screenshare_clash_screen_share_remind_content_stop_board: 'Initiating the sharing now will stop {reason1}‘s whiteboard sharing. Do you want to continue?',
|
|
522
|
+
fmt_screenshare_opposite_side: 'other party',
|
|
523
|
+
fmt_screenshare_continue_share: 'Continue to initiate sharing',
|
|
524
|
+
fmt_screenshare_cohost_can_not_share_remind: 'Security settings are restricted, only the host and co hosts can share screens.',
|
|
525
|
+
fmt_screenshare_pop_more: 'Multiple Choice',
|
|
526
|
+
fmt_screenshare_room_new_screen_share: '{reason1} is sharing the screen',
|
|
527
|
+
fmt_screenshare_room_speaker_spotlight_username: 'Speaking: {reason1}',
|
|
528
|
+
fmt_screenshare_stop_other_screen_share: 'Stop screen sharing with others',
|
|
529
|
+
fmt_screenshare_not_open_yet: 'Not yet open',
|
|
530
|
+
fmt_screenshare_audio_des: 'Shared device audio:',
|
|
531
|
+
fmt_screenshare_audio_on: 'Open',
|
|
532
|
+
fmt_screenshare_audio_off: 'Close',
|
|
533
|
+
fmt_screenshare_stop_screen_share: 'Stop screen sharing',
|
|
534
|
+
fmt_screenshare_disablelayout_while_share: 'Large and small layout will be disabled while sharing screen and whiteboard',
|
|
535
|
+
fmt_screenshare_start: 'Start sharing',
|
|
536
|
+
fmt_screenshare_stop_your_share: 'Your sharing has been stopped',
|
|
537
|
+
fmt_screenshare_tips_share_audio_micon: 'The microphone need to be turned on to play shared audio',
|
|
538
|
+
fmt_screenshare_tips_share_audio_turnonmic: 'Do you want to turn on your microphone to play shared audio?',
|
|
539
|
+
fmt_screenshare_button_giveup_shareaudio: 'Give up sharing audio',
|
|
540
|
+
fmt_screenshare_button_confirm_shareaudio: 'Turn on Mic',
|
|
541
|
+
fmt_screenshare_tips_sharing_audio_keep_on: 'When sharing audio, you need to keep the microphone on to ensure that the audio plays normally. Turn on the microphone?',
|
|
542
|
+
fmt_screenshare_tips_sharing_audio_cancel: 'Stop audio sharing ',
|
|
543
|
+
fmt_screenshare_tips_sharing_audio_confirm: 'Keep Mic on',
|
|
544
|
+
fmt_screenshare_tips_sharing_disabled_tocontact: ' {reason1} Disabled sharing, you can contact the meeting administrator to enable it',
|
|
545
|
+
fmt_screenshare_tips_unenabled: 'The conference administrator has not enabled the whiteboard editing function',
|
|
546
|
+
fmt_screenshare_whiteboard_options_changetheme: 'Change whiteboard theme',
|
|
547
|
+
fmt_screenshare_tips_alreadyoriginalsize: "It is already 'original size'",
|
|
548
|
+
fmt_screenshare_lables_originalsize: 'Original size',
|
|
549
|
+
fmt_screenshare_whiteboard_tips_alreadyadaptionsize: "It is already the 'adaptation window'",
|
|
550
|
+
fmt_screenshare_lables_adaptionlsize: 'Adapt to the window',
|
|
551
|
+
fmt_screenshare_whiteboard_tips_alreadymaximumsize: 'The maximum size has been reached',
|
|
552
|
+
fmt_screenshare_whiteboard_button_enlarge: 'Enlarge',
|
|
553
|
+
fmt_screenshare_whiteboard_tips_alreadyminumumsize: 'The minimum size has been reached',
|
|
554
|
+
fmt_screenshare_whiteboard_button_narrow: 'Narrow',
|
|
555
|
+
fmt_screenshare_whiteboard_tips_someonesharing: '{reason1} is sharing a whiteboard',
|
|
556
|
+
fmt_screenshare_whiteboard_tips_reconnecting: 'We are reconnecting the whiteboard for you, please wait...',
|
|
557
|
+
fmt_screenshare_whiteboard_tips_reconnectinghold: 'We are reconnecting the whiteboard for you, please wait...',
|
|
558
|
+
fmt_screenshare_whiteboard_tips_couldreopen: "If you haven't connected to the whiteboard for a long time, you can temporarily close the whiteboard and try again later.",
|
|
559
|
+
fmt_screenshare_whiteboard_tips_reopening: 'Opening whiteboard, please wait...',
|
|
560
|
+
fmt_screenshare_whiteboard_tips_continuewaiting: 'Continue waiting....',
|
|
561
|
+
fmt_screenshare_whiteboard_button_dontwait: 'Close the whiteboard without waiting',
|
|
562
|
+
fmt_screenshare_whiteboard_tips_defaultwhiteboard: 'Whiteboard (default)',
|
|
563
|
+
fmt_screenshare_whiteboard_tips_blackboard: 'Blackboard',
|
|
564
|
+
fmt_screenshare_whiteboard_lables_wallpoaster: 'Chalk Wall Poster',
|
|
565
|
+
fmt_screenshare_whiteboard_tips_righclick: 'Right click to set as permanent color',
|
|
566
|
+
fmt_screenshare_whiteboard_button_setcolor: 'Set as permanent color',
|
|
567
|
+
fmt_screenshare_whiteboard_button_eraser: 'Eraser',
|
|
568
|
+
fmt_screenshare_whiteboard_button_empty: 'Empty',
|
|
569
|
+
fmt_screenshare_whiteboard_button_additionaltools: 'Additional tools',
|
|
570
|
+
fmt_screenshare_whiteboard_button_withdrwa: 'Withdraw',
|
|
571
|
+
fmt_screenshare_whiteboard_button_forward: 'Forward',
|
|
572
|
+
fmt_screenshare_whiteboard_button_paintbrush: 'Paint brush',
|
|
573
|
+
fmt_screenshare_whiteboard_button_cutting: 'Cutting',
|
|
574
|
+
fmt_screenshare_whiteboard_button_screenshot: 'Screenshot',
|
|
575
|
+
fmt_screenshare_whiteboard_options_hideshot: 'Hidden room screenshot',
|
|
576
|
+
fmt_screenshare_whiteboard_button_shape: 'Shape',
|
|
577
|
+
fmt_screenshare_whiteboard_button_laserpen: 'Laser pen',
|
|
578
|
+
fmt_screenshare_whiteboard_button_boxselection: 'Box selection',
|
|
579
|
+
fmt_screenshare_whiteboard_button_text: 'Text',
|
|
580
|
+
fmt_screenshare_whiteboard_button_dragdrop: 'Drag and drop',
|
|
581
|
+
fmt_screenshare_whiteboard_button_savescript: 'Save Whiteboard Script',
|
|
582
|
+
fmt_screenshare_whiteboard_button_spread: 'Spread',
|
|
583
|
+
fmt_screenshare_whiteboard_tips_downloading: 'The blackboard is currently being downloaded',
|
|
584
|
+
fmt_screenshare_whiteboard_tips_savedsuccessfully: 'Board book saved successfully',
|
|
585
|
+
fmt_screenshare_whiteboard_tips_failed: 'Board saving failed',
|
|
586
|
+
fmt_screenshare_whiteboard_tips_stoppedboard: 'Your sharing has been stopped',
|
|
587
|
+
fmt_screenshare_whiteboard_lables_newshare: 'Initiate a new sharing',
|
|
588
|
+
fmt_screenshare_whiteboard_button_gotit: 'Got it',
|
|
589
|
+
fmt_screenshare_whiteboard_tips_stopped: 'Sharing has stopped',
|
|
590
|
+
fmt_screenshare_whiteboard_tips_cannotjoin: 'Cannot join room',
|
|
591
|
+
fmt_screenshare_whiteboard_tips_alreadyopend: 'Board resource already opened',
|
|
592
|
+
fmt_screenshare_whiteboard_tips_stop_continue: 'Initiating screen sharing now will stop your whiteboard. Do you want to continue?',
|
|
593
|
+
fmt_whiteboard_labels_colour: 'Colour',
|
|
594
|
+
fmt_share_options_smallpen: 'Small brush strokes',
|
|
595
|
+
fmt_share_options_midpen: 'Medium brush stroke',
|
|
596
|
+
fmt_share_options_bigpen: 'Large brush strokes',
|
|
597
|
+
fmt_share_options_yellow: 'Yellow',
|
|
598
|
+
fmt_share_options_blue: 'Blue',
|
|
599
|
+
fmt_share_options_purple: 'Purple',
|
|
600
|
+
fmt_share_options_green: 'Green',
|
|
601
|
+
fmt_share_options_whiteboard: 'Whiteboard',
|
|
602
|
+
fmt_whiteboard_save_success: 'Image storage succeed',
|
|
603
|
+
fmt_whiteboard_save_failure: 'Image download failed',
|
|
604
|
+
fmt_whiteboard_tips_two_finger_move: 'Move whiteboard by two fingers',
|
|
605
|
+
fmt_whiteboard_tips_expanded: 'Vertical screen maximization,you can move canvas horizontally with two fingers',
|
|
606
|
+
fmt_whiteboard_tips_collapsed: 'Adapted to window size',
|
|
607
|
+
fmt_whiteboard_tips_selector: 'Content can be selected for editing',
|
|
608
|
+
fmt_whiteboard_tips_text: 'Please enter text',
|
|
609
|
+
fmt_whiteboard_tips_rectangle: 'Square',
|
|
610
|
+
fmt_whiteboard_tips_triangle: 'Triangle',
|
|
611
|
+
fmt_whiteboard_tips_circle: 'Rotundity',
|
|
612
|
+
fmt_whiteboard_label_pentagon: 'pentagon',
|
|
613
|
+
fmt_whiteboard_label_prismatic: 'Prismatic',
|
|
614
|
+
fmt_whiteboard_tips_straight: 'Straight line',
|
|
615
|
+
fmt_whiteboard_tips_arrow: 'Arrow',
|
|
616
|
+
fmt_whiteboard_tips_change_color: 'Change color and stroke size',
|
|
617
|
+
fmt_whiteboard_tips_change_bg: 'Change whiteboard background color',
|
|
618
|
+
fmt_whiteboard_tips_change_bg_white: 'White board elected',
|
|
619
|
+
fmt_whiteboard_tips_change_bg_black: 'Black board elected',
|
|
620
|
+
fmt_whiteboard_tips_change_bg_green: 'Chalk green elected',
|
|
621
|
+
fmt_whiteboard_tips_stop_share: 'Stop whiteboard',
|
|
622
|
+
fmt_whiteboard_tips_start_share: 'Open the whiteboard',
|
|
623
|
+
fmt_whiteboard_tips_share_failed: 'Whiteboard sharing failed',
|
|
624
|
+
fmt_whiteboard_tips_stop_share_failed: 'Stop whiteboard sharing failed',
|
|
625
|
+
fmt_whiteboard_tips_start_share_failed: 'Failed to enable whiteboard sharing',
|
|
626
|
+
fmt_whiteboard_tips_download_permission_denied: 'Download whiteboard writing requires storage permission',
|
|
627
|
+
fmt_whiteboard_dialog_share_stopped_message_host: 'The host ({reason1}) has stopped your sharing',
|
|
628
|
+
fmt_whiteboard_dialog_share_stopped_message_cohost: 'The co host ({reason1}) has stopped your sharing',
|
|
629
|
+
fmt_screenshare_whiteboard_option_disablesharing: 'Disable screen sharing or whiteboarding',
|
|
630
|
+
fmt_share_options_blackboard: 'Blackboard',
|
|
631
|
+
fmt_share_options_chalkboard: 'Chalkboard',
|
|
632
|
+
fmt_share_label_shareboard: "{reason1}'s ’ whiteboard sharing",
|
|
633
|
+
fmt_information_label_clicktocopy: 'Click to copy the meeting ID number',
|
|
634
|
+
fmt_information_tips_beencopied: 'The meeting number has been copied to the clipboard',
|
|
635
|
+
fmt_information_tips_numbercopyfailed: 'Meeting number copying failed',
|
|
636
|
+
fmt_information_options_sharedetail: 'Share meeting detailed information or url ',
|
|
637
|
+
fmt_meetingInfo_label: 'Meeting Details',
|
|
638
|
+
fmt_meetingInfo_window_title: 'Meeting link',
|
|
639
|
+
fmt_meetingInfo_window_info_meetingID: 'Meeting Number',
|
|
640
|
+
fmt_meetingInfo_window_info_meetingID_copy: 'Copy',
|
|
641
|
+
fmt_sharing_button_download: 'Download Dynamic Meeting',
|
|
642
|
+
fmt_invitation_tips_invitationfailed: 'Invitation link copyied failed',
|
|
643
|
+
fmt_invitation_tips_invitation: 'The invitation link has been copied to the clipboard',
|
|
644
|
+
fmt_meetinginfo_tips_lockedroom: 'Meeting locked in',
|
|
645
|
+
fmt_meetinginfo_tips_nobycanjoin: 'No attendees are allowed to enter the meeting',
|
|
646
|
+
fmt_meetinginfo_label_code: 'Password',
|
|
647
|
+
fmt_meetinginfo_details_code_none: 'Not set',
|
|
648
|
+
fmt_meetinginfo_my_name_label: 'My name',
|
|
649
|
+
fmt_meetinginfo_room_topic: 'Conference theme',
|
|
650
|
+
fmt_meetinginfo_duration_reservation: 'Duration/Reservation',
|
|
651
|
+
fmt_meetinginfo_dialog_title_meeting_info: 'Meeting information',
|
|
652
|
+
fmt_meetinginfo_duration_1: '%1$d minute',
|
|
653
|
+
fmt_meetinginfo_duration_2: '%1$d hour and %2$d minutes',
|
|
654
|
+
fmt_meetinginfo_duration_2_no_min: '%1$d hour',
|
|
655
|
+
//标签
|
|
656
|
+
fmt_information_label_lockmeeting: 'Lock Meeting',
|
|
657
|
+
//提示
|
|
658
|
+
fmt_information_tips_lockedbyhost: 'The {reason1} has locked the meeting and no one else is allowed to join',
|
|
659
|
+
//提示
|
|
660
|
+
fmt_information_tips_copysuccess: 'Copy successful (?)',
|
|
661
|
+
//提示
|
|
662
|
+
fmt_information_tips_copyfailed: 'Copy failed (?)',
|
|
663
|
+
//标签
|
|
664
|
+
fmt_information_label_sharemeetingnumber: 'Share meeting number or invitation link',
|
|
665
|
+
//提示
|
|
666
|
+
fmt_additional_tips_invitationfailed: 'Invitation link copying failed',
|
|
667
|
+
//提示
|
|
668
|
+
fmt_additional_tips_invitation: 'The invitation link has been copied to the clipboard',
|
|
669
|
+
fmt_sharing_button_copydetailed: 'Copy detailed',
|
|
670
|
+
fmt_sharing_label_invitationlink: 'link',
|
|
671
|
+
fmt_sharing_tips_copyto_clipboard: 'invite information copied to clipboard',
|
|
672
|
+
fmt_sharing_tips_copyfull_failed: 'invite information copied failed',
|
|
673
|
+
fmt_sharing_label_invitationdetailed: '{reason1} invites you to join the meeting, the meeting topic: {reason2}, the meeting time: {reason3}, the meeting link: {reason4}',
|
|
674
|
+
//通知
|
|
675
|
+
fmt_information_tips_meeting_inprogress: 'Meeting in progress',
|
|
676
|
+
//通知
|
|
677
|
+
fmt_information_tips_click_return_meeting: 'Click to return to the meeting interface',
|
|
678
|
+
fmt_networkstatus_window_title: 'Network connections',
|
|
679
|
+
fmt_networkstatus_window_rate_good: 'Good',
|
|
680
|
+
fmt_networkstatus_window_rate_medium: 'Middle',
|
|
681
|
+
fmt_networkstatus_window_rate_bad: 'Poor',
|
|
682
|
+
fmt_networkstatus_window_latency: 'Network latency',
|
|
683
|
+
fmt_networkstatus_window_loss: 'Packet loss rate',
|
|
684
|
+
fmt_networkstatus_window_moreData: 'More indicators',
|
|
685
|
+
fmt_modules_labels_qualitystatistics: 'Quality statistics',
|
|
686
|
+
fmt_meetinginfo_label_time: 'Attendance duration/Reservation duration',
|
|
687
|
+
fmt_meetinginfo_label_myname: 'My name',
|
|
688
|
+
fmt_meetinginfo_label_lockedmeeting: 'Meeting information (locked)',
|
|
689
|
+
fmt_networkstatus_up_link: 'Network bandwidth uplink',
|
|
690
|
+
fmt_networkstatus_down_link: 'Network bandwidth downlink',
|
|
691
|
+
fmt_networkstatus_down_loss: 'Downstream packet loss rate',
|
|
692
|
+
fmt_networkstatus_up_loss: 'Upstream packet loss rate',
|
|
693
|
+
fmt_security_options_restract: 'Retract the host',
|
|
694
|
+
fmt_security_options_removemultiple: 'One click removal of multiple attendees',
|
|
695
|
+
fmt_security_options_openvideo: 'Start video',
|
|
696
|
+
fmt_security_options_stopvideo: 'Stop video',
|
|
697
|
+
fmt_security_options_openaudio: 'Start audio',
|
|
698
|
+
fmt_security_options_stopaudio: 'Stop audio',
|
|
699
|
+
fmt_security_options_activatewaitingroom: 'Activate waiting room',
|
|
700
|
+
fmt_security_options_playnotification: 'Sound prompt when members join or leave',
|
|
701
|
+
fmt_security_options_silence: 'Mute when members join',
|
|
702
|
+
fmt_security_buttons_allhandsdown: 'All hands down',
|
|
703
|
+
fmt_security_options_muteall: 'Mute all current attendees in the meeting',
|
|
704
|
+
fmt_security_buttons_muteall: 'Mute all',
|
|
705
|
+
fmt_security_buttons_cancel: 'Cancel',
|
|
706
|
+
fmt_security_waiting_room: 'Waiting Room',
|
|
707
|
+
fmt_security_start_video: 'Start Video',
|
|
708
|
+
fmt_security_pause_all: 'Suspend participant activities',
|
|
709
|
+
fmt_security_remove_all: 'Remove attendees',
|
|
710
|
+
fmt_security_tips_lock_meeting_on: 'You have locked the meeting, no one else can join',
|
|
711
|
+
fmt_security_tips_lock_meeting_off: 'You have unlocked the meeting, new participants can join',
|
|
712
|
+
fmt_security_tips_waiting_room_on: 'You have activated the waiting room',
|
|
713
|
+
fmt_security_tips_waiting_room_off: 'You have closed the waiting room',
|
|
714
|
+
fmt_security_tips_join_mute_on: 'You have enabled full mute while join ',
|
|
715
|
+
fmt_security_tips_join_mute_off: 'You have disabled mute while join ',
|
|
716
|
+
fmt_security_tips_share_screen_on: 'You have disabled screen sharing for attendees',
|
|
717
|
+
fmt_security_tips_share_screen_off: 'You have enabled screen sharing for attendees',
|
|
718
|
+
fmt_security_tips_start_audio_on: 'You have allowed self unmuting',
|
|
719
|
+
fmt_security_tips_start_audio_off: 'You have prohibited self unmuting',
|
|
720
|
+
fmt_security_tips_host_start_audio_on: '{reason1} has allowed self unmuting',
|
|
721
|
+
fmt_security_tips_host_start_audio_off: '{reason1} has canceled self unmuting',
|
|
722
|
+
fmt_security_tips_start_video_on: 'You have allowed open video',
|
|
723
|
+
fmt_security_tips_start_video_off: 'You have prohibited open video',
|
|
724
|
+
fmt_security_tips_host_start_video_on: '{reason1} Open video allowed',
|
|
725
|
+
fmt_security_tips_host_start_video_off: '{reason1} Open video forbid ',
|
|
726
|
+
fmt_security_chat_with_hosts: 'Host and Co host',
|
|
727
|
+
fmt_security_tips_allow_write_board: 'You have allowed editing the whiteboard',
|
|
728
|
+
fmt_security_tips_disallow_write_board: 'You have prohibited editing the whiteboard',
|
|
729
|
+
//****************** 设置 ******************
|
|
730
|
+
fmt_settings_option_setting: 'Setting',
|
|
731
|
+
fmt_settings_option_general: 'General',
|
|
732
|
+
fmt_settings_option_about_us: 'About US',
|
|
733
|
+
fmt_settings_option_about_videoset: 'Video Settings',
|
|
734
|
+
fmt_settings_option_debug: 'Debug',
|
|
735
|
+
fmt_settings_option_region_na: 'NA',
|
|
736
|
+
fmt_settings_option_region_ap: 'AP',
|
|
737
|
+
fmt_settings_option_region_cn: 'CN',
|
|
738
|
+
fmt_settings_option_region_eu: 'EU',
|
|
739
|
+
fmt_settings_option_enviroment_Dev: 'Development',
|
|
740
|
+
fmt_settings_option_enviroment_Test: 'Test',
|
|
741
|
+
fmt_settings_option_enviroment_Pre: 'Pre Production',
|
|
742
|
+
fmt_settings_option_enviroment_Pro: 'Production',
|
|
743
|
+
fmt_settings_label_region: 'Region',
|
|
744
|
+
fmt_settings_label_about_us_about_us: 'About US',
|
|
745
|
+
fmt_settings_label_aboutus_ver: 'Flexible Meeting Version',
|
|
746
|
+
fmt_settings_label_aboutus_declaration: 'This page is an online conference platform demonstration demo, only for functional demonstration, not an official online product',
|
|
747
|
+
fmt_settings_label_video_resolution: 'Camera resolution',
|
|
748
|
+
fmt_settings_label_video_bitrate_frame: 'Camera bitrate/frame rate',
|
|
749
|
+
fmt_settings_label_video_resolution_small: 'Camera resolution (small stream)',
|
|
750
|
+
fmt_settings_label_video_bitrate_frame_small: 'Camera bitrate/frame rate (small stream)',
|
|
751
|
+
fmt_settings_label_video_screenshare_resolution: 'Screen sharing resolution',
|
|
752
|
+
fmt_settings_label_video_screenshare_bitrate_frame: 'Screen sharing bitrate/frame rate',
|
|
753
|
+
fmt_settings_link_about_us_user_agreement: 'User Agreement',
|
|
754
|
+
fmt_settings_link_about_us_privacy_policy: 'Privacy Policy',
|
|
755
|
+
fmt_settings_label_aboutus_slogan: 'Flexible Meeting',
|
|
756
|
+
fmt_settings_button_logout: 'Log out',
|
|
757
|
+
fmt_setting_label_setting: 'Settings',
|
|
758
|
+
fmt_setting_option_Voice: 'Audio Setting',
|
|
759
|
+
fmt_setting_option_Video: 'Video Setting',
|
|
760
|
+
fmt_setting_label_Speaker: 'Speaker',
|
|
761
|
+
fmt_setting_label_oututlevel: 'Output level',
|
|
762
|
+
fmt_setting_button_Speaker_pause: 'Pause',
|
|
763
|
+
fmt_setting_label_volume: 'Output Volume',
|
|
764
|
+
fmt_setting_option_volumeadjust: 'Automatically adjust the volume of {reason1}',
|
|
765
|
+
fmt_setting_label_Mic: 'Microphone',
|
|
766
|
+
fmt_setting_button_Mic: 'Detecting microphone',
|
|
767
|
+
fmt_setting_button_Speaker_recording: 'Recording',
|
|
768
|
+
fmt_setting_label_3a: 'Reduce background noise',
|
|
769
|
+
fmt_setting_option_3alow: 'Low',
|
|
770
|
+
fmt_setting_option_3amoderate: 'Middle',
|
|
771
|
+
fmt_setting_option_3ahigh: 'High',
|
|
772
|
+
fmt_setting_label_professional: 'Music and Professional Audio',
|
|
773
|
+
fmt_setting_option_orinalvoise: 'Display the option in the meeting in case of you want to turn the original sound',
|
|
774
|
+
fmt_setting_tips_speaker: "Click on the test speaker to confirm that you can hear other people's voices",
|
|
775
|
+
fmt_setting_tips_mic: 'Please speak into your microphone. If you cannot hear your own voice, please replace the microphone',
|
|
776
|
+
fmt_setting_tips_speaker_unwork: 'If you cannot hear the test sound, please replace the speaker',
|
|
777
|
+
fmt_setting_tips_mic_unwork: 'If you cannot hear the test sound, please replace the microphone',
|
|
778
|
+
fmt_setting_label_preview: 'Effect Preview',
|
|
779
|
+
fmt_setting_option_preview_highdefinition: 'high definition',
|
|
780
|
+
fmt_setting_option_basics: 'Basics',
|
|
781
|
+
fmt_setting_option_backgrounds: 'Background',
|
|
782
|
+
fmt_setting_option_beauty: 'Beauty filter',
|
|
783
|
+
fmt_setting_option_high_definition: 'High definition video',
|
|
784
|
+
fmt_setting_option_joinmeeting: 'Close video when joining the meeting',
|
|
785
|
+
fmt_setting_option_joinmeeting_preview: 'Moderately display video window when joining a video conference',
|
|
786
|
+
fmt_setting_option_hidenonvideo: 'Hide non video attendees',
|
|
787
|
+
fmt_setting_label_maxattendees: 'The maximum number of attendees displayed on single screen view',
|
|
788
|
+
fmt_setting_label_maxattendees_16: '16 attendees',
|
|
789
|
+
fmt_setting_label_maxattendees_25: '25 attendees',
|
|
790
|
+
fmt_modules_labels_Videobackground: 'Video background',
|
|
791
|
+
fmt_modules_tips_Imagebackground: 'Image background',
|
|
792
|
+
fmt_internalsetting_label_generalsetting: 'General settings',
|
|
793
|
+
fmt_internalsetting_label_inputlevel: 'Input level',
|
|
794
|
+
fmt_internalsetting_label_inputvolume: 'Input volume',
|
|
795
|
+
fmt_internalsetting_label_automatic: 'Automatic',
|
|
796
|
+
fmt_internalsetting_tips_backgroundsound: '(There is currently no need for faint background sound)',
|
|
797
|
+
fmt_internalsetting_tips_fanpan: '(There is currently no need for reducing the sound of the computer fan or pen tapping)',
|
|
798
|
+
fmt_internalsetting_tips_dogbarking: '(There is currently no need for reducing typing noise or dog barking temporarily)',
|
|
799
|
+
fmt_internalsetting_label_senior: 'Senior',
|
|
800
|
+
fmt_internalsetting_button_detectspeaker: 'Detecting speakers',
|
|
801
|
+
fmt_internalsetting_status_recording: 'Recording in progress',
|
|
802
|
+
fmt_internalsetting_status_nodevice: 'No device',
|
|
803
|
+
fmt_internalsetting_labels_enableoptions: 'Enable these options when turning on the original sound',
|
|
804
|
+
fmt_internalsetting_options_highqualitymusic: 'High fidelity music mode',
|
|
805
|
+
fmt_internalsetting_options_echocancell: 'Echo cancellation',
|
|
806
|
+
fmt_internalsetting_options_stereo: 'Stereo',
|
|
807
|
+
fmt_internalsetting_labels_audiostereoencode: 'This option allows stereo encoding of audio. A microphone or audio interface with stereo effect is required. This option will increase CPU usage and occupy more network bandwidth.',
|
|
808
|
+
fmt_internalsetting_tips_preventechoes: 'Prevent capturing or generating echoes to improve sound quality. If you are not using headphones or playing an instrument, it is recommended to enable this option.',
|
|
809
|
+
fmt_internalsetting_tips_optiomizeaudio: 'Optimize audio to provide the highest quality sound effects. This feature will increase CPU usage and occupy more network bandwidth. For optimal results, it is strongly recommended to connect to Ethernet instead of WiFi.',
|
|
810
|
+
fmt_internalsetting_tips_speakerpriority: 'After activating voice stimulation, priority will be given to displaying the attending members who are currently speaking.',
|
|
811
|
+
fmt_internalsetting_labels_voicestimulation: 'Voice stimulation',
|
|
812
|
+
fmt_internalsetting_options_hidenonvideo: 'Hide non video attendees',
|
|
813
|
+
fmt_internalsetting_options_adjustlowlight: 'Adjust to use low light compensation',
|
|
814
|
+
fmt_internalsetting_options_closevideojoin: 'Close my video when joining the meeting',
|
|
815
|
+
fmt_internalsetting_options_alwaysbox: 'Always display video preview window when joining a video conference',
|
|
816
|
+
fmt_internalsetting_labels_advancedsetting: 'Advanced setting',
|
|
817
|
+
fmt_internalsetting_options_videonoisereduction: 'Optimize video quality through noise reduction',
|
|
818
|
+
fmt_internalsetting_options_hardwareacceleration: 'Use hardware acceleration for video reception',
|
|
819
|
+
fmt_internalsetting_tips_nocamerajoin: 'Not selected to enable camera membership, currently only the video special effects preview screen',
|
|
820
|
+
fmt_internalsetting_options_mirromyvideo: 'Mirror my video',
|
|
821
|
+
fmt_internalsetting_tips_optimizevideo: 'After selecting, software based noise cancellation will optimize video quality',
|
|
822
|
+
fmt_internalsetting_tips_reducevideo: 'After selecting, hardware codecs will reduce the CPU consumption of video codecs',
|
|
823
|
+
fmt_internalsetting_labels_currency: 'Currency',
|
|
824
|
+
fmt_internalsetting_labels_application: 'This application',
|
|
825
|
+
fmt_internalsetting_labels_other: 'Other',
|
|
826
|
+
fmt_internalsetting_labels_bandwidth: 'Bandwidth',
|
|
827
|
+
fmt_internalsetting_labels_Network: 'Network',
|
|
828
|
+
fmt_internalsetting_labels_Networktype: 'Network type',
|
|
829
|
+
fmt_internalsetting_labels_Maximumresolution: 'Maximum resolution',
|
|
830
|
+
fmt_internalsetting_labels_Framerate: 'Frame rate',
|
|
831
|
+
fmt_internalsetting_labels_Bitrate: 'Bit rate',
|
|
832
|
+
fmt_internalsetting_labels_resolvingpower: 'Resolving power',
|
|
833
|
+
fmt_internalsetting_labels_bitrate2: 'Bitrate',
|
|
834
|
+
fmt_internalsetting_labels_mic: 'Mic',
|
|
835
|
+
fmt_internalsetting_labels_speaker: 'Speaker',
|
|
836
|
+
fmt_internalsetting_labels_Memory: 'Memory',
|
|
837
|
+
fmt_settings_button_unlockroom: 'Unlock',
|
|
838
|
+
fmt_internalsetting_beauty_background: 'Beauty and Background',
|
|
839
|
+
fmt_internalsetting_sites: 'Subsities',
|
|
840
|
+
fmt_internalsetting_mini_meeting: 'Minimize meeting',
|
|
841
|
+
fmt_internalsetting_raise_hand: 'Raise hand',
|
|
842
|
+
fmt_internalsetting_disconnect_audio: 'Disconnect audio',
|
|
843
|
+
fmt_internalsetting_other_join: 'Join Settings',
|
|
844
|
+
fmt_internalsetting_other_personal: 'Personal settings (only valid for personal view)',
|
|
845
|
+
fmt_internalsetting_other_join_mute: 'Mute when members join',
|
|
846
|
+
fmt_internalsetting_other_join_sound: 'Sound prompt for join and leave',
|
|
847
|
+
fmt_internalsetting_other_join_name: 'Display name when attendees join',
|
|
848
|
+
fmt_internalsetting_other_hide_no_video_toast: 'Hidden user window for unopened videos on this end',
|
|
849
|
+
fmt_internalsetting_other_hide_no_video_pin_cancelled: "You have enabled the 'hide non video window function', and the fixed window has been removed.",
|
|
850
|
+
fmt_internalsetting_other_hide_my_window_pin_cancelled: "You have enabled the 'Hide My Videos' feature, and the fixed window has been removed.",
|
|
851
|
+
fmt_internalsetting_other_hide_me: 'Hide my videos',
|
|
852
|
+
fmt_internalsetting_other_hide_me_toast: 'After other members join or start video streaming, your video window will be hidden on this device',
|
|
853
|
+
fmt_internalsetting_other_spot_light: 'Voice stimulation',
|
|
854
|
+
fmt_internalsetting_other_spot_light_desc: 'After activating voice stimulation, the attending members who are currently speaking will be prioritized for display.',
|
|
855
|
+
fmt_internalsetting_room_window_top: 'Top and bottom layout',
|
|
856
|
+
fmt_internalsetting_room_window_big: 'Large and small layout',
|
|
857
|
+
fmt_internalsetting_room_window_left: 'Left and right layout',
|
|
858
|
+
fmt_internalsetting_room_window_tip: 'Disable large and small layout while sharing screens and whiteboards',
|
|
859
|
+
fmt_internalsetting_room_window_switched: 'Switch to {reason1}',
|
|
860
|
+
fmt_internalsetting_labels_Network_type: 'Network type',
|
|
861
|
+
fmt_internalsetting_labels_resolving_power: 'Resolution',
|
|
862
|
+
//****************** 设置提示部分 ******************
|
|
863
|
+
fmt_settings_labels_sidebar: 'Sidebar',
|
|
864
|
+
fmt_settings_labels_fold: 'Fold',
|
|
865
|
+
fmt_settings_labels_theme: 'Theme',
|
|
866
|
+
fmt_settings_tips_sharingprohibited: '{reason1}Sharing is prohibited.You can contact the meeting administrator to enable it',
|
|
867
|
+
fmt_settings_tips_videoenabled: '{reason1}has enabled video',
|
|
868
|
+
fmt_settings_tips_disabledvideo: '{reason1}has disabled video',
|
|
869
|
+
fmt_settings_tips_allowedScreensharing: '{reason1}has allowed screen sharing',
|
|
870
|
+
fmt_settings_tips_disabledScreensharing: '{reason1}has disabled screen sharing',
|
|
871
|
+
fmt_settings_tips_allowedchat: '{reason1}has allowed chat',
|
|
872
|
+
fmt_settings_tips_banedchat: '{reason1}has prohibited chat',
|
|
873
|
+
fmt_settings_tips_allowedselfunmuting: '{reason1}has allowed selfunmuting',
|
|
874
|
+
fmt_settings_tips_disabledselfunmuting: '{reason1}has disabled self unmuting',
|
|
875
|
+
fmt_settings_tips_muteallwhilejoin: '{reason1}has set mute for all participants when they join the meeting',
|
|
876
|
+
fmt_settings_labels_you: 'You',
|
|
877
|
+
fmt_settings_tips_Blockallchat: "‘Block all chat'",
|
|
878
|
+
fmt_settings_tips_groupchatonly: "'Group chat only'",
|
|
879
|
+
fmt_settings_tips_hostchatonly: "'Only permit chat to host or cohost'",
|
|
880
|
+
fmt_settings_tips_confirmactivate: 'Confirm to activate',
|
|
881
|
+
fmt_settings_tips_passwordcopyfailed: 'Meeting password copying failed',
|
|
882
|
+
fmt_settings_tips_sharing: 'You are screen sharing',
|
|
883
|
+
fmt_settings_labels_miniutes: '{reason1} minutes',
|
|
884
|
+
fmt_settings_options_enableoptions: 'Enable these options when turning on the original sound',
|
|
885
|
+
fmt_settings_options_highquality: 'High quality music mode',
|
|
886
|
+
fmt_settings_options_echocancel: 'Echo cancellation',
|
|
887
|
+
fmt_settings_options_stereo: 'stereo',
|
|
888
|
+
fmt_settings_options_toolbarcollapse: 'Collapse toolbar',
|
|
889
|
+
fmt_settings_tips_screenlocked: 'The screen is locked. Click on the top left corner of the window to undo the fixation',
|
|
890
|
+
fmt_settings_tips_screenunlock: 'The screen lock has been released',
|
|
891
|
+
fmt_settings_options_pausecloudrecording: 'Pause cloud recording',
|
|
892
|
+
fmt_settings_popup_disable_while_microphone_detected: 'This function is disabled while the microphone is being detected',
|
|
893
|
+
fmt_settings_popup_disable_while_speaker_detected: 'This function is disabled while the speaker is beiing detected',
|
|
894
|
+
//****************** 直播 ******************
|
|
895
|
+
fmt_live_label_thirdplatform: 'Live streaming to third-party platforms',
|
|
896
|
+
fmt_live_label_videostreamingurl: 'Video streaming URL',
|
|
897
|
+
fmt_live_inputtips_videostreamingurl: 'Please enter the video stream URL',
|
|
898
|
+
fmt_live_label_videostreamingkey: 'Video streaming key',
|
|
899
|
+
fmt_live_inputtips_videostreamingkey: 'Please enter the video stream key',
|
|
900
|
+
fmt_live_label_ivepage: 'Live streaming page',
|
|
901
|
+
fmt_tips_label_Livepage: 'Anyone who obtains the link can watch the live broadcast',
|
|
902
|
+
fmt_tips_inputlabel_Livepage: 'Please enter the URL of the live streaming webpage',
|
|
903
|
+
fmt_tips_button_Golive: 'Start Live',
|
|
904
|
+
fmt_tips_button_Stopolive: 'Stop Live',
|
|
905
|
+
fmt_live_tips_alreadylive: 'You have already initiated the live streaming service and need to listen before you can start the live streaming again',
|
|
906
|
+
fmt_live_tips_livestreaming: 'Live Steaming',
|
|
907
|
+
fmt_live_label_customizedlive: 'Customized live streaming service',
|
|
908
|
+
fmt_live_label_watchcustomizedlive: 'Watch live streams on custom live streaming services',
|
|
909
|
+
fmt_live_label_copylink: 'Copy live streaming link',
|
|
910
|
+
fmt_tips_button_Stopsteaming: 'Stop live',
|
|
911
|
+
//****************** 录制 ******************
|
|
912
|
+
fmt_record_button_Cloudrecording: 'Cloud recording system',
|
|
913
|
+
fmt_record_button_Localrecording: 'Local recording',
|
|
914
|
+
fmt_record_button_pauserecording: 'Pause',
|
|
915
|
+
fmt_record_tips_Localrecording_Start: 'Local recording is starting',
|
|
916
|
+
fmt_record_tips_Cloudrecording_Start: 'Cloud recording system is starting',
|
|
917
|
+
fmt_record_tips_recording: 'Recording',
|
|
918
|
+
fmt_record_tips_Cloudrecording: 'Cloud recording',
|
|
919
|
+
fmt_record_button_Cloudrecording_restore: 'Restore cloud recording',
|
|
920
|
+
fmt_record_button_Localrecording_restore: 'Restore local recording',
|
|
921
|
+
fmt_record_button_Cloudrecording_stop: 'Stop cloud recording',
|
|
922
|
+
fmt_record_button_Localrecording_stop: 'Stop local recording',
|
|
923
|
+
fmt_record_tips_recordingpaused: 'Recording paused',
|
|
924
|
+
fmt_record_tips_recordingrestored: 'Recording Recovery',
|
|
925
|
+
fmt_record_tips_Cloudrecording_inprogress: 'Meeting cloud recording in progress',
|
|
926
|
+
fmt_record_tips_Localrecording_inprogress: 'The conference is currently being recorded locally',
|
|
927
|
+
fmt_recording_button_rrecording: 'Record',
|
|
928
|
+
fmt_actionbar_record_tips_stoprecord: 'Are you sure to stop recording now?',
|
|
929
|
+
fmt_actionbar_record_option_stoprecord: 'Confirm to stop recording',
|
|
930
|
+
fmt_modules_labels_localrecord: 'Local recording saved in',
|
|
931
|
+
fmt_modules_labels_notset: 'Not set',
|
|
932
|
+
fmt_modules_button_change: 'Change',
|
|
933
|
+
fmt_modules_button_open: 'Open',
|
|
934
|
+
fmt_modules_labels_surplus: 'Surplus',
|
|
935
|
+
fmt_record_scene_meeting_rec: 'REC',
|
|
936
|
+
fmt_record_tip_share_scaling: 'Two fingers can zoom in and out of the screen to share content',
|
|
937
|
+
fmt_record_gallery_guide_toast: "Long pressing the grid window can evoke 'more'",
|
|
938
|
+
fmt_record_share_nick: "{reason1}'s screen sharing",
|
|
939
|
+
fmt_record_share_board_nick: "{reason1}'s whiteboard sharing",
|
|
940
|
+
fmt_record_new_sharing_stream_tip: '{reason1} is sharing the screen',
|
|
941
|
+
fmt_record_record_starting2: 'Starting up',
|
|
942
|
+
fmt_record_record_pause_for_more: 'Cloud recording system paused',
|
|
943
|
+
fmt_record_record_start_fail: 'Cloud recording system startup failed',
|
|
944
|
+
fmt_record_record_resume_fail: 'Cloud recording recovery failed',
|
|
945
|
+
fmt_record_record_stop_fail: 'Cloud recording system failed to stop',
|
|
946
|
+
fmt_record_record_pause_fail: 'Cloud recording pause failed',
|
|
947
|
+
fmt_record_record_stoped: 'Cloud recording has stopped',
|
|
948
|
+
fmt_record_record_started: 'Cloud recording system has started',
|
|
949
|
+
fmt_record_record_stop_ask: 'Are you sure to stop recording now?',
|
|
950
|
+
fmt_record_record_stop_confirm: 'Confirm to stop recording',
|
|
951
|
+
fmt_pstn_label_accessmethod: 'Select audio access method',
|
|
952
|
+
fmt_pstn_options_PCaudioconnet: 'Connect to PC audio',
|
|
953
|
+
fmt_pstn_options_phoneaudioconnet: 'Connect to phone audio',
|
|
954
|
+
fmt_pstn_options_audio_setting: 'Audio setting',
|
|
955
|
+
fmt_pstn_options_PCaudio: 'PC audio',
|
|
956
|
+
fmt_pstn_options_phoneaudio: 'Phone audio',
|
|
957
|
+
fmt_pstn_label_connected: 'Phone audioConnected',
|
|
958
|
+
fmt_pstn_label_accessmethodPC: 'Connect through PC audio',
|
|
959
|
+
fmt_pstn_button_devicetest: 'Test speakers and microphones',
|
|
960
|
+
fmt_pstn_label_micselect: 'Select microphone',
|
|
961
|
+
fmt_pstn_button_PCaudiostop: 'Stop PC audio access',
|
|
962
|
+
fmt_pstn_label_alreadyin: 'Have you attended the meeting via phone? Please press #{reason1}#',
|
|
963
|
+
fmt_pstn_options_rememberphone: 'Remember the number on this device',
|
|
964
|
+
fmt_pstn_button_callme: 'Call me',
|
|
965
|
+
fmt_pstn_label_dialinphone: 'Dial in by phone',
|
|
966
|
+
fmt_pstn_label_countryregion: 'Country/Region',
|
|
967
|
+
fmt_pstn_label_dial: 'Dial',
|
|
968
|
+
fmt_pstn_label_meetingid: 'Meeting ID',
|
|
969
|
+
fmt_pstn_label_participantid: 'Participant ID',
|
|
970
|
+
fmt_pstn_label_viaphone: 'Connecting voice over phone',
|
|
971
|
+
fmt_pstn_status_unconnectted: 'Not connected',
|
|
972
|
+
fmt_pstn_tips_alreadyphone: 'Connected via phone audio, please hang up the phone before switching audio',
|
|
973
|
+
fmt_pstn_status_calling: 'Calling in progress',
|
|
974
|
+
fmt_pstn_button_hangupphone: 'Hang up the phone',
|
|
975
|
+
fmt_pstn_label_merge: 'Merge{reason1} (phone number)',
|
|
976
|
+
fmt_pstn_button_merge: 'Merge',
|
|
977
|
+
fmt_pstn_button_cancel: 'Cancel',
|
|
978
|
+
fmt_pstn_label_phonecall: 'Phone call',
|
|
979
|
+
fmt_pstn_inputtips_name: 'The names of the attendees will be displayed during the meeting',
|
|
980
|
+
fmt_pstn_button_phonecall: 'Phone call',
|
|
981
|
+
fmt_pstn_label_or: 'or',
|
|
982
|
+
fmt_pstn_label_copylink: 'Copy meeting link',
|
|
983
|
+
fmt_pstn_status_ringing: 'Ringing the bell',
|
|
984
|
+
fmt_pstn_status_Answered: 'Answered',
|
|
985
|
+
fmt_pstn_status_failed: 'Failed',
|
|
986
|
+
fmt_pstn_status_hungup: 'The other party hung up the phone',
|
|
987
|
+
fmt_pstn_status_maitain: 'Maintain phone connection',
|
|
988
|
+
fmt_PSTN_status_connected: 'Connected',
|
|
989
|
+
fmt_PSTN_label_pcaudio: 'PC audio',
|
|
990
|
+
fmt_PSTN_status_hangup: 'Hanging up',
|
|
991
|
+
fmt_PSTN_status_china: 'China',
|
|
992
|
+
fmt_PSTN_status_usa: 'USA',
|
|
993
|
+
fmt_PSTN_tips_unempty: 'Cannot be empty',
|
|
994
|
+
fmt_PSTN_tips_formaterror: 'Format error',
|
|
995
|
+
fmt_PSTN_status_voiceconnected: 'Connected voice',
|
|
996
|
+
fmt_PSTN_status_hungup: 'The call has been hung up',
|
|
997
|
+
fmt_pstn_tips_errorformat: 'Format error',
|
|
998
|
+
fmt_gateway_tips_nodata: 'You have connected the computer audio',
|
|
999
|
+
fmt_PSTN_toast_merged: 'Merged with {reason1}',
|
|
1000
|
+
fmt_sip_options_callout: 'Call out',
|
|
1001
|
+
fmt_sip_options_callin: 'Call in',
|
|
1002
|
+
fmt_sip_inputtips_sip_323: 'Please enter your IP address or E.164 number',
|
|
1003
|
+
fmt_sip_options_H323: 'H323',
|
|
1004
|
+
fmt_sip_options_SIP: 'SIP',
|
|
1005
|
+
fmt_sip_button_call: 'call',
|
|
1006
|
+
fmt_sip_button_Hangup: 'Hang up',
|
|
1007
|
+
fmt_sip_label_dialviasip: 'Dialing in the H.263/SIP conference room system',
|
|
1008
|
+
fmt_sip_label_dial: 'Dial',
|
|
1009
|
+
fmt_sip_label_inputid: 'Input meeting ID',
|
|
1010
|
+
fmt_sip_label_password: 'password',
|
|
1011
|
+
fmt_pstn_status_dialling: 'Dialing phone is in progress',
|
|
1012
|
+
fmt_pstn_status_raining: 'Ringing the bell',
|
|
1013
|
+
fmt_SIP323_copywrite_phonenumber: 'Mobile phone number (required)',
|
|
1014
|
+
fmt_SIP323_options_detailedinfor: 'Copy meeting detail',
|
|
1015
|
+
fmt_SIP323_tips_alreadycopied: 'Already copied on the clipboard'
|
|
1016
|
+
};
|