fcr-ui-scene 1.0.40 → 3.1.0-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/base.d.ts +13 -0
- package/lib/base.js +78 -0
- package/lib/common/device-store.d.ts +140 -0
- package/lib/common/device-store.js +1378 -0
- package/lib/common/device-stream-store.d.ts +36 -0
- package/lib/common/device-stream-store.js +372 -0
- package/lib/common/event-store.d.ts +118 -0
- package/lib/common/event-store.js +235 -0
- package/lib/common/security-store.d.ts +123 -0
- package/lib/common/security-store.js +978 -0
- package/lib/creator.d.ts +8 -0
- package/lib/creator.js +37 -0
- package/lib/electron/app.d.ts +1 -0
- package/lib/electron/app.js +140 -0
- package/lib/electron/default-options.d.ts +2 -0
- package/lib/electron/default-options.js +25 -0
- package/lib/electron/env.d.ts +5 -0
- package/lib/electron/env.js +13 -0
- package/lib/electron/index.d.ts +2 -0
- package/lib/electron/index.js +20 -0
- package/lib/electron/injections.d.ts +45 -0
- package/lib/electron/injections.js +689 -0
- package/lib/electron/main.d.ts +2 -0
- package/lib/electron/main.js +63 -0
- package/lib/electron/plugins/screenshot.d.ts +2 -0
- package/lib/electron/plugins/screenshot.js +49 -0
- package/lib/electron/preload.js +35 -0
- package/lib/electron/tools.d.ts +5 -0
- package/lib/electron/tools.js +57 -0
- package/lib/electron/window.d.ts +12 -0
- package/lib/electron/window.js +113 -0
- package/lib/fragments/base.d.ts +10 -0
- package/lib/fragments/base.js +44 -0
- package/lib/fragments/control-bar/cloud-recording-buttons.d.ts +1 -0
- package/lib/fragments/control-bar/cloud-recording-buttons.js +67 -0
- package/lib/fragments/control-bar/context.d.ts +3 -0
- package/lib/fragments/control-bar/context.js +9 -0
- package/lib/fragments/control-bar/control-bar-store.d.ts +152 -0
- package/lib/fragments/control-bar/control-bar-store.js +1275 -0
- package/lib/fragments/control-bar/device/index.d.ts +31 -0
- package/lib/fragments/control-bar/device/index.js +203 -0
- package/lib/fragments/control-bar/index.css +276 -0
- package/lib/fragments/control-bar/index.d.ts +26 -0
- package/lib/fragments/control-bar/index.js +223 -0
- package/lib/fragments/control-bar/more-actions/index.css +19 -0
- package/lib/fragments/control-bar/more-actions/index.d.ts +7 -0
- package/lib/fragments/control-bar/more-actions/index.js +259 -0
- package/lib/fragments/control-bar/security-content/index.css +24 -0
- package/lib/fragments/control-bar/security-content/index.d.ts +2 -0
- package/lib/fragments/control-bar/security-content/index.js +145 -0
- package/lib/fragments/control-bar/share-state-nav/index.css +70 -0
- package/lib/fragments/control-bar/share-state-nav/index.d.ts +10 -0
- package/lib/fragments/control-bar/share-state-nav/index.js +134 -0
- package/lib/fragments/control-bar/stop-live-streaming/index.d.ts +1 -0
- package/lib/fragments/control-bar/stop-live-streaming/index.js +82 -0
- package/lib/fragments/control-bar/transfer-position-icon/index.d.ts +11 -0
- package/lib/fragments/control-bar/transfer-position-icon/index.js +46 -0
- package/lib/fragments/control-bar/view.d.ts +1 -0
- package/lib/fragments/control-bar/view.js +321 -0
- package/lib/fragments/live-streaming/context.d.ts +3 -0
- package/lib/fragments/live-streaming/context.js +9 -0
- package/lib/fragments/live-streaming/index.css +11 -0
- package/lib/fragments/live-streaming/index.d.ts +11 -0
- package/lib/fragments/live-streaming/index.js +79 -0
- package/lib/fragments/live-streaming/store.d.ts +21 -0
- package/lib/fragments/live-streaming/store.js +228 -0
- package/lib/fragments/live-streaming/view.d.ts +2 -0
- package/lib/fragments/live-streaming/view.js +44 -0
- package/lib/fragments/share-screen-selection/context.d.ts +3 -0
- package/lib/fragments/share-screen-selection/context.js +9 -0
- package/lib/fragments/share-screen-selection/index.css +66 -0
- package/lib/fragments/share-screen-selection/index.d.ts +9 -0
- package/lib/fragments/share-screen-selection/index.js +94 -0
- package/lib/fragments/share-screen-selection/open-mic-tips.d.ts +9 -0
- package/lib/fragments/share-screen-selection/open-mic-tips.js +55 -0
- package/lib/fragments/share-screen-selection/selection-store.d.ts +36 -0
- package/lib/fragments/share-screen-selection/selection-store.js +351 -0
- package/lib/fragments/share-screen-selection/tips.css +33 -0
- package/lib/fragments/share-screen-selection/view.d.ts +9 -0
- package/lib/fragments/share-screen-selection/view.js +255 -0
- package/lib/fragments/toolbar/components/color-picker/components/color.d.ts +5 -0
- package/lib/fragments/toolbar/components/color-picker/components/color.js +54 -0
- package/lib/fragments/toolbar/components/color-picker/components/panel.d.ts +1 -0
- package/lib/fragments/toolbar/components/color-picker/components/panel.js +114 -0
- package/lib/fragments/toolbar/components/color-picker/components/picker.d.ts +1 -0
- package/lib/fragments/toolbar/components/color-picker/components/picker.js +75 -0
- package/lib/fragments/toolbar/components/color-picker/index.d.ts +2 -0
- package/lib/fragments/toolbar/components/color-picker/index.js +53 -0
- package/lib/fragments/toolbar/components/color-picker.d.ts +2 -0
- package/lib/fragments/toolbar/components/color-picker.js +127 -0
- package/lib/fragments/toolbar/components/eraser-picker.d.ts +4 -0
- package/lib/fragments/toolbar/components/eraser-picker.js +84 -0
- package/lib/fragments/toolbar/components/extension-toolbar-item.d.ts +1 -0
- package/lib/fragments/toolbar/components/extension-toolbar-item.js +78 -0
- package/lib/fragments/toolbar/components/extra-tool-picker.d.ts +1 -0
- package/lib/fragments/toolbar/components/extra-tool-picker.js +60 -0
- package/lib/fragments/toolbar/components/fold-icon.d.ts +2 -0
- package/lib/fragments/toolbar/components/fold-icon.js +41 -0
- package/lib/fragments/toolbar/components/history.d.ts +2 -0
- package/lib/fragments/toolbar/components/history.js +46 -0
- package/lib/fragments/toolbar/components/pen-picker.d.ts +4 -0
- package/lib/fragments/toolbar/components/pen-picker.js +132 -0
- package/lib/fragments/toolbar/components/screen-capture-picker.d.ts +4 -0
- package/lib/fragments/toolbar/components/screen-capture-picker.js +84 -0
- package/lib/fragments/toolbar/components/shape-picker.d.ts +4 -0
- package/lib/fragments/toolbar/components/shape-picker.js +146 -0
- package/lib/fragments/toolbar/components/toolbar-item.d.ts +1 -0
- package/lib/fragments/toolbar/components/toolbar-item.js +42 -0
- package/lib/fragments/toolbar/components/wrapper.d.ts +1 -0
- package/lib/fragments/toolbar/components/wrapper.js +138 -0
- package/lib/fragments/toolbar/hooks.d.ts +16 -0
- package/lib/fragments/toolbar/hooks.js +251 -0
- package/lib/fragments/toolbar/index.d.ts +12 -0
- package/lib/fragments/toolbar/index.js +80 -0
- package/lib/fragments/toolbar/store.d.ts +62 -0
- package/lib/fragments/toolbar/store.js +279 -0
- package/lib/fragments/toolbar/style.css +347 -0
- package/lib/fragments/toolbar/view.d.ts +1 -0
- package/lib/fragments/toolbar/view.js +34 -0
- package/lib/global.d.ts +8 -0
- package/lib/hooks/i18n.d.ts +4 -0
- package/lib/hooks/i18n.js +18 -0
- package/lib/hooks/meeting-time.d.ts +15 -0
- package/lib/hooks/meeting-time.js +92 -0
- package/lib/index.d.ts +8 -0
- package/lib/index.js +52 -0
- package/lib/modules/action-bar/action-bar-collapes-items.d.ts +17 -0
- package/lib/modules/action-bar/action-bar-collapes-items.js +199 -0
- package/lib/modules/action-bar/board/index.d.ts +4 -0
- package/lib/modules/action-bar/board/index.js +34 -0
- package/lib/modules/action-bar/breakout-room/index.d.ts +4 -0
- package/lib/modules/action-bar/breakout-room/index.js +32 -0
- package/lib/modules/action-bar/chat/index.css +80 -0
- package/lib/modules/action-bar/chat/index.d.ts +5 -0
- package/lib/modules/action-bar/chat/index.js +152 -0
- package/lib/modules/action-bar/context.d.ts +3 -0
- package/lib/modules/action-bar/context.js +9 -0
- package/lib/modules/action-bar/device/index.css +157 -0
- package/lib/modules/action-bar/device/index.d.ts +8 -0
- package/lib/modules/action-bar/device/index.js +611 -0
- package/lib/modules/action-bar/index.css +212 -0
- package/lib/modules/action-bar/index.d.ts +25 -0
- package/lib/modules/action-bar/index.dev.d.ts +1 -0
- package/lib/modules/action-bar/index.dev.js +96 -0
- package/lib/modules/action-bar/index.js +89 -0
- package/lib/modules/action-bar/item-placement.d.ts +8 -0
- package/lib/modules/action-bar/item-placement.js +18 -0
- package/lib/modules/action-bar/item.d.ts +27 -0
- package/lib/modules/action-bar/item.js +154 -0
- package/lib/modules/action-bar/leave/assign-host.d.ts +8 -0
- package/lib/modules/action-bar/leave/assign-host.js +64 -0
- package/lib/modules/action-bar/leave/index.css +116 -0
- package/lib/modules/action-bar/leave/index.d.ts +3 -0
- package/lib/modules/action-bar/leave/index.js +110 -0
- package/lib/modules/action-bar/leave/leave-meeting.d.ts +7 -0
- package/lib/modules/action-bar/leave/leave-meeting.js +135 -0
- package/lib/modules/action-bar/live-streaming/index.d.ts +4 -0
- package/lib/modules/action-bar/live-streaming/index.js +39 -0
- package/lib/modules/action-bar/more/index.css +114 -0
- package/lib/modules/action-bar/more/index.d.ts +5 -0
- package/lib/modules/action-bar/more/index.js +80 -0
- package/lib/modules/action-bar/more/poppover-content.d.ts +9 -0
- package/lib/modules/action-bar/more/poppover-content.js +369 -0
- package/lib/modules/action-bar/participants/index.css +9 -0
- package/lib/modules/action-bar/participants/index.d.ts +5 -0
- package/lib/modules/action-bar/participants/index.js +75 -0
- package/lib/modules/action-bar/record/index.css +39 -0
- package/lib/modules/action-bar/record/index.d.ts +5 -0
- package/lib/modules/action-bar/record/index.js +161 -0
- package/lib/modules/action-bar/record/stop-record-dialog.d.ts +5 -0
- package/lib/modules/action-bar/record/stop-record-dialog.js +48 -0
- package/lib/modules/action-bar/respond/index.d.ts +4 -0
- package/lib/modules/action-bar/respond/index.js +32 -0
- package/lib/modules/action-bar/screen-share/index.d.ts +4 -0
- package/lib/modules/action-bar/screen-share/index.js +97 -0
- package/lib/modules/action-bar/screen-share/submenu.d.ts +1 -0
- package/lib/modules/action-bar/screen-share/submenu.js +159 -0
- package/lib/modules/action-bar/security/drop-menu.d.ts +1 -0
- package/lib/modules/action-bar/security/drop-menu.js +164 -0
- package/lib/modules/action-bar/security/index.d.ts +4 -0
- package/lib/modules/action-bar/security/index.js +50 -0
- package/lib/modules/action-bar/settings/index.d.ts +4 -0
- package/lib/modules/action-bar/settings/index.js +41 -0
- package/lib/modules/action-bar/smaller.d.ts +1 -0
- package/lib/modules/action-bar/smaller.js +52 -0
- package/lib/modules/action-bar/store.d.ts +177 -0
- package/lib/modules/action-bar/store.js +1179 -0
- package/lib/modules/action-bar/type.d.ts +6 -0
- package/lib/modules/action-bar/type.js +13 -0
- package/lib/modules/action-bar/view.d.ts +5 -0
- package/lib/modules/action-bar/view.js +80 -0
- package/lib/modules/audio-stream/index.d.ts +21 -0
- package/lib/modules/audio-stream/index.js +119 -0
- package/lib/modules/chat/chat-bar/index.css +79 -0
- package/lib/modules/chat/chat-bar/index.d.ts +11 -0
- package/lib/modules/chat/chat-bar/index.js +125 -0
- package/lib/modules/chat/chat-select/index.css +156 -0
- package/lib/modules/chat/chat-select/index.d.ts +13 -0
- package/lib/modules/chat/chat-select/index.js +186 -0
- package/lib/modules/chat/chat.d.ts +12 -0
- package/lib/modules/chat/chat.js +295 -0
- package/lib/modules/chat/contex.d.ts +3 -0
- package/lib/modules/chat/contex.js +9 -0
- package/lib/modules/chat/demo-wrapper.d.ts +2 -0
- package/lib/modules/chat/demo-wrapper.js +42 -0
- package/lib/modules/chat/index.css +17 -0
- package/lib/modules/chat/index.d.ts +29 -0
- package/lib/modules/chat/index.dev.d.ts +1 -0
- package/lib/modules/chat/index.dev.js +58 -0
- package/lib/modules/chat/index.js +189 -0
- package/lib/modules/chat/message-list.d.ts +22 -0
- package/lib/modules/chat/message-list.js +595 -0
- package/lib/modules/chat/mock.d.ts +2 -0
- package/lib/modules/chat/mock.js +283 -0
- package/lib/modules/chat/store.d.ts +132 -0
- package/lib/modules/chat/store.js +923 -0
- package/lib/modules/chat/util.d.ts +6 -0
- package/lib/modules/chat/util.js +69 -0
- package/lib/modules/connection-gateway/components/computer/index.css +11 -0
- package/lib/modules/connection-gateway/components/computer/index.d.ts +3 -0
- package/lib/modules/connection-gateway/components/computer/index.js +66 -0
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.css +36 -0
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.d.ts +10 -0
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +75 -0
- package/lib/modules/connection-gateway/components/phone/components/calling/index.css +72 -0
- package/lib/modules/connection-gateway/components/phone/components/calling/index.d.ts +7 -0
- package/lib/modules/connection-gateway/components/phone/components/calling/index.js +58 -0
- package/lib/modules/connection-gateway/components/phone/components/remeber/index.css +10 -0
- package/lib/modules/connection-gateway/components/phone/components/remeber/index.d.ts +5 -0
- package/lib/modules/connection-gateway/components/phone/components/remeber/index.js +24 -0
- package/lib/modules/connection-gateway/components/phone/components/useing/index.css +46 -0
- package/lib/modules/connection-gateway/components/phone/components/useing/index.d.ts +3 -0
- package/lib/modules/connection-gateway/components/phone/components/useing/index.js +36 -0
- package/lib/modules/connection-gateway/components/phone/index.css +49 -0
- package/lib/modules/connection-gateway/components/phone/index.d.ts +3 -0
- package/lib/modules/connection-gateway/components/phone/index.js +181 -0
- package/lib/modules/connection-gateway/components/tabs/index.css +31 -0
- package/lib/modules/connection-gateway/components/tabs/index.d.ts +4 -0
- package/lib/modules/connection-gateway/components/tabs/index.js +43 -0
- package/lib/modules/connection-gateway/index.css +6 -0
- package/lib/modules/connection-gateway/index.d.ts +16 -0
- package/lib/modules/connection-gateway/index.js +67 -0
- package/lib/modules/connection-gateway/store.d.ts +80 -0
- package/lib/modules/connection-gateway/store.js +698 -0
- package/lib/modules/connection-gateway/view.d.ts +1 -0
- package/lib/modules/connection-gateway/view.js +22 -0
- package/lib/modules/device-pretest/assets/virtual-backdound-resources.d.ts +13 -0
- package/lib/modules/device-pretest/assets/virtual-backdound-resources.js +15 -0
- package/lib/modules/device-pretest/audio-preview/microphone-detection.d.ts +12 -0
- package/lib/modules/device-pretest/audio-preview/microphone-detection.js +71 -0
- package/lib/modules/device-pretest/audio-preview/speaker-control.d.ts +2 -0
- package/lib/modules/device-pretest/audio-preview/speaker-control.js +63 -0
- package/lib/modules/device-pretest/audio-preview/speaker-detection.d.ts +12 -0
- package/lib/modules/device-pretest/audio-preview/speaker-detection.js +71 -0
- package/lib/modules/device-pretest/context.d.ts +3 -0
- package/lib/modules/device-pretest/context.js +9 -0
- package/lib/modules/device-pretest/index.css +127 -0
- package/lib/modules/device-pretest/index.d.ts +13 -0
- package/lib/modules/device-pretest/index.js +242 -0
- package/lib/modules/device-pretest/settings/beauty.d.ts +10 -0
- package/lib/modules/device-pretest/settings/beauty.js +103 -0
- package/lib/modules/device-pretest/settings/camera-select.d.ts +12 -0
- package/lib/modules/device-pretest/settings/camera-select.js +53 -0
- package/lib/modules/device-pretest/settings/index.css +15 -0
- package/lib/modules/device-pretest/settings/video-effect.d.ts +12 -0
- package/lib/modules/device-pretest/settings/video-effect.js +50 -0
- package/lib/modules/device-pretest/settings/video-settings-basic.d.ts +2 -0
- package/lib/modules/device-pretest/settings/video-settings-basic.js +143 -0
- package/lib/modules/device-pretest/settings/virtual-background-setting.d.ts +7 -0
- package/lib/modules/device-pretest/settings/virtual-background-setting.js +99 -0
- package/lib/modules/device-pretest/store.d.ts +69 -0
- package/lib/modules/device-pretest/store.js +413 -0
- package/lib/modules/dialog/components/chat/electron.d.ts +4 -0
- package/lib/modules/dialog/components/chat/electron.js +59 -0
- package/lib/modules/dialog/components/chat/index.d.ts +7 -0
- package/lib/modules/dialog/components/chat/index.js +66 -0
- package/lib/modules/dialog/components/confirm/electron.d.ts +10 -0
- package/lib/modules/dialog/components/confirm/electron.js +84 -0
- package/lib/modules/dialog/components/confirm/index.d.ts +10 -0
- package/lib/modules/dialog/components/confirm/index.js +75 -0
- package/lib/modules/dialog/components/connection-gateway/electron.d.ts +2 -0
- package/lib/modules/dialog/components/connection-gateway/electron.js +62 -0
- package/lib/modules/dialog/components/connection-gateway/index.css +27 -0
- package/lib/modules/dialog/components/connection-gateway/index.d.ts +3 -0
- package/lib/modules/dialog/components/connection-gateway/index.js +74 -0
- package/lib/modules/dialog/components/participant/electron.d.ts +2 -0
- package/lib/modules/dialog/components/participant/electron.js +85 -0
- package/lib/modules/dialog/components/participant/index.d.ts +3 -0
- package/lib/modules/dialog/components/participant/index.js +61 -0
- package/lib/modules/dialog/components/share-screen-selection/index.d.ts +4 -0
- package/lib/modules/dialog/components/share-screen-selection/index.js +42 -0
- package/lib/modules/dialog/components/whiteboard/index.d.ts +4 -0
- package/lib/modules/dialog/components/whiteboard/index.js +74 -0
- package/lib/modules/dialog/context.d.ts +3 -0
- package/lib/modules/dialog/context.js +9 -0
- package/lib/modules/dialog/dialogs.d.ts +11 -0
- package/lib/modules/dialog/dialogs.js +376 -0
- package/lib/modules/dialog/index.css +55 -0
- package/lib/modules/dialog/index.d.ts +29 -0
- package/lib/modules/dialog/index.js +80 -0
- package/lib/modules/dialog/store.d.ts +82 -0
- package/lib/modules/dialog/store.js +525 -0
- package/lib/modules/dialog/view.d.ts +5 -0
- package/lib/modules/dialog/view.js +30 -0
- package/lib/modules/event-toast/context.d.ts +3 -0
- package/lib/modules/event-toast/context.js +9 -0
- package/lib/modules/event-toast/index.d.ts +10 -0
- package/lib/modules/event-toast/index.js +41 -0
- package/lib/modules/event-toast/store.d.ts +9 -0
- package/lib/modules/event-toast/store.js +76 -0
- package/lib/modules/event-toast/view.d.ts +1 -0
- package/lib/modules/event-toast/view.js +14 -0
- package/lib/modules/invite/context.d.ts +3 -0
- package/lib/modules/invite/context.js +9 -0
- package/lib/modules/invite/index.css +318 -0
- package/lib/modules/invite/index.d.ts +13 -0
- package/lib/modules/invite/index.js +51 -0
- package/lib/modules/invite/pstn-invite.d.ts +2 -0
- package/lib/modules/invite/pstn-invite.js +271 -0
- package/lib/modules/invite/store.d.ts +71 -0
- package/lib/modules/invite/store.js +472 -0
- package/lib/modules/invite/view.d.ts +1 -0
- package/lib/modules/invite/view.js +47 -0
- package/lib/modules/invite/voip-invite.d.ts +2 -0
- package/lib/modules/invite/voip-invite.js +294 -0
- package/lib/modules/layout/components/Aside.d.ts +7 -0
- package/lib/modules/layout/components/Aside.js +144 -0
- package/lib/modules/layout/components/Carousel.d.ts +1 -0
- package/lib/modules/layout/components/Carousel.js +271 -0
- package/lib/modules/layout/components/Gallery.d.ts +1 -0
- package/lib/modules/layout/components/Gallery.js +360 -0
- package/lib/modules/layout/components/Layout.d.ts +2 -0
- package/lib/modules/layout/components/Layout.js +160 -0
- package/lib/modules/layout/components/index.css +608 -0
- package/lib/modules/layout/components/index.d.ts +5 -0
- package/lib/modules/layout/components/index.js +55 -0
- package/lib/modules/layout/components/utils.d.ts +1 -0
- package/lib/modules/layout/components/utils.js +10 -0
- package/lib/modules/layout/context.d.ts +3 -0
- package/lib/modules/layout/context.js +9 -0
- package/lib/modules/layout/index.css +27 -0
- package/lib/modules/layout/index.d.ts +10 -0
- package/lib/modules/layout/index.dev.d.ts +1 -0
- package/lib/modules/layout/index.dev.js +378 -0
- package/lib/modules/layout/index.js +72 -0
- package/lib/modules/layout/member-window/index.css +321 -0
- package/lib/modules/layout/member-window/index.d.ts +67 -0
- package/lib/modules/layout/member-window/index.js +730 -0
- package/lib/modules/layout/store.d.ts +177 -0
- package/lib/modules/layout/store.js +1278 -0
- package/lib/modules/layout/type.d.ts +64 -0
- package/lib/modules/layout/type.js +52 -0
- package/lib/modules/layout/video-window-datasource.d.ts +119 -0
- package/lib/modules/layout/video-window-datasource.js +1031 -0
- package/lib/modules/layout/view.d.ts +2 -0
- package/lib/modules/layout/view.js +10 -0
- package/lib/modules/live-streaming/context.d.ts +3 -0
- package/lib/modules/live-streaming/context.js +9 -0
- package/lib/modules/live-streaming/index.css +0 -0
- package/lib/modules/live-streaming/index.d.ts +13 -0
- package/lib/modules/live-streaming/index.dev.d.ts +1 -0
- package/lib/modules/live-streaming/index.dev.js +59 -0
- package/lib/modules/live-streaming/index.js +76 -0
- package/lib/modules/live-streaming/store.d.ts +38 -0
- package/lib/modules/live-streaming/store.js +360 -0
- package/lib/modules/live-streaming/view.d.ts +1 -0
- package/lib/modules/live-streaming/view.js +33 -0
- package/lib/modules/participant/attendee/index.css +14 -0
- package/lib/modules/participant/attendee/index.d.ts +19 -0
- package/lib/modules/participant/attendee/index.js +280 -0
- package/lib/modules/participant/attendee/participants-more-action.d.ts +18 -0
- package/lib/modules/participant/attendee/participants-more-action.js +275 -0
- package/lib/modules/participant/attendee/user-more-actions.d.ts +22 -0
- package/lib/modules/participant/attendee/user-more-actions.js +76 -0
- package/lib/modules/participant/can-moveable/index.d.ts +1 -0
- package/lib/modules/participant/can-moveable/index.js +68 -0
- package/lib/modules/participant/context.d.ts +3 -0
- package/lib/modules/participant/context.js +9 -0
- package/lib/modules/participant/index.css +58 -0
- package/lib/modules/participant/index.d.ts +25 -0
- package/lib/modules/participant/index.dev.d.ts +1 -0
- package/lib/modules/participant/index.dev.js +98 -0
- package/lib/modules/participant/index.js +93 -0
- package/lib/modules/participant/member-list-data-source.d.ts +28 -0
- package/lib/modules/participant/member-list-data-source.js +261 -0
- package/lib/modules/participant/room-control-drop-menu/index.css +19 -0
- package/lib/modules/participant/room-control-drop-menu/index.d.ts +2 -0
- package/lib/modules/participant/room-control-drop-menu/index.js +154 -0
- package/lib/modules/participant/store.d.ts +145 -0
- package/lib/modules/participant/store.js +1334 -0
- package/lib/modules/participant/type.d.ts +34 -0
- package/lib/modules/participant/type.js +22 -0
- package/lib/modules/participant/view.d.ts +11 -0
- package/lib/modules/participant/view.js +260 -0
- package/lib/modules/setting/audio-settings/audio-settings.d.ts +4 -0
- package/lib/modules/setting/audio-settings/audio-settings.js +303 -0
- package/lib/modules/setting/audio-settings/index.css +144 -0
- package/lib/{fcr-ui-scene/src/containers/stream-window/index.d.ts → modules/setting/common/advance-link.d.ts} +1 -1
- package/lib/modules/setting/common/advance-link.js +27 -0
- package/lib/modules/setting/common/index.css +26 -0
- package/lib/modules/setting/common/useNamespace.d.ts +15 -0
- package/lib/modules/setting/common/useNamespace.js +66 -0
- package/lib/modules/setting/config.d.ts +16 -0
- package/lib/modules/setting/config.js +17 -0
- package/lib/modules/setting/context.d.ts +3 -0
- package/lib/modules/setting/context.js +9 -0
- package/lib/modules/setting/dialog-wrapper.d.ts +2 -0
- package/lib/modules/setting/dialog-wrapper.js +110 -0
- package/lib/modules/setting/general-settings/general-settings.d.ts +4 -0
- package/lib/modules/setting/general-settings/general-settings.js +66 -0
- package/lib/modules/setting/general-settings/index.css +26 -0
- package/lib/modules/setting/index.css +115 -0
- package/lib/modules/setting/index.d.ts +21 -0
- package/lib/modules/setting/index.dev.d.ts +1 -0
- package/lib/modules/setting/index.dev.js +71 -0
- package/lib/modules/setting/index.js +81 -0
- package/lib/modules/setting/state/index.css +211 -0
- package/lib/modules/setting/state/index.d.ts +4 -0
- package/lib/modules/setting/state/index.js +331 -0
- package/lib/modules/setting/storage-settings/index.css +91 -0
- package/lib/modules/setting/storage-settings/storage-settings.d.ts +3 -0
- package/lib/modules/setting/storage-settings/storage-settings.js +84 -0
- package/lib/modules/setting/store.d.ts +213 -0
- package/lib/modules/setting/store.js +1125 -0
- package/lib/modules/setting/video-settings/index.css +339 -0
- package/lib/modules/setting/video-settings/video-settings-basic.d.ts +9 -0
- package/lib/modules/setting/video-settings/video-settings-basic.js +160 -0
- package/lib/modules/setting/video-settings/video-settings.d.ts +10 -0
- package/lib/modules/setting/video-settings/video-settings.js +191 -0
- package/lib/modules/setting/view.d.ts +10 -0
- package/lib/modules/setting/view.js +139 -0
- package/lib/modules/share-screen/index.css +0 -0
- package/lib/modules/share-screen/index.d.ts +26 -0
- package/lib/modules/share-screen/index.dev.d.ts +1 -0
- package/lib/modules/share-screen/index.dev.js +96 -0
- package/lib/modules/share-screen/index.js +171 -0
- package/lib/modules/share-screen/selection/index.css +66 -0
- package/lib/modules/share-screen/selection/index.d.ts +9 -0
- package/lib/modules/share-screen/selection/index.js +224 -0
- package/lib/modules/share-screen/share-state-bar/index.css +38 -0
- package/lib/modules/share-screen/share-state-bar/index.d.ts +5 -0
- package/lib/modules/share-screen/share-state-bar/index.js +67 -0
- package/lib/modules/share-screen/store.d.ts +132 -0
- package/lib/modules/share-screen/store.js +1714 -0
- package/lib/modules/share-screen/view.d.ts +2 -0
- package/lib/modules/share-screen/view.js +45 -0
- package/lib/modules/state-bar/assets/fcr_grid_big.svg +3 -0
- package/lib/modules/state-bar/assets/fcr_listontop_big.svg +3 -0
- package/lib/modules/state-bar/assets/live-streaming.gif +0 -0
- package/lib/modules/state-bar/context.d.ts +3 -0
- package/lib/modules/state-bar/context.js +9 -0
- package/lib/modules/state-bar/index.css +630 -0
- package/lib/modules/state-bar/index.d.ts +18 -0
- package/lib/modules/state-bar/index.dev.d.ts +1 -0
- package/lib/modules/state-bar/index.dev.js +82 -0
- package/lib/modules/state-bar/index.js +69 -0
- package/lib/modules/state-bar/layout-config.d.ts +5 -0
- package/lib/modules/state-bar/layout-config.js +151 -0
- package/lib/modules/state-bar/live-streaming-state.d.ts +1 -0
- package/lib/modules/state-bar/live-streaming-state.js +199 -0
- package/lib/modules/state-bar/meeting-detail.css +107 -0
- package/lib/modules/state-bar/meeting-details.d.ts +2 -0
- package/lib/modules/state-bar/meeting-details.js +151 -0
- package/lib/modules/state-bar/meeting-network-state.css +131 -0
- package/lib/modules/state-bar/meeting-network-state.d.ts +2 -0
- package/lib/modules/state-bar/meeting-network-state.js +108 -0
- package/lib/modules/state-bar/meeting-time.d.ts +2 -0
- package/lib/modules/state-bar/meeting-time.js +49 -0
- package/lib/modules/state-bar/network-quality.d.ts +2 -0
- package/lib/modules/state-bar/network-quality.js +33 -0
- package/lib/modules/state-bar/recording.d.ts +1 -0
- package/lib/modules/state-bar/recording.js +110 -0
- package/lib/modules/state-bar/store.d.ts +70 -0
- package/lib/modules/state-bar/store.js +515 -0
- package/lib/modules/state-bar/view.d.ts +5 -0
- package/lib/modules/state-bar/view.js +182 -0
- package/lib/modules/video-window/context.d.ts +3 -0
- package/lib/modules/video-window/context.js +9 -0
- package/lib/modules/video-window/deviceState/index.d.ts +15 -0
- package/lib/modules/video-window/deviceState/index.js +77 -0
- package/lib/modules/video-window/index.css +17 -0
- package/lib/modules/video-window/index.d.ts +9 -0
- package/lib/modules/video-window/index.js +65 -0
- package/lib/modules/video-window/members/index.css +50 -0
- package/lib/modules/video-window/members/index.d.ts +2 -0
- package/lib/modules/video-window/members/index.js +134 -0
- package/lib/modules/video-window/speaking/index.css +69 -0
- package/lib/modules/video-window/speaking/index.d.ts +3 -0
- package/lib/modules/video-window/speaking/index.js +57 -0
- package/lib/modules/video-window/store.d.ts +88 -0
- package/lib/modules/video-window/store.js +598 -0
- package/lib/modules/video-window/topControl/index.css +35 -0
- package/lib/modules/video-window/topControl/index.d.ts +3 -0
- package/lib/modules/video-window/topControl/index.js +85 -0
- package/lib/modules/video-window/type.d.ts +23 -0
- package/lib/modules/video-window/type.js +32 -0
- package/lib/modules/video-window/view.d.ts +2 -0
- package/lib/modules/video-window/view.js +63 -0
- package/lib/modules/whiteboard/app.d.ts +2 -0
- package/lib/modules/whiteboard/app.js +55 -0
- package/lib/modules/whiteboard/components/control-bar/index.css +49 -0
- package/lib/modules/whiteboard/components/control-bar/index.d.ts +2 -0
- package/lib/modules/whiteboard/components/control-bar/index.js +163 -0
- package/lib/modules/whiteboard/components/control-bar/store.d.ts +36 -0
- package/lib/modules/whiteboard/components/control-bar/store.js +288 -0
- package/lib/modules/whiteboard/components/loading/index.css +76 -0
- package/lib/modules/whiteboard/components/loading/index.d.ts +2 -0
- package/lib/modules/whiteboard/components/loading/index.js +68 -0
- package/lib/modules/whiteboard/components/loading/loading.png +0 -0
- package/lib/modules/whiteboard/components/multi-window/index.css +63 -0
- package/lib/modules/whiteboard/components/multi-window/index.d.ts +5 -0
- package/lib/modules/whiteboard/components/multi-window/index.js +34 -0
- package/lib/modules/whiteboard/components/pagination/index.css +228 -0
- package/lib/modules/whiteboard/components/pagination/index.d.ts +15 -0
- package/lib/modules/whiteboard/components/pagination/index.js +163 -0
- package/lib/modules/whiteboard/components/pagination/store.d.ts +19 -0
- package/lib/modules/whiteboard/components/pagination/store.js +17 -0
- package/lib/modules/whiteboard/components/progress/electron.d.ts +1 -0
- package/lib/modules/whiteboard/components/progress/electron.js +32 -0
- package/lib/modules/whiteboard/components/progress/index.d.ts +5 -0
- package/lib/modules/whiteboard/components/progress/index.js +43 -0
- package/lib/modules/whiteboard/components/progress/style.css +50 -0
- package/lib/modules/whiteboard/components/scene-pagination.d.ts +1 -0
- package/lib/modules/whiteboard/components/scene-pagination.js +32 -0
- package/lib/modules/whiteboard/components/switch-theme/index.css +94 -0
- package/lib/modules/whiteboard/components/switch-theme/index.d.ts +2 -0
- package/lib/modules/whiteboard/components/switch-theme/index.js +77 -0
- package/lib/modules/whiteboard/components/switch-theme/item.d.ts +8 -0
- package/lib/modules/whiteboard/components/switch-theme/item.js +44 -0
- package/lib/modules/whiteboard/components/switch-theme/libs.d.ts +3 -0
- package/lib/modules/whiteboard/components/switch-theme/libs.js +28 -0
- package/lib/modules/whiteboard/components/toolbar/ style.css +588 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/color.d.ts +5 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/color.js +39 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.d.ts +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +105 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/picker.d.ts +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/picker.js +63 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/index.d.ts +2 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/index.js +44 -0
- package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.d.ts +4 -0
- package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.js +98 -0
- package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.d.ts +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +59 -0
- package/lib/modules/whiteboard/components/toolbar/components/history.d.ts +2 -0
- package/lib/modules/whiteboard/components/toolbar/components/history.js +46 -0
- package/lib/modules/whiteboard/components/toolbar/components/icons/fold-icon.d.ts +2 -0
- package/lib/modules/whiteboard/components/toolbar/components/icons/fold-icon.js +41 -0
- package/lib/modules/whiteboard/components/toolbar/components/icons/move-icon.d.ts +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/icons/move-icon.js +66 -0
- package/lib/modules/whiteboard/components/toolbar/components/move-handle.d.ts +5 -0
- package/lib/modules/whiteboard/components/toolbar/components/move-handle.js +131 -0
- package/lib/modules/whiteboard/components/toolbar/components/pen-picker.d.ts +4 -0
- package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +112 -0
- package/lib/modules/whiteboard/components/toolbar/components/screen-capture-picker.d.ts +4 -0
- package/lib/modules/whiteboard/components/toolbar/components/screen-capture-picker.js +74 -0
- package/lib/modules/whiteboard/components/toolbar/components/shape-picker.d.ts +4 -0
- package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +163 -0
- package/lib/modules/whiteboard/components/toolbar/hooks/index.d.ts +14 -0
- package/lib/modules/whiteboard/components/toolbar/hooks/index.js +211 -0
- package/lib/modules/whiteboard/components/toolbar/index.d.ts +2 -0
- package/lib/modules/whiteboard/components/toolbar/index.js +175 -0
- package/lib/modules/whiteboard/components/toolbar/store.d.ts +50 -0
- package/lib/modules/whiteboard/components/toolbar/store.js +224 -0
- package/lib/modules/whiteboard/context.d.ts +66 -0
- package/lib/modules/whiteboard/context.js +34 -0
- package/lib/modules/whiteboard/index.d.ts +115 -0
- package/lib/modules/whiteboard/index.js +1082 -0
- package/lib/modules/whiteboard/style.css +142 -0
- package/lib/modules/whiteboard/type.d.ts +96 -0
- package/lib/modules/whiteboard/type.js +94 -0
- package/lib/modules/whiteboard/utils.d.ts +11 -0
- package/lib/modules/whiteboard/utils.js +25 -0
- package/lib/plugins/browser-runtime-plugin.d.ts +0 -0
- package/lib/plugins/browser-runtime-plugin.js +67 -0
- package/lib/plugins/css-preset-plugin.d.ts +1 -0
- package/lib/plugins/css-preset-plugin.js +22 -0
- package/lib/plugins/electron-rtc-plugin.d.ts +1 -0
- package/lib/plugins/electron-rtc-plugin.js +5 -0
- package/lib/plugins/module-dev-plugin.d.ts +12 -0
- package/lib/plugins/module-dev-plugin.js +181 -0
- package/lib/plugins/multi-lang-plugin.d.ts +5 -0
- package/lib/plugins/multi-lang-plugin.js +17 -0
- package/lib/plugins/rtm-plugin.d.ts +1 -0
- package/lib/plugins/rtm-plugin.js +5 -0
- package/lib/plugins/web-rtc-plugin.d.ts +1 -0
- package/lib/plugins/web-rtc-plugin.js +5 -0
- package/lib/runtime.d.ts +86 -0
- package/lib/translations/enUS.d.ts +993 -0
- package/lib/translations/enUS.js +1016 -0
- package/lib/translations/zhCN.d.ts +993 -0
- package/lib/translations/zhCN.js +1016 -0
- package/lib/type.d.ts +107 -0
- package/lib/type.js +42 -0
- package/lib/ui-manager.d.ts +17 -0
- package/lib/ui-manager.js +555 -0
- package/lib/ui-scene.d.ts +13 -0
- package/lib/ui-scene.js +142 -0
- package/lib/utilities/board-context.d.ts +5 -0
- package/lib/utilities/board-context.js +12 -0
- package/lib/utilities/constant.d.ts +248 -0
- package/lib/utilities/constant.js +232 -0
- package/lib/utilities/copyText.d.ts +2 -0
- package/lib/utilities/copyText.js +43 -0
- package/lib/utilities/default-config.d.ts +32 -0
- package/lib/utilities/default-config.js +39 -0
- package/lib/utilities/extract.d.ts +5 -0
- package/lib/utilities/extract.js +97 -0
- package/lib/utilities/hooks.d.ts +14 -0
- package/lib/utilities/hooks.js +99 -0
- package/lib/utilities/mute-action.d.ts +4 -0
- package/lib/utilities/mute-action.js +48 -0
- package/lib/utilities/parameters.d.ts +7 -0
- package/lib/utilities/parameters.js +20 -0
- package/lib/utilities/platform.d.ts +1 -0
- package/lib/utilities/platform.js +11 -0
- package/lib/utilities/regex.d.ts +1 -0
- package/lib/utilities/regex.js +14 -0
- package/lib/utilities/renderer-event.d.ts +9 -0
- package/lib/utilities/renderer-event.js +76 -0
- package/lib/utilities/renderer.d.ts +23 -0
- package/lib/utilities/renderer.js +109 -0
- package/lib/utilities/screen.d.ts +3 -0
- package/lib/utilities/screen.js +41 -0
- package/lib/utilities/tools.d.ts +25 -0
- package/lib/utilities/tools.js +164 -0
- package/lib/utilities/ui-resources.d.ts +2 -0
- package/lib/utilities/ui-resources.js +9 -0
- package/lib/utilities/useNamespace.d.ts +15 -0
- package/lib/utilities/useNamespace.js +66 -0
- package/lib/utilities/video-track-render-context.d.ts +8 -0
- package/lib/utilities/video-track-render-context.js +9 -0
- package/package.json +61 -85
- package/public/assets/fcr_chat_reddot.svg +5 -0
- package/public/assets/fcr_defaultpage.png +0 -0
- package/public/assets/fcr_grid_big.svg +3 -0
- package/public/assets/fcr_listontop_big.svg +3 -0
- package/public/assets/pretest.mp3 +0 -0
- package/public/assets/state-bar-logo.png +0 -0
- package/public/assets/step-gradient.svg +10 -0
- package/public/extensions/agora-extension-virtual-background/agora-wasm.wasm +0 -0
- package/public/extensions/ai-denoiser/denoiser-wasm-simd.wasm +0 -0
- package/public/extensions/ai-denoiser/denoiser-wasm.js +1 -0
- package/public/extensions/ai-denoiser/denoiser-wasm.wasm +0 -0
- package/public/index.html +26 -0
- package/.github/workflows/gitee-sync.yml +0 -27
- package/lib/fcr-ui-kit/src/components/avatar/helper.d.ts +0 -2
- package/lib/fcr-ui-kit/src/components/avatar/index.d.ts +0 -8
- package/lib/fcr-ui-kit/src/components/button/index.d.ts +0 -82
- package/lib/fcr-ui-kit/src/components/checkbox/index.d.ts +0 -12
- package/lib/fcr-ui-kit/src/components/dialog/class-dialog.d.ts +0 -51
- package/lib/fcr-ui-kit/src/components/dialog/confirm-dialog.d.ts +0 -70
- package/lib/fcr-ui-kit/src/components/dialog/global-dialog.d.ts +0 -11
- package/lib/fcr-ui-kit/src/components/dialog/index.d.ts +0 -68
- package/lib/fcr-ui-kit/src/components/dropdown/index.d.ts +0 -58
- package/lib/fcr-ui-kit/src/components/input/index.d.ts +0 -69
- package/lib/fcr-ui-kit/src/components/input-number/index.d.ts +0 -69
- package/lib/fcr-ui-kit/src/components/pagination/index.d.ts +0 -27
- package/lib/fcr-ui-kit/src/components/popover/index.d.ts +0 -47
- package/lib/fcr-ui-kit/src/components/progress/index.d.ts +0 -11
- package/lib/fcr-ui-kit/src/components/radio/index.d.ts +0 -21
- package/lib/fcr-ui-kit/src/components/slider/index.d.ts +0 -22
- package/lib/fcr-ui-kit/src/components/sound-player/index.d.ts +0 -6
- package/lib/fcr-ui-kit/src/components/svg-img/clickable-icon.d.ts +0 -25
- package/lib/fcr-ui-kit/src/components/svg-img/index.d.ts +0 -15
- package/lib/fcr-ui-kit/src/components/svg-img/mic.d.ts +0 -5
- package/lib/fcr-ui-kit/src/components/svg-img/svg-dict.d.ts +0 -12
- package/lib/fcr-ui-kit/src/components/svg-img/type.d.ts +0 -196
- package/lib/fcr-ui-kit/src/components/svga-player/index.d.ts +0 -15
- package/lib/fcr-ui-kit/src/components/svga-player/svga-types.d.ts +0 -1
- package/lib/fcr-ui-kit/src/components/table/index.d.ts +0 -9
- package/lib/fcr-ui-kit/src/components/tabs/index.d.ts +0 -14
- package/lib/fcr-ui-kit/src/components/textarea/helper.d.ts +0 -2
- package/lib/fcr-ui-kit/src/components/textarea/index.d.ts +0 -100
- package/lib/fcr-ui-kit/src/components/toast/index.d.ts +0 -122
- package/lib/fcr-ui-kit/src/components/tooltip/dialog.d.ts +0 -19
- package/lib/fcr-ui-kit/src/components/tooltip/index.d.ts +0 -89
- package/lib/fcr-ui-kit/src/components/tooltip/info.d.ts +0 -6
- package/lib/fcr-ui-kit/src/components/volume/index.d.ts +0 -8
- package/lib/fcr-ui-kit/src/utils/click-anywhere.d.ts +0 -1
- package/lib/fcr-ui-kit/src/utils/hooks/animations.d.ts +0 -14
- package/lib/fcr-ui-kit/src/utils/hooks/use-click-anywhere.d.ts +0 -2
- package/lib/fcr-ui-kit/src/utils/tailwindcss.d.ts +0 -3
- package/lib/fcr-ui-scene/src/app.d.ts +0 -5
- package/lib/fcr-ui-scene/src/configs/base-theme.d.ts +0 -391
- package/lib/fcr-ui-scene/src/configs/base-ui.d.ts +0 -12
- package/lib/fcr-ui-scene/src/configs/room-template.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/chat/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/cloud/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/device/index.d.ts +0 -9
- package/lib/fcr-ui-scene/src/containers/action-bar/index.d.ts +0 -24
- package/lib/fcr-ui-scene/src/containers/action-bar/leave/index.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/action-bar/participants/index.d.ts +0 -5
- package/lib/fcr-ui-scene/src/containers/action-bar/raise-hands/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/record/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/screen-share/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/setting/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/toolbox/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/action-bar/whiteboard/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/breakout-room/ask-help-list.d.ts +0 -10
- package/lib/fcr-ui-scene/src/containers/breakout-room/broadcast-panel.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/breakout-room/create-panel.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/breakout-room/group-info-panel.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/breakout-room/group-panel.d.ts +0 -5
- package/lib/fcr-ui-scene/src/containers/breakout-room/group-status-panel.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/breakout-room/grouping.d.ts +0 -15
- package/lib/fcr-ui-scene/src/containers/breakout-room/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/breakout-room/search-panel.d.ts +0 -5
- package/lib/fcr-ui-scene/src/containers/breakout-room/wizard.d.ts +0 -6
- package/lib/fcr-ui-scene/src/containers/cloud/dialog-header.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/cloud/index.d.ts +0 -6
- package/lib/fcr-ui-scene/src/containers/cloud/personal.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/cloud/public.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/common/interact-labels.d.ts +0 -6
- package/lib/fcr-ui-scene/src/containers/device-pretest/basic-settings.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/device-pretest/beauty-filter.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/device-pretest/beauty-slider.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/device-pretest/device-select.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/device-pretest/index.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/device-pretest/mirror-toggle.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/device-pretest/video-portal.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/device-pretest/virtual-background.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/device-settings/audio-settings.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/device-settings/dialog-wrapper.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/device-settings/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/device-settings/video-settings.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/dialog/class-info.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/dialog/confirm.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/dialog/index.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/layout/cover-view.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/layout/gallery-view.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/layout/presentation-view.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/loading/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/participants/dialog.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/participants/index.d.ts +0 -5
- package/lib/fcr-ui-scene/src/containers/status-bar/class-duration/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/status-bar/fullscreen/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/status-bar/index.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/status-bar/layout-switch/index.d.ts +0 -22
- package/lib/fcr-ui-scene/src/containers/status-bar/network/index.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/status-bar/record-status/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/status-bar/room-info/index.d.ts +0 -4
- package/lib/fcr-ui-scene/src/containers/status-bar/share/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/status-bar/widgets/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/containers/stream-window/context.d.ts +0 -52
- package/lib/fcr-ui-scene/src/containers/video-player/index.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/video-player/players.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/widget/break-out-room/index.d.ts +0 -2
- package/lib/fcr-ui-scene/src/containers/widget/draggable-wrapper/index.d.ts +0 -7
- package/lib/fcr-ui-scene/src/containers/widget/helpers.d.ts +0 -40
- package/lib/fcr-ui-scene/src/containers/widget/hooks.d.ts +0 -21
- package/lib/fcr-ui-scene/src/containers/widget/index.d.ts +0 -7
- package/lib/fcr-ui-scene/src/containers/widget/participants/index.d.ts +0 -2
- package/lib/fcr-ui-scene/src/extension/board.d.ts +0 -73
- package/lib/fcr-ui-scene/src/extension/edu-tool.d.ts +0 -57
- package/lib/fcr-ui-scene/src/extension/events.d.ts +0 -91
- package/lib/fcr-ui-scene/src/extension/type.d.ts +0 -94
- package/lib/fcr-ui-scene/src/index.d.ts +0 -39
- package/lib/fcr-ui-scene/src/lock.d.ts +0 -8
- package/lib/fcr-ui-scene/src/preset.d.ts +0 -1
- package/lib/fcr-ui-scene/src/resources/translations/enUs.d.ts +0 -400
- package/lib/fcr-ui-scene/src/resources/translations/zhCn.d.ts +0 -405
- package/lib/fcr-ui-scene/src/scenarios/classroom.d.ts +0 -2
- package/lib/fcr-ui-scene/src/scenarios/layout/index.d.ts +0 -2
- package/lib/fcr-ui-scene/src/type.d.ts +0 -361
- package/lib/fcr-ui-scene/src/uistores/action-bar.d.ts +0 -58
- package/lib/fcr-ui-scene/src/uistores/base.d.ts +0 -58
- package/lib/fcr-ui-scene/src/uistores/breakout.d.ts +0 -225
- package/lib/fcr-ui-scene/src/uistores/cloud/helper.d.ts +0 -26
- package/lib/fcr-ui-scene/src/uistores/cloud/index.d.ts +0 -51
- package/lib/fcr-ui-scene/src/uistores/cloud/struct.d.ts +0 -131
- package/lib/fcr-ui-scene/src/uistores/context.d.ts +0 -7
- package/lib/fcr-ui-scene/src/uistores/device-setting.d.ts +0 -222
- package/lib/fcr-ui-scene/src/uistores/gallery-view.d.ts +0 -16
- package/lib/fcr-ui-scene/src/uistores/getters.d.ts +0 -42
- package/lib/fcr-ui-scene/src/uistores/index.d.ts +0 -47
- package/lib/fcr-ui-scene/src/uistores/layout.d.ts +0 -64
- package/lib/fcr-ui-scene/src/uistores/notification.d.ts +0 -9
- package/lib/fcr-ui-scene/src/uistores/participants.d.ts +0 -48
- package/lib/fcr-ui-scene/src/uistores/presentation-view.d.ts +0 -24
- package/lib/fcr-ui-scene/src/uistores/status-bar.d.ts +0 -47
- package/lib/fcr-ui-scene/src/uistores/stream.d.ts +0 -48
- package/lib/fcr-ui-scene/src/uistores/subscription/abstract.d.ts +0 -45
- package/lib/fcr-ui-scene/src/uistores/subscription/index.d.ts +0 -13
- package/lib/fcr-ui-scene/src/uistores/subscription/main-room.d.ts +0 -14
- package/lib/fcr-ui-scene/src/uistores/subscription/type.d.ts +0 -10
- package/lib/fcr-ui-scene/src/uistores/type.d.ts +0 -86
- package/lib/fcr-ui-scene/src/uistores/widget.d.ts +0 -49
- package/lib/fcr-ui-scene/src/utils/asset.d.ts +0 -1
- package/lib/fcr-ui-scene/src/utils/check.d.ts +0 -7
- package/lib/fcr-ui-scene/src/utils/clamp-bounds.d.ts +0 -14
- package/lib/fcr-ui-scene/src/utils/config-loader.d.ts +0 -7
- package/lib/fcr-ui-scene/src/utils/grid/index.d.ts +0 -9
- package/lib/fcr-ui-scene/src/utils/hooks/use-authorization.d.ts +0 -5
- package/lib/fcr-ui-scene/src/utils/hooks/use-device-switch.d.ts +0 -29
- package/lib/fcr-ui-scene/src/utils/hooks/use-drag-position.d.ts +0 -21
- package/lib/fcr-ui-scene/src/utils/hooks/use-network.d.ts +0 -17
- package/lib/fcr-ui-scene/src/utils/hooks/use-pin-stream.d.ts +0 -4
- package/lib/fcr-ui-scene/src/utils/hooks/use-rnd-position.d.ts +0 -24
- package/lib/fcr-ui-scene/src/utils/hooks/use-store.d.ts +0 -1
- package/lib/fcr-ui-scene/src/utils/hooks/use-video-renderable.d.ts +0 -3
- package/lib/fcr-ui-scene/src/utils/hooks/use-z-index.d.ts +0 -8
- package/lib/fcr-ui-scene/src/utils/index.d.ts +0 -7
- package/lib/fcr-ui-scene/src/utils/launch-options-holder.d.ts +0 -10
- package/lib/fcr-ui-scene/src/utils/rtc-extensions.d.ts +0 -29
- package/lib/fcr-ui-scene/src/utils/short-name.d.ts +0 -1
- package/lib/fcr-ui-scene/src/utils/stream/index.d.ts +0 -3
- package/lib/fcr-ui-scene/src/utils/stream/state-keeper.d.ts +0 -18
- package/lib/fcr-ui-scene/src/utils/stream/struct.d.ts +0 -67
- package/lib/fcr-ui-scene/src/utils/vsd-pattern.d.ts +0 -1
- package/lib/fcr-ui-scene/src/utils/z-index-controller.d.ts +0 -9
- package/lib/fcr-ui-scene/tailwind.config.d.ts +0 -1
- package/lib/scene.bundle.js +0 -2
- /package/lib/{fcr-ui-scene/src/containers/video-player/tools-overlay.d.ts → electron/preload.d.ts} +0 -0
|
@@ -0,0 +1,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.zhCn = void 0;
|
|
8
|
+
var zhCn = exports.zhCn = {
|
|
9
|
+
fmt_role_host: '主持人',
|
|
10
|
+
fmt_role_participant: '参会者',
|
|
11
|
+
fmt_role_cohost: '联席主持人',
|
|
12
|
+
fmt_participants_label_participants: '成员列表',
|
|
13
|
+
fmt_participants_label_popUp: '弹出',
|
|
14
|
+
fmt_participants_window_title: '与会者{reason1}',
|
|
15
|
+
fmt_participants_button_muteAll: '全员静音',
|
|
16
|
+
fmt_participants_button_unmuteAll: '解除全员静音',
|
|
17
|
+
fmt_participants_button_meetingManagement: '会议管理',
|
|
18
|
+
fmt_participants_button_invite: '邀请',
|
|
19
|
+
fmt_participants_member_button_mute: '静音',
|
|
20
|
+
fmt_participants_member_button_unmute: '解除静音',
|
|
21
|
+
fmt_participants_member_button_more: '更多',
|
|
22
|
+
//****************** 参会者 ******************
|
|
23
|
+
fmt_attendies_options_muteall: '将所有当前会议室的参会者静音',
|
|
24
|
+
fmt_attendies_button_muteall: '全体静音',
|
|
25
|
+
fmt_attendies_button_cancel: '取消',
|
|
26
|
+
fmt_attendies_options_muteuponjoin: '所有参会者加入时静音',
|
|
27
|
+
fmt_attendies_options_allowunmute: '允许参会者自我解除静音',
|
|
28
|
+
fmt_attendies_options_applyunmute: '申请解除静音',
|
|
29
|
+
fmt_attendies_button_request: '请求',
|
|
30
|
+
fmt_attendies_button_handsdown: '放下手',
|
|
31
|
+
fmt_attendies_label_privatechat: '私聊',
|
|
32
|
+
fmt_attendies_options_setfocus: '设为焦点视频',
|
|
33
|
+
fmt_attendies_options_replacefixed: '替换固定视窗',
|
|
34
|
+
fmt_attendies_options_fixfirst: '固定视窗到第 1 位',
|
|
35
|
+
fmt_attendies_options_cancelfixed: '取消固定视窗',
|
|
36
|
+
fmt_attendies_options_sethost: '设为主持人',
|
|
37
|
+
fmt_attendies_options_revokecohost: '撤销联席主持人',
|
|
38
|
+
fmt_attendies_options_setcohost: '设为联席主持人',
|
|
39
|
+
fmt_attendies_button_rename: '重命名',
|
|
40
|
+
fmt_attendies_options_allowlocalrecord: '允许录制本地视频',
|
|
41
|
+
fmt_attendies_options_putinwaitingroom: '放进等待室',
|
|
42
|
+
fmt_attendies_button_remove: '移出',
|
|
43
|
+
fmt_participants_options_allunmute: '允许全体成员自我解除静音',
|
|
44
|
+
fmt_participants_options_allmute: '开启全员静音',
|
|
45
|
+
fmt_modules_tips_mergevideo: '与视频合并...',
|
|
46
|
+
fmt_participant_label_Me: '我',
|
|
47
|
+
fmt_attendies_button_serach: '搜索...',
|
|
48
|
+
fmt_attendies_tips_nopermission: '对方是{reason1},你不可操作',
|
|
49
|
+
fmt_attendies_tab_meetingroom: '会议室',
|
|
50
|
+
fmt_attendies_tab_waitingroom: '等候室',
|
|
51
|
+
fmt_attendies_host_permission: '收起主持人权限',
|
|
52
|
+
fmt_attendies_option_apply_all_audio: '解除全体静音',
|
|
53
|
+
fmt_attendies_status_item_ringing: '正在响铃…',
|
|
54
|
+
fmt_attendies_labels_setting_mine: '(我)',
|
|
55
|
+
fmt_attendies_tips_setting_title: '成员设置',
|
|
56
|
+
fmt_attendies_tips_setting_media_co_host_unable: '对方是联席主持人,你不可操作',
|
|
57
|
+
fmt_attendies_tips_setting_media_host_unable: '对方是主持人,你不可操作',
|
|
58
|
+
fmt_attendies_tips_setting_make_host_info: '是否将 {reason1} 设为会议的主持人?',
|
|
59
|
+
fmt_attendies_tips_setting_make_co_host_info: '是否将 {reason1} 设为会议的联席主持人?',
|
|
60
|
+
fmt_attendies_tips_setting_require_unmute: '要求所有人解除静音',
|
|
61
|
+
fmt_attendies_label_no_data: '无数据',
|
|
62
|
+
fmt_attendies_tips_send_mute_all_on: '你已开启了全体静音',
|
|
63
|
+
fmt_attendies_tips_mute_all_off: '全员可以自由开启麦克风',
|
|
64
|
+
fmt_attendies_tips_chat_off: '主持人禁止私聊',
|
|
65
|
+
fmt_attendies_tips_apply_audio_title: '{reason1}向你申请解除静音',
|
|
66
|
+
fmt_attendies_tips_apply_audio_info: '同意解除后,你的麦克风将打开。',
|
|
67
|
+
fmt_attendies_label_apply_audio_cancel: '保持静音',
|
|
68
|
+
fmt_attendies_tips_apply_video_title: '{reason1}向你申请开启摄像头',
|
|
69
|
+
fmt_attendies_tips_apply_video_info: '同意解除后,你的摄像头将打开。',
|
|
70
|
+
fmt_attendies_label_apply_video_cancel: '保持关闭',
|
|
71
|
+
fmt_attendies_tips_receive_mute_all: '{reason1}开启了全员静音',
|
|
72
|
+
fmt_attendies_tips_receive_mute_you: '{reason1}已将你静音',
|
|
73
|
+
fmt_attendies_tips_receive_video_off_you: '{reason1}已将你摄像头关闭',
|
|
74
|
+
fmt_attendies_tips_mine_new_host: '{reason1}(我)成为新主持人',
|
|
75
|
+
fmt_attendies_tips_new_host: '{reason1}成为新主持人',
|
|
76
|
+
fmt_attendies_tips_mine_new_co_host: '你被设为联席主持人',
|
|
77
|
+
fmt_attendies_tips_new_co_host: '{reason1} 现在成为联席主持人',
|
|
78
|
+
fmt_attendies_tips_invoke_co_host: '已撤销 {reason1} 的联席主持人身份',
|
|
79
|
+
fmt_attendies_tips_revoke_co_host: '你的联席主持人身份已收回',
|
|
80
|
+
fmt_attendies_tips_not_co_host: '{reason1} 不再是联席主持人',
|
|
81
|
+
fmt_attendies_tips_operation_success: '操作成功',
|
|
82
|
+
fmt_attendies_tips_operation_failed: '操作失效',
|
|
83
|
+
fmt_attendies_tips_forbid_close: '主持人禁止关闭',
|
|
84
|
+
fmt_attendies_tips_request_send: '你已发送请求',
|
|
85
|
+
fmt_additional_tips_cohostbeenrevoke: '你的联席主持人身份已收回',
|
|
86
|
+
fmt_additional_tips_cohostrevoke: '已撤销 {reason1} 的联席主持人身份',
|
|
87
|
+
fmt_additional_tips_nolongercohost: '{reason1}不再是联席主持人',
|
|
88
|
+
fmt_actionbar_tips_leavemeeting: '你确定现在要离开会议吗?',
|
|
89
|
+
fmt_actionbar_button_plenarysession: '全体结束会议',
|
|
90
|
+
fmt_actionbar_tips_locked: '会议已被主持人加锁',
|
|
91
|
+
fmt_actionbar_tips_recheckleave: '离开会议之后不能再加入;你确定现在要离开会议吗?',
|
|
92
|
+
fmt_aside_status_connecting: '连接中...',
|
|
93
|
+
fmt_actionbar_labels_endmeeting: '你确定现在要结束会议吗?',
|
|
94
|
+
fmt_actionbar__button_leaveyes: '是的',
|
|
95
|
+
fmt_actionbar__button_leaveno: '否',
|
|
96
|
+
fmt_actionbar_options_utoadjust: '自动调整扬声器音量',
|
|
97
|
+
fmt_actionbar_options_micautoadjust: '自动调整麦克风音量',
|
|
98
|
+
fmt_actionbar_label_reducenoise: '降低背景噪音',
|
|
99
|
+
fmt_actionbar_tips_cameraturnon: '接受邀请后,你的摄像头将打开。',
|
|
100
|
+
fmt_actionbar_button_accept: '接受',
|
|
101
|
+
fmt_actionbar_button_refuse: '拒绝',
|
|
102
|
+
fmt_actionbar_tips_unmute: '主持人希望你“解除静音”',
|
|
103
|
+
fmt_actionbar_tips_agreeturnon: '同意解除后,你的麦克风将打开。',
|
|
104
|
+
fmt_actionbar_options_Keepsilent: '保持静音',
|
|
105
|
+
fmt_statusbar_label_fullscreen: '全屏',
|
|
106
|
+
fmt_statusbar_label_exitfullscreen: '退出全屏',
|
|
107
|
+
fmt_statusbar_label_switchlayout: '切换布局',
|
|
108
|
+
fmt_statusbar_label_durationtime: '会议持续时间(会议预定时长{reason1}{reason2})',
|
|
109
|
+
fmt_statusbar_label_layout: '布局',
|
|
110
|
+
fmt_statusbar_label_layoutsetting: '布局设置',
|
|
111
|
+
fmt_statusbar_opions_listontop: '排在顶部',
|
|
112
|
+
fmt_statusbar_label_grid: '网格({reason1}个窗口)',
|
|
113
|
+
fmt_statusbar_label_customwating: '在自定义直播服务器上观看直播',
|
|
114
|
+
fmt_statusbar_status_coppied: '已复制在粘贴板',
|
|
115
|
+
fmt_statusbar_tips_copyfailed: '复制失败',
|
|
116
|
+
fmt_statusbar_tips_onstreaming: '会议正在自定义直播服务上直播',
|
|
117
|
+
fmt_statusbar_label_hour: '小时',
|
|
118
|
+
fmt_statusbar_label_minutes: '分钟',
|
|
119
|
+
fmt_statusbar_label_cloudrecordingpaused: '云录制暂停中',
|
|
120
|
+
fmt_statusbar_label_networkpaused: '网络状态',
|
|
121
|
+
fmt_statusbar_label_unknown: '未知',
|
|
122
|
+
fmt_statusbar_label_millisecond: '毫秒',
|
|
123
|
+
fmt_toolbar_tips_expand: '展开工具栏',
|
|
124
|
+
fmt_toolbar_label_connectaudio: '连接音频',
|
|
125
|
+
fmt_toolbar_label_nodevice: '无设备',
|
|
126
|
+
fmt_toolbar_label_camera: '摄像头',
|
|
127
|
+
fmt_toolbar_options_enablecamera: '启用摄像头',
|
|
128
|
+
fmt_toolbar_tips_nodevice: '无可用设备',
|
|
129
|
+
fmt_toolbar_button_audioaccess: '选择音频接入方式',
|
|
130
|
+
fmt_toolbar_options_pcaudio: '连接到电脑音频…',
|
|
131
|
+
fmt_toolbar_options_phoneaudio: '连接到电话音频…',
|
|
132
|
+
fmt_toolbar_options_switchaccessmode: '切换音频接入模式...',
|
|
133
|
+
fmt_toolbar_button_assignnewhost: '分配新的主持人',
|
|
134
|
+
fmt_toolbar_button_assignleave: '分配后离开',
|
|
135
|
+
fmt_toolbar_button_end: '结束',
|
|
136
|
+
fmt_toolbar_button_leave: '离开',
|
|
137
|
+
fmt_toolbar_button_cancel: '取消',
|
|
138
|
+
fmt_popup_tips_endplenarymeeting: '现在结束全体会议吗?',
|
|
139
|
+
fmt_popup_button_endmeeting: '结束会议',
|
|
140
|
+
fmt_popup_button_leavemeeting: '离开会议',
|
|
141
|
+
fmt_popup_button_cancel: '取消',
|
|
142
|
+
fmt_meetingroom_status_abnormal: '会议异常',
|
|
143
|
+
fmt_meetingroom_tips_disconnected: '会议连接中断,请重新加入',
|
|
144
|
+
fmt_meetingroom_join_fail: '加入失败',
|
|
145
|
+
fmt_meetingroom_tips_rejoin: '请重新加入',
|
|
146
|
+
fmt_meetingroom_button_sure: '确定',
|
|
147
|
+
fmt_popup_tips_leavenow: '确定现在离开会议吗?',
|
|
148
|
+
fmt_popup_label_expression: '表情',
|
|
149
|
+
fmt_popup_tips_alreadycopied: '已复制在粘贴板',
|
|
150
|
+
fmt_popup_button_meetinginfor: '复制会议信息',
|
|
151
|
+
fmt_popup_button_activatewaitingroom: '启用等候室',
|
|
152
|
+
fmt_popup_button_openvideo: '开启视频',
|
|
153
|
+
fmt_popup_button_drag: '拖动',
|
|
154
|
+
fmt_popup_label_muted: '已静音',
|
|
155
|
+
fmt_popup_label_turnedon: '已开麦',
|
|
156
|
+
fmt_popup_label_meetingduration: '会议时长{reason1}分钟',
|
|
157
|
+
fmt_leave_tips_removetip: '你被请出这个会议,点击按钮后将退出会议',
|
|
158
|
+
fmt_leave_tips_classover: '会议已结束,请点击按钮离开会议室。',
|
|
159
|
+
fmt_toolbar_label_receiver: '听筒',
|
|
160
|
+
fmt_toolbar_label_me: '我',
|
|
161
|
+
fmt_toolbar_label_ear_phone: '耳机',
|
|
162
|
+
fmt_toolbar_label_confirm: '确定',
|
|
163
|
+
fmt_toolbar_label_open: '打开',
|
|
164
|
+
fmt_toolbar_label_unlock: '解锁',
|
|
165
|
+
fmt_toolbar_tips_microphone_open: '麦克风开启',
|
|
166
|
+
fmt_toolbar_tips_microphone_close: '麦克风关闭',
|
|
167
|
+
fmt_toolbar_tips_camera_open: '摄像头开启',
|
|
168
|
+
fmt_toolbar_tips_camera_close: '摄像头关闭',
|
|
169
|
+
fmt_toolbar_tips_host_forbid_open_mic: '主持人禁止开启麦克风',
|
|
170
|
+
fmt_toolbar_tips_host_forbid_open_camera: '主持人禁止开启摄像头',
|
|
171
|
+
fmt_toolbar_details_info_locked: '(锁定)',
|
|
172
|
+
fmt_toolbar_details_room_locked: '会议锁定中',
|
|
173
|
+
fmt_toolbar_details_room_locked_tip: '任何参会者不能进会',
|
|
174
|
+
fmt_toolbar_tips_details_unlock_meeting: '你已解锁会议,新参会者可以加入',
|
|
175
|
+
fmt_toolbar_tips_actions_route_earphone: '已切换到耳机模式',
|
|
176
|
+
fmt_toolbar_tips_actions_route_receiver: '已切换到听筒模式',
|
|
177
|
+
fmt_toolbar_tips_actions_route_speaker: '已切换到扬声器模式',
|
|
178
|
+
fmt_toolbar_tips_leave_room_lock_title: '会议已被主持人加锁',
|
|
179
|
+
fmt_toolbar_tips_leave_room_lock_info: '离开会议之后不能再加入,确认离开吗?',
|
|
180
|
+
fmt_toolbar_leave_room_end_submit: '确认结束',
|
|
181
|
+
fmt_toolbar_tips_leave_room_end_cancel: '暂时不结束会议',
|
|
182
|
+
fmt_toolbar_tips_leave_host_select_submit_tips: '请指定新的主持人',
|
|
183
|
+
fmt_toolbar_leave_confirm_dialog_kick_title: '离开会议',
|
|
184
|
+
fmt_toolbar_tips_leave_confirm_dialog_kick_info: '你已被从会议中移出,点击按钮离开会议',
|
|
185
|
+
fmt_toolbar_leave_confirm_dialog_submit: '知道了',
|
|
186
|
+
fmt_toolbar_tips_leave_confirm_dialog_end_title: '会议已结束',
|
|
187
|
+
fmt_toolbar_tips_leave_confirm_dialog_end_info: '会议已结束,请点击按钮离开教室。',
|
|
188
|
+
fmt_additional_tips_cameraturnon: '接受邀请后,你的摄像头将打开。',
|
|
189
|
+
fmt_additional_button_accept: '接受',
|
|
190
|
+
fmt_additional_button_refuse: '拒绝',
|
|
191
|
+
fmt_additional_tips_unmute: '主持人希望你“解除静音”',
|
|
192
|
+
fmt_additional_tips_agreeturnon: '同意解除后,你的麦克风将打开。',
|
|
193
|
+
fmt_additional_options_Keepsilent: '保持静音',
|
|
194
|
+
fmt_actionbar_button_enable: '启用',
|
|
195
|
+
fmt_actionbar_button_disable: '停止',
|
|
196
|
+
fmt_actionbar_tips_cloudrecording_already: '云录制已{reason1}',
|
|
197
|
+
fmt_actionbar_tips_joinroom_noaudio: '确认在无音频情况下继续加会?',
|
|
198
|
+
fmt_actionbar_tips_canthear: '你听不到其他参会者的声音,他们也无法听到你。',
|
|
199
|
+
fmt_actionbar_button_continue: '继续',
|
|
200
|
+
fmt_actionbar_option_connectaudio: '连接语音',
|
|
201
|
+
fmt_actionbar_label_dialsip: '拨打h.323/sip会议室系统',
|
|
202
|
+
fmt_actionbar_tips_hidenonvideo: '你开启了“隐藏非视频窗口功能”,固定视窗无法生效',
|
|
203
|
+
fmt_popup_copywrite_stopstreamingnow: '确定现在停止直播吗?',
|
|
204
|
+
fmt_popup_options_confirmstop: '确定停止直播',
|
|
205
|
+
fmt_popup_options_placedbottom: '置于底部',
|
|
206
|
+
fmt_popup_options_placedtop: '置于顶部',
|
|
207
|
+
fmt_broadcast_tips_righturl: '请输入正确的直播页面地址',
|
|
208
|
+
fmt_broadcast_tips_anyonewatch: '所有使用这个链接的人都可以收看直播',
|
|
209
|
+
fmt_broadcast_tips_streamingwebpage: '请输入直播流网页的网址',
|
|
210
|
+
fmt_broadcast_tips_rightstreamingwebpage: '请输入正确的直播网页的网址',
|
|
211
|
+
fmt_broadcast_tips_initiatefailed: '发起失败',
|
|
212
|
+
fmt_broadcast_tips_alreadybroadcasting: '你目前已发起直播服务,需停止后才能发起新直播',
|
|
213
|
+
fmt_additional_tips_startstreamingfailed: '启动直播失败',
|
|
214
|
+
fmt_additional_tips_updatelayoutfailed: '更新直播流布局失败',
|
|
215
|
+
fmt_additional_tips_stoplivefailed: '停止直播失败',
|
|
216
|
+
fmt_actionbar_livestreaming_option_livenow: '现在就开始自定义直播',
|
|
217
|
+
fmt_actionbar_livestreaming_option_customlive: '自定义直播服务中',
|
|
218
|
+
fmt_actionbar_livestreaming_button_stoplive: '停止直播',
|
|
219
|
+
fmt_actionbar__livestreaming_labels_live: '直播',
|
|
220
|
+
fmt_broadcast_text_copyurl: '该会议在其它平台直播中,你可复制直播链接给他人',
|
|
221
|
+
fmt_broadcast_livestream_stopped: '直播已停止',
|
|
222
|
+
fmt_broadcast_livestream_merge: '将与{reason1}合并',
|
|
223
|
+
//****************** 设备检测&管理 ******************
|
|
224
|
+
fmt_device_label_audio_mute: '静音',
|
|
225
|
+
fmt_device_label_audio_unmute: '解除静音',
|
|
226
|
+
fmt_device_label_video_start: '开启摄像头',
|
|
227
|
+
fmt_device_label_video_stop: '关闭摄像头',
|
|
228
|
+
fmt_device_label_audio_list_selectMicrophone: '选择麦克风...',
|
|
229
|
+
fmt_device_label_audio_list_selectSpeaker: '选择扬声器...',
|
|
230
|
+
fmt_device_label_audio_list_leaveComputerAudio: '停用电脑音频',
|
|
231
|
+
fmt_device_label_audio_list_switchToPhoneCall: '切换到电话音频...',
|
|
232
|
+
fmt_device_label_audio_list_testAudioDevice: '测试麦克风和扬声器...',
|
|
233
|
+
fmt_device_label_audio_list_moreAudioSettings: '更多音频设置...',
|
|
234
|
+
fmt_device_label_video_list_selectCamera: '选择摄像头...',
|
|
235
|
+
fmt_device_label_video_list_selectVirtualBackground: '选择虚拟背景...',
|
|
236
|
+
fmt_device_label_video_list_selectVideoFilter: '选择视频滤镜...',
|
|
237
|
+
fmt_device_label_video_list_moreVideoSettings: '更多视频设置...',
|
|
238
|
+
fmt_modules_tips_notapplicate: '不应用',
|
|
239
|
+
fmt_device_button_signout: '退出',
|
|
240
|
+
fmt_device_statues_opend: '已开启',
|
|
241
|
+
fmt_device_statues_closed: '已关闭',
|
|
242
|
+
fmt_device_options_whitening: '美白',
|
|
243
|
+
fmt_device_options_smoother: '磨皮',
|
|
244
|
+
fmt_device_options_brighter: '提亮',
|
|
245
|
+
fmt_device_tips_videoeffectson: '如果开启了摄像头,视频特效将实时变化',
|
|
246
|
+
fmt_device_labels_specialeffects: '特效',
|
|
247
|
+
fmt_device_options_videojoin: '视频入会',
|
|
248
|
+
fmt_modules_labels_devicesettings: '设备设置',
|
|
249
|
+
fmt_status_label_Qualitystatistics: '质量统计',
|
|
250
|
+
fmt_status_label_saysomething: '说点什么',
|
|
251
|
+
fmt_status_label_stoprecord: '停止录制',
|
|
252
|
+
fmt_status_label_rotation: '反转镜头',
|
|
253
|
+
//****************** 入会检测 ******************
|
|
254
|
+
fmt_sip_button_unmute: '申请解除静音',
|
|
255
|
+
fmt_sip_button_opencamera: '请求开启摄像头',
|
|
256
|
+
fmt_sip_button_topup: '置顶',
|
|
257
|
+
fmt_sip_button_rename: '重命名',
|
|
258
|
+
fmt_sip_button_remove: '移出会议',
|
|
259
|
+
fmt_security_options_allowunmute: '允许参会者自我解除静音',
|
|
260
|
+
fmt_device_label_inspection_user_name: '{reason1} (你)',
|
|
261
|
+
fmt_device_label_inspection_mirror_mode: '镜像模式',
|
|
262
|
+
fmt_device_inspection_camera_on: '摄像头已开',
|
|
263
|
+
fmt_device_inspection_turn_on_camera: '打开摄像头',
|
|
264
|
+
fmt_device_label_inspection_switch_camera: '翻转',
|
|
265
|
+
fmt_device_label_inspection_speaker_on: '扬声器已开',
|
|
266
|
+
fmt_device_inspection_turn_on_speaker: '打开扬声器',
|
|
267
|
+
fmt_device_inspection_start_meeting: '加入会议',
|
|
268
|
+
fmt_device_label_inspection_audio_route_speaker: '麦克风',
|
|
269
|
+
fmt_device_label_inspection_audio_route_receiver: '听筒',
|
|
270
|
+
fmt_device_inspection_audio_route_headset: '头戴',
|
|
271
|
+
fmt_device_inspection_audio_route_mute: '静音',
|
|
272
|
+
fmt_device_enabled: '已启用',
|
|
273
|
+
fmt_device_disable: '已启用',
|
|
274
|
+
fmt_device_lightening: '美白',
|
|
275
|
+
fmt_device_smoothness: '磨皮',
|
|
276
|
+
fmt_device_redness: '红润',
|
|
277
|
+
fmt_device_reset: '重置',
|
|
278
|
+
fmt_device_beauty_camera_open_remind: '如果开启了摄像头,视频特效将实时变化',
|
|
279
|
+
fmt_device_other_watch_me: '别人看我',
|
|
280
|
+
fmt_device_i_watch_self: '我看自己',
|
|
281
|
+
fmt_device_enable_beauty_filter: '已开启美颜',
|
|
282
|
+
fmt_device_disable_beauty_filter: '已关闭美颜',
|
|
283
|
+
fmt_device_beauty_turnoff: '不应用',
|
|
284
|
+
fmt_device_remind_property_title: '设备性能过低,不建议使用特效',
|
|
285
|
+
fmt_device_remind_property_content: '你的设备性能评分低于最佳体验的要求,如果启用当前功能可能会导致设备发热和卡顿。您是否确定要继续开启该功能?',
|
|
286
|
+
fmt_device_remind_beauty_open_camera_title: '你设置的效果将生效,是否打开摄像头?',
|
|
287
|
+
fmt_device_remind_beauty_open_camera_content: '如果不打开摄像头,退出时美颜不生效',
|
|
288
|
+
fmt_device_confirm_enable: '确定开启',
|
|
289
|
+
fmt_device_mirroring_enable: '开启镜像',
|
|
290
|
+
fmt_device_not_yet: '暂不',
|
|
291
|
+
fmt_device_beauty_on: '开启',
|
|
292
|
+
fmt_device_options_redness: '红润',
|
|
293
|
+
fmt_layout_label_speaker: '演讲者视图',
|
|
294
|
+
fmt_layout_label_gallery: '画廊视图',
|
|
295
|
+
fmt_uimanager_labels_roomname: '房间名称',
|
|
296
|
+
fmt_uimanager_labels_blank: '---',
|
|
297
|
+
fmt_uimanager_labels_Switchview: '切换视图',
|
|
298
|
+
fmt_uimanager_labels_sharing: '正在共享',
|
|
299
|
+
fmt_uimanager_button_returntocontent: '返回共享内容',
|
|
300
|
+
fmt_uimanager_labels_screen: '屏幕',
|
|
301
|
+
fmt_uimanager_labels_whiteboard: '白板',
|
|
302
|
+
fmt_uimanager_tips_passwordcopied: '会议密码已复制到剪贴板',
|
|
303
|
+
fmt_uimanager_labels_wirednetwork: '有线网络',
|
|
304
|
+
fmt_uimanager_option_flipleaf: '向左翻转',
|
|
305
|
+
fmt_uimanager_option_Reset: '重置',
|
|
306
|
+
fmt_uimanager_option_Cameraview: '别人看我',
|
|
307
|
+
fmt_uimanager_option_Selfieview: '我看自己',
|
|
308
|
+
fmt_uimanager_tips_urmuted: '您已经被主持人静音',
|
|
309
|
+
fmt_uimanager_tips_urturnedoff: '您已经被主持人关闭摄像头',
|
|
310
|
+
fmt_uimanager_tips_norightsvideo: '你无权限开启视频',
|
|
311
|
+
fmt_uimanager_tips_norightsaudio: '你无权限开启音频',
|
|
312
|
+
fmt_uimanager_tips_inviteturnon: '主持人邀请你打开摄像头',
|
|
313
|
+
fmt_uimanager_tips_Remove: '移除{reason2}吗',
|
|
314
|
+
fmt_uimanager_tips_designedas: '是否将{reason1}设为会议的 {reason2}?',
|
|
315
|
+
fmt_uimanager_tips_userleaft: '用户已离会',
|
|
316
|
+
fmt_uimanager_labels_Setas: '设为{reason1}',
|
|
317
|
+
fmt_uimanager_tips_allmuted: '你已开启了全体静音',
|
|
318
|
+
fmt_uimanager_tips_meetinglocked: '你已锁定会议,其它任何人都无法加入',
|
|
319
|
+
fmt_uimanager_tips_meetingunlocked: '你已解锁会议,新参会者可以加入',
|
|
320
|
+
fmt_uimanager_labels_designate: '你被设为',
|
|
321
|
+
fmt_uimanager_labels_Becoming: '{reason2} 成为 {reason1}',
|
|
322
|
+
fmt_uimanager_tips_exceed: '超过限制',
|
|
323
|
+
fmt_uimanager_labels_Clickselect: '点击选择',
|
|
324
|
+
fmt_uimanager_button_determine: '确定',
|
|
325
|
+
fmt_uimanager_button_Meetnow: '进入会议',
|
|
326
|
+
fmt_uimanager_option_dualchannel: '共享双声道',
|
|
327
|
+
fmt_uimanager_option_Sharedmono: '共享单声道',
|
|
328
|
+
fmt_uimanager_option_Monochannel: '单声道',
|
|
329
|
+
fmt_uimanager_option_Stereo: '立体声(高保真)',
|
|
330
|
+
fmt_uimanager_option_Improvefluency: '提高视频流畅度',
|
|
331
|
+
fmt_uimanager_option_Fluencypriority: '流畅度优先',
|
|
332
|
+
fmt_uimanager_option_Movebottom: '移动到底部',
|
|
333
|
+
fmt_uimanager_option_Movetop: '移动到顶部',
|
|
334
|
+
fmt_uimanager_labels_Application: '应用',
|
|
335
|
+
fmt_uimanager_tips_ilock: '主持人(我) 锁定了会议,其他人不可入会',
|
|
336
|
+
fmt_uimanager_button_close: '关闭',
|
|
337
|
+
fmt_uimanager_option_popwindow: '弹出独立窗口',
|
|
338
|
+
fmt_uimanager_option_mergeview: '合并到视图右侧',
|
|
339
|
+
fmt_uimanager_labels_deviceselect: '请选择设备...',
|
|
340
|
+
fmt_uimanager_labels_mirror: '镜像',
|
|
341
|
+
fmt_modules_labels_speaking: '正在讲话:',
|
|
342
|
+
fmt_modules_status_nowspeaking: '{reason1}正在说话...',
|
|
343
|
+
fmt_uimanager_window_un_pin: '取消固定',
|
|
344
|
+
fmt_uimanager_window_pin_success: '画面已锁定,点击右下角取消锁定',
|
|
345
|
+
fmt_uimanager_window_un_pin_success: '画面已解除锁定',
|
|
346
|
+
fmt_uimanager_window_pin_error_hide_mine: '你开启了“隐藏我的视频”功能,固定视窗无法生效',
|
|
347
|
+
fmt_uimanager_window_pin_error_hide_no_video: '你开启了“隐藏非视频参会者”功能,固定视窗无法生效',
|
|
348
|
+
fmt_uimanager_follow_pc: '模拟跟随主持人的电脑视图',
|
|
349
|
+
fmt_chat_label_chat: '聊天',
|
|
350
|
+
fmt_chat_window_title: '聊天',
|
|
351
|
+
fmt_chat_setting_privilege: '参会者可以与以下人员聊天:',
|
|
352
|
+
fmt_chat_setting_privilege_list_no: '无',
|
|
353
|
+
fmt_chat_setting_privilege_list_everyone: '所有人',
|
|
354
|
+
fmt_chat_window_position_popup: '独立弹出',
|
|
355
|
+
fmt_chat_window_position_merge: '合并到主窗口',
|
|
356
|
+
fmt_chat_tips_exceedlimit: '超出字数限制,请先删除再发送',
|
|
357
|
+
fmt_chat_button_muteall: '全体禁言',
|
|
358
|
+
fmt_chat_tips_Networkconnect: '网络连接中...暂不能发送',
|
|
359
|
+
fmt_chat_tips_selectchat: '请选择要聊天的用户',
|
|
360
|
+
fmt_chat_tips_permissionchange: '主持人已更改权限, 请重新选择',
|
|
361
|
+
fmt_chat_option_onlypublic: '仅允许公开聊天',
|
|
362
|
+
fmt_chat_option_onlyprivate: '仅允许私聊主持人和联席主持人',
|
|
363
|
+
fmt_chat_tips_newmessage: '{reason1} 新消息',
|
|
364
|
+
fmt_chat_button_latestlocation: '回到最新位置',
|
|
365
|
+
fmt_chat_tips_freechat: '已开启自由聊天权限',
|
|
366
|
+
fmt_chat_tips_onlypublic: '聊天室权限变更为仅允许公开聊天',
|
|
367
|
+
fmt_chat_tips_muteroom: '已开启了聊天室禁言',
|
|
368
|
+
fmt_chat_labels_sendto: '发送到',
|
|
369
|
+
fmt_chat_option_all: '所有人',
|
|
370
|
+
fmt_chat_tips_selecthost: '请选择主持人或联席主持人',
|
|
371
|
+
fmt_chat_tips_nodata: '暂无数据',
|
|
372
|
+
fmt_chats_label_from: '来自',
|
|
373
|
+
fmt_chats_label_privatechat: '私聊',
|
|
374
|
+
fmt_chat_options_Freechat: '自由聊天',
|
|
375
|
+
fmt_chat_options_Forbidchat: '禁止聊天',
|
|
376
|
+
fmt_chat_options_Notapplicable: '不应用',
|
|
377
|
+
fmt_chat_label_Chatmanagement: '聊天管理',
|
|
378
|
+
fmt_chat_button_MultipleChoice: '多选',
|
|
379
|
+
fmt_chat_tips_otherpartyleave: '该对象可能已离会无法接收消息,请重新选择聊天对象',
|
|
380
|
+
fmt_chat_options_onlyprivatechat: '仅私聊主持人和联席主持人',
|
|
381
|
+
fmt_chat_tips_chatpermissionchange: '聊天室权限变更为仅允许私聊主持人和联席主持人',
|
|
382
|
+
fmt_pairicipant_tips_cohostbeenrevoke: '你的联席主持人身份已收回',
|
|
383
|
+
fmt_pairicipant_tips_cohostrevoke: '已撤销 {reason1} 的联席主持人身份',
|
|
384
|
+
fmt_pairicipant_tips_nolongercohost: '{reason1}不再是联席主持人',
|
|
385
|
+
fmt_pairicipant_label_Now: '现在',
|
|
386
|
+
fmt_pairicipant_tips_notempty: '角色类型不能为空',
|
|
387
|
+
fmt_chat_to_label_to: '向',
|
|
388
|
+
fmt_chat_label_bubbletip: '聊天提示气泡',
|
|
389
|
+
fmt_attendies_label_chatpermisson: '参会者在会议中的聊天权限',
|
|
390
|
+
fmt_chate_tips_leave: '{reason1}可能已离会无法接收消息,请重新选择聊天对象',
|
|
391
|
+
fmt_chat_label_meetingchat: '会议聊天',
|
|
392
|
+
fmt_chate_tips_wordoutrange: '超出字数限制,请调整字数后再发送',
|
|
393
|
+
fmt_chat_txt_max_number: '超出字数限制,请调整字数后再发送',
|
|
394
|
+
fmt_chat_private_tips: '可能已离会无法接收消息,请重新选择聊天对象',
|
|
395
|
+
fmt_chat_send_to: '发送给',
|
|
396
|
+
fmt_chat_copy_to_clipboard: '复制到剪贴板',
|
|
397
|
+
fmt_chat_private_hosts: '请选择要聊天的用户',
|
|
398
|
+
fmt_chat_private_permission_changes: '主持人已经更改权限,请重新选择',
|
|
399
|
+
fmt_chat_status_call_in: '正在语音接入',
|
|
400
|
+
fmt_chat_room_chat_limit: '当前禁言中,无法发送消息',
|
|
401
|
+
fmt_chat_private_to_me: '我',
|
|
402
|
+
fmt_chat_enable_limit: '当前禁言中',
|
|
403
|
+
fmt_chat_say_something: '说点什么',
|
|
404
|
+
fmt_chat_send_cohost: '主持人/联席主持',
|
|
405
|
+
fmt_chat_setting_value: '参会者在会议中的聊天权限',
|
|
406
|
+
fmt_chat_send_open: '允许自由聊天',
|
|
407
|
+
fmt_chat_send_only_open: '仅允许公开聊天',
|
|
408
|
+
fmt_chat_send_only_cohost: '仅允许私聊主持人和联席主持人',
|
|
409
|
+
fmt_chat_send_limit: '全体参会者禁言',
|
|
410
|
+
fmt_chat_to_me: '发给自己',
|
|
411
|
+
fmt_chat_sending_to: '发给',
|
|
412
|
+
fmt_chat_to_you: '你',
|
|
413
|
+
fmt_send_msg_max_length: '复制到剪贴板(上限%1$d条)',
|
|
414
|
+
fmt_networkstatus_state_disconnect: '网络连接中...暂不能发送',
|
|
415
|
+
fmt_open_chat_permission: '开启了自由聊天权限',
|
|
416
|
+
fmt_chat_rooms_are_enable: '启用了聊天室',
|
|
417
|
+
fmt_chat_room_mute_is_enabled: '开启了聊天室禁言',
|
|
418
|
+
fmt_chat_only_open: '聊天室权限变更为仅允许公开聊天',
|
|
419
|
+
fmt_chat_only_host_cohost: '聊天室权限变更为仅允许私聊主持人和联席主持',
|
|
420
|
+
fmt_allow_white_board_label_edit: '可编辑白板',
|
|
421
|
+
fmt_chat_copy_me_to: '我对{reason1}说(%2$s):\n %3$s',
|
|
422
|
+
fmt_chat_copy_from_to: '{reason1}对%2$s说(%3$s):\n %4$s',
|
|
423
|
+
fmt_chat_copy_me_to_all: '我对所有人说({reason1}):\n %2$s',
|
|
424
|
+
fmt_chat_copy_from_to_all: '{reason1}对所有人说(%2$s):\n %3$s',
|
|
425
|
+
fmt_chat_back_to_the_latest_location: '回到最新位置',
|
|
426
|
+
fmt_chat_new_unread_messages: '%1$d 新的未读消息',
|
|
427
|
+
fmt_chat_unread_messages: '%1$d 未读消息',
|
|
428
|
+
fmt_chat_private_to_user: 'to {reason1}',
|
|
429
|
+
fmt_chat_network_connect: '连接中%1$s',
|
|
430
|
+
fmt_chat_setting_title: '聊天设置',
|
|
431
|
+
fmt_chat_setting_bubble_tips: '聊天气泡提示',
|
|
432
|
+
fmt_chat_big_bubble: '大气泡',
|
|
433
|
+
fmt_chat_small_bubble: '小气泡',
|
|
434
|
+
fmt_chat_label_enter_message: '请输入文字',
|
|
435
|
+
fmt_screenshare_window_tab_basic: '基础',
|
|
436
|
+
fmt_screenshare_window_tab_advanced: '高级',
|
|
437
|
+
fmt_screenshare_window_button_start: '开始共享',
|
|
438
|
+
fmt_screenshare_window_checkbox_shareAudio: '共享声音',
|
|
439
|
+
fmt_screenshare_controlbar_button_stop: '停止共享',
|
|
440
|
+
fmt_screenshare_controlbar_button_microphone: '麦克风',
|
|
441
|
+
fmt_screenshare_controlbar_button_camera: '摄像头',
|
|
442
|
+
fmt_screenshare_controlbar_button_security: '安全',
|
|
443
|
+
fmt_screenshare_controlbar_button_participant: '成员列表',
|
|
444
|
+
fmt_screenshare_controlbar_button_newScreenshare: '新的共享',
|
|
445
|
+
fmt_screenshare_controlbar_button_more: '更多',
|
|
446
|
+
fmt_screenshare_controlbar_button_more_chat: '聊天',
|
|
447
|
+
fmt_screenshare_controlbar_button_more_cloudRecord: '云录制',
|
|
448
|
+
fmt_screenshare_controlbar_button_more_live: '直播',
|
|
449
|
+
fmt_screenshare_controlbar_button_more_setting: '设置',
|
|
450
|
+
fmt_screenshare_controlbar_status_sharing: '你正在共享屏幕',
|
|
451
|
+
fmt_screenshare_controlbar_security_list_lock: '锁定会议',
|
|
452
|
+
fmt_screenshare_controlbar_security_list_participant_screenshare: '共享屏幕',
|
|
453
|
+
fmt_screenshare_controlbar_security_list_participant_chat: '聊天',
|
|
454
|
+
fmt_screenshare_controlbar_security_list_participant_unmute: '自我解除静音',
|
|
455
|
+
fmt_screenshare_controlbar_security_list_participant_startVideo: '自我开启视频',
|
|
456
|
+
fmt_screenshare_controlbar_security_list_participant_changeName: '改名',
|
|
457
|
+
fmt_screenshare_controlbar_security_list_participantManagement: '允许参会者',
|
|
458
|
+
fmt_screenshare_button_chosecontent: '选择共享内容',
|
|
459
|
+
fmt_screenshare_tips_newsharing: '发起新的屏幕共享',
|
|
460
|
+
fmt_screenshare_label_screenshare: '屏幕共享',
|
|
461
|
+
fmt_screenshare_button_sharewhiteboard: '共享白板',
|
|
462
|
+
fmt_screenshare_button_chosewhiteboard: '关闭白板',
|
|
463
|
+
fmt_screenshare_options_alreadyopend: '共享白板(其他人已开启)',
|
|
464
|
+
fmt_screenshare_options_allow: '允许参会者',
|
|
465
|
+
fmt_screenshare_options_editable: '可标注和编辑白板',
|
|
466
|
+
fmt_screenshare_button_disableshare: '停用{reason1}的共享',
|
|
467
|
+
fmt_screenshare_label_application: '应用',
|
|
468
|
+
fmt_screenshare_tips_imsharing: '我在共享白板中',
|
|
469
|
+
fmt_screenshare_tips_smonesharing: '有人在共享白板中',
|
|
470
|
+
fmt_screenshare_tips_alreadyopened: '已有人开启白板',
|
|
471
|
+
fmt_screenshare_button_stopshare: '停用',
|
|
472
|
+
fmt_screenshare_button_localrecordingmiss: '本地录制',
|
|
473
|
+
fmt_screenshare_tips_hostprohibits: '主持人禁止屏幕共享, 可联系会议管理员开启',
|
|
474
|
+
fmt_screenshare_tips_enablecollection: '屏幕共享开启采集中,请稍后再试',
|
|
475
|
+
fmt_screenshare_tips_hostprohibitssharing: '主持人禁止屏幕共享',
|
|
476
|
+
fmt_screenshare_tips_faild_reselect: '屏幕共享失败, 请重新选择窗口',
|
|
477
|
+
fmt_screenshare_tips_faild_screenselect: '屏幕共享失败, 请重新选择要共享的屏幕',
|
|
478
|
+
fmt_screenshare_tips_faild_nopermission: '屏幕共享失败,屏幕共享权限已经被主持人收回',
|
|
479
|
+
fmt_screenshare_tips_faild_restrict: '屏幕共享受限',
|
|
480
|
+
fmt_screenshare_tips_faild_alreadysharing: '已经有人在进行屏幕分享,您暂时不能操作。',
|
|
481
|
+
fmt_screenshare_options_allowshare: '允许灵动会议共享屏幕',
|
|
482
|
+
fmt_screenshare_tips_notavailable: '屏幕共享暂不可用',
|
|
483
|
+
fmt_screenshare_whiteboard_button_exitdrawing: '退出绘制',
|
|
484
|
+
fmt_screenshare_options_enableedit: '启用白板编辑',
|
|
485
|
+
fmt_actionbar_screenshare_option_selectcontent: '选择共享内容',
|
|
486
|
+
fmt_actionbar_screenshare_labels_others: '他人',
|
|
487
|
+
fmt_actionbar_screenshare_tips_restrictshare: '会议管理员限制屏幕共享功能',
|
|
488
|
+
fmt_modules_labels_sharing: '你正在共享',
|
|
489
|
+
fmt_share_tips_othsersharing: '有其他参会者正在共享',
|
|
490
|
+
fmt_share_tips_stopothersharing: '现在发起共享,将停止{reason1}的共享,是否继续?',
|
|
491
|
+
fmt_share_buttons_contiueshare: '继续共享',
|
|
492
|
+
fmt_share_tips_otherssharing: '有其他参会者正在共享',
|
|
493
|
+
fmt_share_tips_sharingdisabled: '你的共享被停止',
|
|
494
|
+
fmt_share_tips_sharingprohibit_byhost: '主持人{reason1}已停止你的共享',
|
|
495
|
+
fmt_share_tips_sharingprohibit_bycohost: '联席主持人{reason1}已停止你的共享',
|
|
496
|
+
fmt_share_tips_sharingprohibit_gotit: '知道了',
|
|
497
|
+
fmt_share_tips_othersharingboard: '有其他参会者正在共享白板',
|
|
498
|
+
fmt_share_tips_boardonly: '一场会议仅能由一人发起云端白板',
|
|
499
|
+
fmt_share_tips_sharingscreen: '你正在共享屏幕',
|
|
500
|
+
fmt_share_tips_willstopsharingscreen: '现在发起白板共享,将停止你的屏幕共享,是否继续?',
|
|
501
|
+
fmt_share_label_saysomething: '说点什么',
|
|
502
|
+
fmt_share_label_canttalk: '当前禁言中',
|
|
503
|
+
fmt_screenshare_screen_and_board: '共享屏幕和白板',
|
|
504
|
+
fmt_screenshare_editable_board: '可编辑白板',
|
|
505
|
+
fmt_screenshare: '共享',
|
|
506
|
+
fmt_screenshare_button_newshare: '新的分享',
|
|
507
|
+
fmt_screenshare_button_stopsharing: '结束分享',
|
|
508
|
+
fmt_screenshare_status_sharing: '正在屏幕共享',
|
|
509
|
+
fmt_screenshare_button_replace: '替换',
|
|
510
|
+
fmt_screenshare_button_start: '开始',
|
|
511
|
+
fmt_screenshare_button_stop: '停止',
|
|
512
|
+
fmt_screenshare_stop_share_board: '停止共享白板',
|
|
513
|
+
fmt_screenshare_stop_share_screen: '停止共享屏幕',
|
|
514
|
+
fmt_screenshare_no_permission_open_board: '无打开白板权限',
|
|
515
|
+
fmt_screenshare_administrator_disables_share_screen_board: '会议管理员禁用共享屏幕或白板',
|
|
516
|
+
fmt_screenshare_no_permission_close_board: '无关闭白板权限',
|
|
517
|
+
fmt_screenshare_clash_board_remind_title: '有其他参会者正在共享白板',
|
|
518
|
+
fmt_screenshare_clash_board_remind_content: '会议中的云白板,仅支持一个人发起。',
|
|
519
|
+
fmt_screenshare_clash_screen_share_remind_title: '有其他参会者正在共享',
|
|
520
|
+
fmt_screenshare_clash_screen_share_remind_content: '现在发起共享,将停止{reason1}的屏幕共享,是否继续?',
|
|
521
|
+
fmt_screenshare_clash_screen_share_remind_content_stop_board: '现在发起共享,将停止{reason1}的白板共享,是否继续?',
|
|
522
|
+
fmt_screenshare_opposite_side: '对方',
|
|
523
|
+
fmt_screenshare_continue_share: '继续发起共享',
|
|
524
|
+
fmt_screenshare_cohost_can_not_share_remind: '安全设置受限,只有主持和联席主持人可屏幕共享。',
|
|
525
|
+
fmt_screenshare_pop_more: '多选',
|
|
526
|
+
fmt_screenshare_room_new_screen_share: '{reason1}正在共享屏幕...',
|
|
527
|
+
fmt_screenshare_room_speaker_spotlight_username: '正在说话:{reason1}',
|
|
528
|
+
fmt_screenshare_stop_other_screen_share: '停止他人的屏幕共享',
|
|
529
|
+
fmt_screenshare_not_open_yet: '暂未开放',
|
|
530
|
+
fmt_screenshare_audio_des: '共享设备音频:',
|
|
531
|
+
fmt_screenshare_audio_on: '开',
|
|
532
|
+
fmt_screenshare_audio_off: '关',
|
|
533
|
+
fmt_screenshare_stop_screen_share: '停止屏幕共享',
|
|
534
|
+
fmt_screenshare_disablelayout_while_share: '共享屏幕或白板时,将禁用大小视窗',
|
|
535
|
+
fmt_screenshare_start: '发起共享',
|
|
536
|
+
fmt_screenshare_stop_your_share: '已停止您的共享',
|
|
537
|
+
fmt_screenshare_tips_share_audio_micon: '需开启麦克风才能播放共享音频',
|
|
538
|
+
fmt_screenshare_tips_share_audio_turnonmic: '你现在想使用共享音频,是否开启麦克风?',
|
|
539
|
+
fmt_screenshare_button_giveup_shareaudio: '放弃共享音频',
|
|
540
|
+
fmt_screenshare_button_confirm_shareaudio: '开启麦克风',
|
|
541
|
+
fmt_screenshare_tips_sharing_audio_keep_on: '共享音频时需保持麦克风打开以保障设备音频正常播放,是否开启麦克风',
|
|
542
|
+
fmt_screenshare_tips_sharing_audio_cancel: '停止音频',
|
|
543
|
+
fmt_screenshare_tips_sharing_audio_confirm: '保持开启',
|
|
544
|
+
fmt_screenshare_tips_sharing_disabled_tocontact: ' {reason1}禁止共享, 可联系会议管理员开启',
|
|
545
|
+
fmt_screenshare_tips_unenabled: '会议管理员未开放白板编辑功能',
|
|
546
|
+
fmt_screenshare_whiteboard_options_changetheme: '更改白板主题',
|
|
547
|
+
fmt_screenshare_tips_alreadyoriginalsize: '已是“原始尺寸”',
|
|
548
|
+
fmt_screenshare_lables_originalsize: '原始尺寸',
|
|
549
|
+
fmt_screenshare_whiteboard_tips_alreadyadaptionsize: '已是“适应窗口”',
|
|
550
|
+
fmt_screenshare_lables_adaptionlsize: '适应窗口',
|
|
551
|
+
fmt_screenshare_whiteboard_tips_alreadymaximumsize: '已达最大尺寸',
|
|
552
|
+
fmt_screenshare_whiteboard_button_enlarge: '放大',
|
|
553
|
+
fmt_screenshare_whiteboard_tips_alreadyminumumsize: '已达最小尺寸',
|
|
554
|
+
fmt_screenshare_whiteboard_button_narrow: '缩小',
|
|
555
|
+
fmt_screenshare_whiteboard_tips_someonesharing: '{reason1}正在共享白板',
|
|
556
|
+
fmt_screenshare_whiteboard_tips_reconnecting: '正在为您重新连接白板',
|
|
557
|
+
fmt_screenshare_whiteboard_tips_reconnectinghold: '正在为您重新连接白板,请稍等',
|
|
558
|
+
fmt_screenshare_whiteboard_tips_couldreopen: '如果您长时间不连接白板,可暂时关闭白板',
|
|
559
|
+
fmt_screenshare_whiteboard_tips_reopening: '正在打开白板',
|
|
560
|
+
fmt_screenshare_whiteboard_tips_continuewaiting: '继续等待....',
|
|
561
|
+
fmt_screenshare_whiteboard_button_dontwait: '不等了',
|
|
562
|
+
fmt_screenshare_whiteboard_tips_defaultwhiteboard: '白板(默认)',
|
|
563
|
+
fmt_screenshare_whiteboard_tips_blackboard: '黑板',
|
|
564
|
+
fmt_screenshare_whiteboard_lables_wallpoaster: '粉笔墙报',
|
|
565
|
+
fmt_screenshare_whiteboard_tips_righclick: '右键可以设为常驻色',
|
|
566
|
+
fmt_screenshare_whiteboard_button_setcolor: '设为常驻色',
|
|
567
|
+
fmt_screenshare_whiteboard_button_eraser: '橡皮擦',
|
|
568
|
+
fmt_screenshare_whiteboard_button_empty: '清空',
|
|
569
|
+
fmt_screenshare_whiteboard_button_additionaltools: '附加工具',
|
|
570
|
+
fmt_screenshare_whiteboard_button_withdrwa: '撤回',
|
|
571
|
+
fmt_screenshare_whiteboard_button_forward: '前进',
|
|
572
|
+
fmt_screenshare_whiteboard_button_paintbrush: '画笔',
|
|
573
|
+
fmt_screenshare_whiteboard_button_cutting: '裁切',
|
|
574
|
+
fmt_screenshare_whiteboard_button_screenshot: '截屏',
|
|
575
|
+
fmt_screenshare_whiteboard_options_hideshot: '隐藏房间截屏',
|
|
576
|
+
fmt_screenshare_whiteboard_button_shape: '形状',
|
|
577
|
+
fmt_screenshare_whiteboard_button_laserpen: '激光笔',
|
|
578
|
+
fmt_screenshare_whiteboard_button_boxselection: '框选',
|
|
579
|
+
fmt_screenshare_whiteboard_button_text: '文字',
|
|
580
|
+
fmt_screenshare_whiteboard_button_dragdrop: '拖拽',
|
|
581
|
+
fmt_screenshare_whiteboard_button_savescript: '保存板书',
|
|
582
|
+
fmt_screenshare_whiteboard_button_spread: '展开',
|
|
583
|
+
fmt_screenshare_whiteboard_tips_downloading: '板书正在下载中',
|
|
584
|
+
fmt_screenshare_whiteboard_tips_savedsuccessfully: '板书保存成功',
|
|
585
|
+
fmt_screenshare_whiteboard_tips_failed: '板书保存失败',
|
|
586
|
+
fmt_screenshare_whiteboard_tips_stoppedboard: '你的共享被停止',
|
|
587
|
+
fmt_screenshare_whiteboard_lables_newshare: '发起新的共享',
|
|
588
|
+
fmt_screenshare_whiteboard_button_gotit: '知道了',
|
|
589
|
+
fmt_screenshare_whiteboard_tips_stopped: '共享已停止',
|
|
590
|
+
fmt_screenshare_whiteboard_tips_cannotjoin: '无法加入房间',
|
|
591
|
+
fmt_screenshare_whiteboard_tips_alreadyopend: '白板已打开',
|
|
592
|
+
fmt_screenshare_whiteboard_tips_stop_continue: '现在发起屏幕共享,将停止你的白板,是否继续?',
|
|
593
|
+
fmt_whiteboard_labels_colour: '颜色',
|
|
594
|
+
fmt_share_options_smallpen: '小号笔触',
|
|
595
|
+
fmt_share_options_midpen: '中号笔触',
|
|
596
|
+
fmt_share_options_bigpen: '大号笔触',
|
|
597
|
+
fmt_share_options_yellow: '黄色',
|
|
598
|
+
fmt_share_options_blue: '蓝色',
|
|
599
|
+
fmt_share_options_purple: '紫色',
|
|
600
|
+
fmt_share_options_green: '绿色',
|
|
601
|
+
fmt_share_options_whiteboard: '白板',
|
|
602
|
+
fmt_whiteboard_save_success: '图片存储成功',
|
|
603
|
+
fmt_whiteboard_save_failure: '图片下载失败',
|
|
604
|
+
fmt_whiteboard_tips_two_finger_move: '双指移动白板',
|
|
605
|
+
fmt_whiteboard_tips_expanded: '竖屏最大化,可以双指横行移动画布',
|
|
606
|
+
fmt_whiteboard_tips_collapsed: '已适应窗口大小',
|
|
607
|
+
fmt_whiteboard_tips_selector: '可选择内容进行编辑',
|
|
608
|
+
fmt_whiteboard_tips_text: '请输入文字',
|
|
609
|
+
fmt_whiteboard_tips_rectangle: '方形',
|
|
610
|
+
fmt_whiteboard_tips_triangle: '三角形',
|
|
611
|
+
fmt_whiteboard_tips_circle: '圆形',
|
|
612
|
+
fmt_whiteboard_label_pentagon: '五角形',
|
|
613
|
+
fmt_whiteboard_label_prismatic: '棱形',
|
|
614
|
+
fmt_whiteboard_tips_straight: '直线',
|
|
615
|
+
fmt_whiteboard_tips_arrow: '箭头',
|
|
616
|
+
fmt_whiteboard_tips_change_color: '更改颜色和笔触大小',
|
|
617
|
+
fmt_whiteboard_tips_change_bg: '更换选择白板底色',
|
|
618
|
+
fmt_whiteboard_tips_change_bg_white: '已选择白色板',
|
|
619
|
+
fmt_whiteboard_tips_change_bg_black: '已选择黑色板',
|
|
620
|
+
fmt_whiteboard_tips_change_bg_green: '已选择粉笔绿板',
|
|
621
|
+
fmt_whiteboard_tips_stop_share: '停止白板中…',
|
|
622
|
+
fmt_whiteboard_tips_start_share: '开启白板中…',
|
|
623
|
+
fmt_whiteboard_tips_share_failed: '白板共享失败',
|
|
624
|
+
fmt_whiteboard_tips_stop_share_failed: '停止白板共享失败',
|
|
625
|
+
fmt_whiteboard_tips_start_share_failed: '开启白板共享失败',
|
|
626
|
+
fmt_whiteboard_tips_download_permission_denied: '下载板书需要存储权限',
|
|
627
|
+
fmt_whiteboard_dialog_share_stopped_message_host: '主持人({reason1})已停止您的共享',
|
|
628
|
+
fmt_whiteboard_dialog_share_stopped_message_cohost: '联席主持人({reason1})已停止你的共享',
|
|
629
|
+
fmt_screenshare_whiteboard_option_disablesharing: '禁用共享屏幕或白板',
|
|
630
|
+
fmt_share_options_blackboard: '黑板',
|
|
631
|
+
fmt_share_options_chalkboard: '粉笔板',
|
|
632
|
+
fmt_share_label_shareboard: '{reason1}的白板共享',
|
|
633
|
+
fmt_information_label_clicktocopy: '点击复制会议 id 号',
|
|
634
|
+
fmt_information_tips_beencopied: '会议号已复制到剪贴板',
|
|
635
|
+
fmt_information_tips_numbercopyfailed: '会议号复制失败',
|
|
636
|
+
fmt_information_options_sharedetail: '分享会议详情或会议链接',
|
|
637
|
+
fmt_meetingInfo_label: '会议详情',
|
|
638
|
+
fmt_meetingInfo_window_title: '分享会议',
|
|
639
|
+
fmt_meetingInfo_window_info_meetingID: '会议号',
|
|
640
|
+
fmt_meetingInfo_window_info_meetingID_copy: '复制',
|
|
641
|
+
fmt_sharing_button_download: '下载灵动会议',
|
|
642
|
+
fmt_invitation_tips_invitationfailed: '邀请链接复制失败',
|
|
643
|
+
fmt_invitation_tips_invitation: '邀请链接已复制到剪贴板',
|
|
644
|
+
fmt_meetinginfo_tips_lockedroom: '会议锁定中',
|
|
645
|
+
fmt_meetinginfo_tips_nobycanjoin: '任何参会者不能进会',
|
|
646
|
+
fmt_meetinginfo_label_code: '密码',
|
|
647
|
+
fmt_meetinginfo_details_code_none: '未设置',
|
|
648
|
+
fmt_meetinginfo_my_name_label: '我的名字',
|
|
649
|
+
fmt_meetinginfo_room_topic: '会议主题',
|
|
650
|
+
fmt_meetinginfo_duration_reservation: '持续时间/预约时间',
|
|
651
|
+
fmt_meetinginfo_dialog_title_meeting_info: '会议信息',
|
|
652
|
+
fmt_meetinginfo_duration_1: '%1$d分钟',
|
|
653
|
+
fmt_meetinginfo_duration_2: '%1$d小时%2$d分钟',
|
|
654
|
+
fmt_meetinginfo_duration_2_no_min: '%1$d小时',
|
|
655
|
+
//标签
|
|
656
|
+
fmt_information_label_lockmeeting: '会议锁定',
|
|
657
|
+
//提示
|
|
658
|
+
fmt_information_tips_lockedbyhost: '{reason1}锁定了会议,其他人不可入会',
|
|
659
|
+
//提示
|
|
660
|
+
fmt_information_tips_copysuccess: '复制成功(?)',
|
|
661
|
+
//提示
|
|
662
|
+
fmt_information_tips_copyfailed: '复制失败(?)',
|
|
663
|
+
//标签
|
|
664
|
+
fmt_information_label_sharemeetingnumber: '分享会议号或邀请链接',
|
|
665
|
+
//提示
|
|
666
|
+
fmt_additional_tips_invitationfailed: '邀请链接复制失败',
|
|
667
|
+
//提示
|
|
668
|
+
fmt_additional_tips_invitation: '邀请链接已复制到剪贴板',
|
|
669
|
+
fmt_sharing_button_copydetailed: '复制全部信息',
|
|
670
|
+
fmt_sharing_label_invitationlink: '邀请链接',
|
|
671
|
+
fmt_sharing_tips_copyto_clipboard: '邀请信息已复制到剪贴板',
|
|
672
|
+
fmt_sharing_tips_copyfull_failed: '邀请信息复制失败 ',
|
|
673
|
+
fmt_sharing_label_invitationdetailed: '{reason1} 邀请你加入会议,会议主题:{reason2},会议时间:{reason3},会议链接:{reason4}',
|
|
674
|
+
//通知
|
|
675
|
+
fmt_information_tips_meeting_inprogress: '会议进行中',
|
|
676
|
+
//通知
|
|
677
|
+
fmt_information_tips_click_return_meeting: '点击返回会议界面',
|
|
678
|
+
fmt_networkstatus_window_title: '网络连接',
|
|
679
|
+
fmt_networkstatus_window_rate_good: '好',
|
|
680
|
+
fmt_networkstatus_window_rate_medium: '中',
|
|
681
|
+
fmt_networkstatus_window_rate_bad: '差',
|
|
682
|
+
fmt_networkstatus_window_latency: '网络延迟',
|
|
683
|
+
fmt_networkstatus_window_loss: '丢包率',
|
|
684
|
+
fmt_networkstatus_window_moreData: '更多指标',
|
|
685
|
+
fmt_modules_labels_qualitystatistics: '质量统计',
|
|
686
|
+
fmt_meetinginfo_label_time: '参会时长/预约时长',
|
|
687
|
+
fmt_meetinginfo_label_myname: '我的名字',
|
|
688
|
+
fmt_meetinginfo_label_lockedmeeting: '会议信息(锁定)',
|
|
689
|
+
fmt_networkstatus_up_link: '网络带宽上行',
|
|
690
|
+
fmt_networkstatus_down_link: '网络带宽下行',
|
|
691
|
+
fmt_networkstatus_down_loss: '下行丢包率',
|
|
692
|
+
fmt_networkstatus_up_loss: '上行丢包率',
|
|
693
|
+
fmt_security_options_restract: '收回主持人',
|
|
694
|
+
fmt_security_options_removemultiple: '一键移除多个参会者',
|
|
695
|
+
fmt_security_options_openvideo: '开启视频',
|
|
696
|
+
fmt_security_options_stopvideo: '关闭视频',
|
|
697
|
+
fmt_security_options_openaudio: '开启音频',
|
|
698
|
+
fmt_security_options_stopaudio: '关闭音频',
|
|
699
|
+
fmt_security_options_activatewaitingroom: '启用等候室',
|
|
700
|
+
fmt_security_options_playnotification: '有人加入或离开会议时播放提示音',
|
|
701
|
+
fmt_security_options_silence: '所有人加入会议时静音',
|
|
702
|
+
fmt_security_buttons_allhandsdown: '全体手放下',
|
|
703
|
+
fmt_security_options_muteall: '将所有当前会议室的参会者静音',
|
|
704
|
+
fmt_security_buttons_muteall: '全体静音',
|
|
705
|
+
fmt_security_buttons_cancel: '取消',
|
|
706
|
+
fmt_security_waiting_room: '等候室',
|
|
707
|
+
fmt_security_start_video: '开启视频',
|
|
708
|
+
fmt_security_pause_all: '暂停参会者活动',
|
|
709
|
+
fmt_security_remove_all: '移除参会者',
|
|
710
|
+
fmt_security_tips_lock_meeting_on: '你已锁定会议,其它任何人都无法加入',
|
|
711
|
+
fmt_security_tips_lock_meeting_off: '你已解锁会议,新参会者可以加入',
|
|
712
|
+
fmt_security_tips_waiting_room_on: '你已启用等候室',
|
|
713
|
+
fmt_security_tips_waiting_room_off: '你已关闭等候室',
|
|
714
|
+
fmt_security_tips_join_mute_on: '你已开启全员入会静音',
|
|
715
|
+
fmt_security_tips_join_mute_off: '你已关闭全员入会静音',
|
|
716
|
+
fmt_security_tips_share_screen_on: '你已禁用了参会者的屏幕共享',
|
|
717
|
+
fmt_security_tips_share_screen_off: '你已启用了参会者的屏幕共享',
|
|
718
|
+
fmt_security_tips_start_audio_on: '您已允许自我解除静音',
|
|
719
|
+
fmt_security_tips_start_audio_off: '您已禁止自我解除静音',
|
|
720
|
+
fmt_security_tips_host_start_audio_on: '{reason1}已允许自我解除静音',
|
|
721
|
+
fmt_security_tips_host_start_audio_off: '{reason1}已取消自我解除静音',
|
|
722
|
+
fmt_security_tips_start_video_on: '您已允许开启视频',
|
|
723
|
+
fmt_security_tips_start_video_off: '您已禁止开启视频',
|
|
724
|
+
fmt_security_tips_host_start_video_on: '{reason1}已允许开启视频',
|
|
725
|
+
fmt_security_tips_host_start_video_off: '{reason1}已取消开启视频',
|
|
726
|
+
fmt_security_chat_with_hosts: '主持人和联席',
|
|
727
|
+
fmt_security_tips_allow_write_board: '您已允许编辑白板',
|
|
728
|
+
fmt_security_tips_disallow_write_board: '您已禁止编辑白板',
|
|
729
|
+
//****************** 设置 ******************
|
|
730
|
+
fmt_settings_option_setting: '设置',
|
|
731
|
+
fmt_settings_option_general: '常规设置',
|
|
732
|
+
fmt_settings_option_about_us: '关于我们',
|
|
733
|
+
fmt_settings_option_about_videoset: '视频设置',
|
|
734
|
+
fmt_settings_option_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: '开发',
|
|
740
|
+
fmt_settings_option_enviroment_Test: '测试',
|
|
741
|
+
fmt_settings_option_enviroment_Pre: '预生产',
|
|
742
|
+
fmt_settings_option_enviroment_Pro: '生产',
|
|
743
|
+
fmt_settings_label_region: '区域设置',
|
|
744
|
+
fmt_settings_label_about_us_about_us: '关于我们',
|
|
745
|
+
fmt_settings_label_aboutus_ver: '灵动会议版本',
|
|
746
|
+
fmt_settings_label_aboutus_declaration: '本页面为在线会议平台演示Demo ,仅做功能演示,并非正式线上产品',
|
|
747
|
+
fmt_settings_label_video_resolution: '摄像头分辨率',
|
|
748
|
+
fmt_settings_label_video_bitrate_frame: '摄像头码率/帧率',
|
|
749
|
+
fmt_settings_label_video_resolution_small: '摄像头分辨率(小流)',
|
|
750
|
+
fmt_settings_label_video_bitrate_frame_small: '摄像头码率/帧率(小流)',
|
|
751
|
+
fmt_settings_label_video_screenshare_resolution: '屏幕共享分辨率',
|
|
752
|
+
fmt_settings_label_video_screenshare_bitrate_frame: '屏幕共享码率/帧率',
|
|
753
|
+
fmt_settings_link_about_us_user_agreement: '用户协议',
|
|
754
|
+
fmt_settings_link_about_us_privacy_policy: '隐私条例',
|
|
755
|
+
fmt_settings_label_aboutus_slogan: '声网灵动会议',
|
|
756
|
+
fmt_settings_button_logout: '退出登录',
|
|
757
|
+
fmt_setting_label_setting: '设置',
|
|
758
|
+
fmt_setting_option_Voice: '语音设置',
|
|
759
|
+
fmt_setting_option_Video: '视频设置',
|
|
760
|
+
fmt_setting_label_Speaker: '扬声器',
|
|
761
|
+
fmt_setting_label_oututlevel: '输出级别',
|
|
762
|
+
fmt_setting_button_Speaker_pause: '暂停播放',
|
|
763
|
+
fmt_setting_label_volume: '输出音量',
|
|
764
|
+
fmt_setting_option_volumeadjust: '自动调整{reason1}音量',
|
|
765
|
+
fmt_setting_label_Mic: '麦克风',
|
|
766
|
+
fmt_setting_button_Mic: '检测麦克风',
|
|
767
|
+
fmt_setting_button_Speaker_recording: '暂停录制',
|
|
768
|
+
fmt_setting_label_3a: '降低背景噪声',
|
|
769
|
+
fmt_setting_option_3alow: '低',
|
|
770
|
+
fmt_setting_option_3amoderate: '适中',
|
|
771
|
+
fmt_setting_option_3ahigh: '高',
|
|
772
|
+
fmt_setting_label_professional: '音乐和专业音频',
|
|
773
|
+
fmt_setting_option_orinalvoise: '显示会议中选项,以通过麦克风“打开原声”',
|
|
774
|
+
fmt_setting_tips_speaker: '点击测试扬声器,以确定你可以听到他人的声音',
|
|
775
|
+
fmt_setting_tips_mic: '请对者你的麦克风说话。如果你无法听到自己的声音,请更换麦克风',
|
|
776
|
+
fmt_setting_tips_speaker_unwork: '如果你无法听到测试音,请更换扬声器',
|
|
777
|
+
fmt_setting_tips_mic_unwork: '如果你无法听到测试音,请更换麦克风',
|
|
778
|
+
fmt_setting_label_preview: '效果预览',
|
|
779
|
+
fmt_setting_option_preview_highdefinition: '高清',
|
|
780
|
+
fmt_setting_option_basics: '基础',
|
|
781
|
+
fmt_setting_option_backgrounds: '背景',
|
|
782
|
+
fmt_setting_option_beauty: '美颜',
|
|
783
|
+
fmt_setting_option_high_definition: '视频高清',
|
|
784
|
+
fmt_setting_option_joinmeeting: '加入会议时关闭我的视频',
|
|
785
|
+
fmt_setting_option_joinmeeting_preview: '加入视频会议时适中显示视频预览框',
|
|
786
|
+
fmt_setting_option_hidenonvideo: '隐藏非视频参会者',
|
|
787
|
+
fmt_setting_label_maxattendees: '画廊视图下单屏显示的最大参会者人数',
|
|
788
|
+
fmt_setting_label_maxattendees_16: '16名参会者',
|
|
789
|
+
fmt_setting_label_maxattendees_25: '25名参会者',
|
|
790
|
+
fmt_modules_labels_Videobackground: '视频背景',
|
|
791
|
+
fmt_modules_tips_Imagebackground: '图片背景',
|
|
792
|
+
fmt_internalsetting_label_generalsetting: '常规设置',
|
|
793
|
+
fmt_internalsetting_label_inputlevel: '输入级别',
|
|
794
|
+
fmt_internalsetting_label_inputvolume: '输入音量',
|
|
795
|
+
fmt_internalsetting_label_automatic: '自动',
|
|
796
|
+
fmt_internalsetting_tips_backgroundsound: '(暂时不需要微弱的背景音)',
|
|
797
|
+
fmt_internalsetting_tips_fanpan: '(暂时不需要降低电脑风扇声、敲笔声)',
|
|
798
|
+
fmt_internalsetting_tips_dogbarking: '(暂时不需要降低打字声、狗叫声)',
|
|
799
|
+
fmt_internalsetting_label_senior: '高级',
|
|
800
|
+
fmt_internalsetting_button_detectspeaker: '检测扬声器',
|
|
801
|
+
fmt_internalsetting_status_recording: '录制中',
|
|
802
|
+
fmt_internalsetting_status_nodevice: '无设备',
|
|
803
|
+
fmt_internalsetting_labels_enableoptions: '开启原声时启用这些选项',
|
|
804
|
+
fmt_internalsetting_options_highqualitymusic: '高保真音乐模式',
|
|
805
|
+
fmt_internalsetting_options_echocancell: '回声消除',
|
|
806
|
+
fmt_internalsetting_options_stereo: '立体声',
|
|
807
|
+
fmt_internalsetting_labels_audiostereoencode: '此选项允许对音频进行立体声编码。需要使用具有立体声效果的麦克风或音频接口。此选项会增加CPU使用率,占用更多网络带宽。',
|
|
808
|
+
fmt_internalsetting_tips_preventechoes: '防止捕获或产生回声以提高音质。如果你未使用耳机或弹奏乐器,则建议启用此选项。',
|
|
809
|
+
fmt_internalsetting_tips_optiomizeaudio: '可优化音频以提供最高品质的音效。此功能会增加CPU使用率,占用更多网络带宽。为获得最佳效果,强烈推荐连接以太网而非wifi。',
|
|
810
|
+
fmt_internalsetting_tips_speakerpriority: '启语音激励后,会优先显示正在说话的与会成员。',
|
|
811
|
+
fmt_internalsetting_labels_voicestimulation: '语音激励',
|
|
812
|
+
fmt_internalsetting_options_hidenonvideo: '隐藏非视频参会者',
|
|
813
|
+
fmt_internalsetting_options_adjustlowlight: '调整以使用弱光补偿',
|
|
814
|
+
fmt_internalsetting_options_closevideojoin: '加入会议时关闭我的视频',
|
|
815
|
+
fmt_internalsetting_options_alwaysbox: '加入视频会议时始终显示视频预览对话框',
|
|
816
|
+
fmt_internalsetting_labels_advancedsetting: '高级设置',
|
|
817
|
+
fmt_internalsetting_options_videonoisereduction: '通过降噪优化视频质量',
|
|
818
|
+
fmt_internalsetting_options_hardwareacceleration: '为视频接收使用硬件加速',
|
|
819
|
+
fmt_internalsetting_tips_nocamerajoin: '未选择开启摄像头入会,当前只是视频特效预览画面',
|
|
820
|
+
fmt_internalsetting_options_mirromyvideo: '镜像我的视频',
|
|
821
|
+
fmt_internalsetting_tips_optimizevideo: '勾选后,基于软件的噪声消除将优化视频画质',
|
|
822
|
+
fmt_internalsetting_tips_reducevideo: '勾选后,硬件编解码器将降低视频编解码对CPU的消耗',
|
|
823
|
+
fmt_internalsetting_labels_currency: '通用',
|
|
824
|
+
fmt_internalsetting_labels_application: '本应用',
|
|
825
|
+
fmt_internalsetting_labels_other: '其他',
|
|
826
|
+
fmt_internalsetting_labels_bandwidth: '带宽',
|
|
827
|
+
fmt_internalsetting_labels_Network: '网络',
|
|
828
|
+
fmt_internalsetting_labels_Networktype: '网络类型',
|
|
829
|
+
fmt_internalsetting_labels_Maximumresolution: '最大分辨率',
|
|
830
|
+
fmt_internalsetting_labels_Framerate: '帧率',
|
|
831
|
+
fmt_internalsetting_labels_Bitrate: '码率',
|
|
832
|
+
fmt_internalsetting_labels_resolvingpower: '分辨率',
|
|
833
|
+
fmt_internalsetting_labels_bitrate2: '码率',
|
|
834
|
+
fmt_internalsetting_labels_mic: '麦克风',
|
|
835
|
+
fmt_internalsetting_labels_speaker: '扬声器',
|
|
836
|
+
fmt_internalsetting_labels_Memory: '内存',
|
|
837
|
+
fmt_settings_button_unlockroom: '解锁',
|
|
838
|
+
fmt_internalsetting_beauty_background: '美颜和背景',
|
|
839
|
+
fmt_internalsetting_sites: '备用地址',
|
|
840
|
+
fmt_internalsetting_mini_meeting: '最小化会议',
|
|
841
|
+
fmt_internalsetting_raise_hand: '举手',
|
|
842
|
+
fmt_internalsetting_disconnect_audio: '断开音频',
|
|
843
|
+
fmt_internalsetting_other_join: '入会设置',
|
|
844
|
+
fmt_internalsetting_other_personal: '个人设置(只对本人视图有效)',
|
|
845
|
+
fmt_internalsetting_other_join_mute: '成员入会时静音',
|
|
846
|
+
fmt_internalsetting_other_join_sound: '参会者加入和离开时有声音提示',
|
|
847
|
+
fmt_internalsetting_other_join_name: '参会者加入时显示名称',
|
|
848
|
+
fmt_internalsetting_other_hide_no_video_toast: '已在本端隐藏未开视频的用户视窗',
|
|
849
|
+
fmt_internalsetting_other_hide_no_video_pin_cancelled: '你开启了“隐藏非视频窗口功能”,固定视窗被取消。',
|
|
850
|
+
fmt_internalsetting_other_hide_my_window_pin_cancelled: '你开启了“隐藏我的视频功能”,固定视窗被取消。',
|
|
851
|
+
fmt_internalsetting_other_hide_me: '隐藏我的视频',
|
|
852
|
+
fmt_internalsetting_other_hide_me_toast: '其他成员入会或开启视频流后,将在本机隐藏你的视频窗',
|
|
853
|
+
fmt_internalsetting_other_spot_light: '语音激励',
|
|
854
|
+
fmt_internalsetting_other_spot_light_desc: '开启语音激励后,会优先显示正在说话的与会成员。',
|
|
855
|
+
fmt_internalsetting_room_window_top: '上下视窗布局',
|
|
856
|
+
fmt_internalsetting_room_window_big: '大小视窗布局',
|
|
857
|
+
fmt_internalsetting_room_window_left: '左右视窗布局',
|
|
858
|
+
fmt_internalsetting_room_window_tip: '共享屏幕共享和白板时禁用大小视窗',
|
|
859
|
+
fmt_internalsetting_room_window_switched: '切换为{reason1}',
|
|
860
|
+
fmt_internalsetting_labels_Network_type: '网络类型',
|
|
861
|
+
fmt_internalsetting_labels_resolving_power: '分辨率',
|
|
862
|
+
//****************** 设置提示部分 ******************
|
|
863
|
+
fmt_settings_labels_sidebar: '侧边栏',
|
|
864
|
+
fmt_settings_labels_fold: '折叠',
|
|
865
|
+
fmt_settings_labels_theme: '主题',
|
|
866
|
+
fmt_settings_tips_sharingprohibited: '{reason1}禁止共享,可联系会议管理员开启',
|
|
867
|
+
fmt_settings_tips_videoenabled: '{reason1}已允许开启视频',
|
|
868
|
+
fmt_settings_tips_disabledvideo: '{reason1}已禁止开启视频',
|
|
869
|
+
fmt_settings_tips_allowedScreensharing: '{reason1}已允许屏幕共享',
|
|
870
|
+
fmt_settings_tips_disabledScreensharing: '{reason1}已禁止屏幕共享',
|
|
871
|
+
fmt_settings_tips_allowedchat: '{reason1}已允许聊天',
|
|
872
|
+
fmt_settings_tips_banedchat: '{reason1}已禁止聊天',
|
|
873
|
+
fmt_settings_tips_allowedselfunmuting: '{reason1}已允许自我解除静音',
|
|
874
|
+
fmt_settings_tips_disabledselfunmuting: '{reason1}已禁止自我解除静音',
|
|
875
|
+
fmt_settings_tips_muteallwhilejoin: '{reason1}已设置所有参会者加入会议时静音',
|
|
876
|
+
fmt_settings_labels_you: '你',
|
|
877
|
+
fmt_settings_tips_Blockallchat: "'全部禁言'",
|
|
878
|
+
fmt_settings_tips_groupchatonly: "'仅限群组聊天'",
|
|
879
|
+
fmt_settings_tips_hostchatonly: "'仅主持人与联席主持人可以聊天'",
|
|
880
|
+
fmt_settings_tips_confirmactivate: '确定开启',
|
|
881
|
+
fmt_settings_tips_passwordcopyfailed: '会议密码复制失败',
|
|
882
|
+
fmt_settings_tips_sharing: '你正在屏幕共享',
|
|
883
|
+
fmt_settings_labels_miniutes: '{reason1}分钟',
|
|
884
|
+
fmt_settings_options_enableoptions: '开启原声时启用这些选项',
|
|
885
|
+
fmt_settings_options_highquality: '高保真音乐模式',
|
|
886
|
+
fmt_settings_options_echocancel: '回声消除',
|
|
887
|
+
fmt_settings_options_stereo: '立体声',
|
|
888
|
+
fmt_settings_options_toolbarcollapse: '收起工具栏',
|
|
889
|
+
fmt_settings_tips_screenlocked: '画面已锁定,点击视窗左上角可以取消固定',
|
|
890
|
+
fmt_settings_tips_screenunlock: '已解除画面锁定',
|
|
891
|
+
fmt_settings_options_pausecloudrecording: '暂停云录制',
|
|
892
|
+
fmt_settings_popup_disable_while_microphone_detected: '麦克风在检测时,此功能禁用',
|
|
893
|
+
fmt_settings_popup_disable_while_speaker_detected: '扬声器在检测时,此功能禁用',
|
|
894
|
+
//****************** 直播 ******************
|
|
895
|
+
fmt_live_label_thirdplatform: '直播至第三方平台',
|
|
896
|
+
fmt_live_label_videostreamingurl: '视频流地址',
|
|
897
|
+
fmt_live_inputtips_videostreamingurl: '请输入视频流URL',
|
|
898
|
+
fmt_live_label_videostreamingkey: '视频流秘钥',
|
|
899
|
+
fmt_live_inputtips_videostreamingkey: '请输入视频流秘钥',
|
|
900
|
+
fmt_live_label_ivepage: '直播页面',
|
|
901
|
+
fmt_tips_label_Livepage: '所有获取到链接的人都能收看直播',
|
|
902
|
+
fmt_tips_inputlabel_Livepage: '请输入直播流网页网址',
|
|
903
|
+
fmt_tips_button_Golive: '发起直播',
|
|
904
|
+
fmt_tips_button_Stopolive: '停止直播',
|
|
905
|
+
fmt_live_tips_alreadylive: '你目前已发起直播服务,需要听之后才能再次发起直播',
|
|
906
|
+
fmt_live_tips_livestreaming: '直播中',
|
|
907
|
+
fmt_live_label_customizedlive: '自定义直播服务',
|
|
908
|
+
fmt_live_label_watchcustomizedlive: '在自定义直播服务上观看直播',
|
|
909
|
+
fmt_live_label_copylink: '复制直播链接',
|
|
910
|
+
fmt_tips_button_Stopsteaming: '停止直播',
|
|
911
|
+
//****************** 录制 ******************
|
|
912
|
+
fmt_record_button_Cloudrecording: '云录制',
|
|
913
|
+
fmt_record_button_Localrecording: '本地录制',
|
|
914
|
+
fmt_record_button_pauserecording: '暂停',
|
|
915
|
+
fmt_record_tips_Localrecording_Start: '本地录制启动中',
|
|
916
|
+
fmt_record_tips_Cloudrecording_Start: '云录制启动中',
|
|
917
|
+
fmt_record_tips_recording: '录制中',
|
|
918
|
+
fmt_record_tips_Cloudrecording: '云录制中',
|
|
919
|
+
fmt_record_button_Cloudrecording_restore: '恢复云录制',
|
|
920
|
+
fmt_record_button_Localrecording_restore: '恢复本地录制',
|
|
921
|
+
fmt_record_button_Cloudrecording_stop: '停止云录制',
|
|
922
|
+
fmt_record_button_Localrecording_stop: '停止本地录制',
|
|
923
|
+
fmt_record_tips_recordingpaused: '录制暂停',
|
|
924
|
+
fmt_record_tips_recordingrestored: '录制恢复',
|
|
925
|
+
fmt_record_tips_Cloudrecording_inprogress: '会议云录制中',
|
|
926
|
+
fmt_record_tips_Localrecording_inprogress: '会议本地录制中',
|
|
927
|
+
fmt_recording_button_rrecording: '录制',
|
|
928
|
+
fmt_actionbar_record_tips_stoprecord: '确定现在停止录制吗?',
|
|
929
|
+
fmt_actionbar_record_option_stoprecord: '确定停止录制',
|
|
930
|
+
fmt_modules_labels_localrecord: '本地录制保存在',
|
|
931
|
+
fmt_modules_labels_notset: '未设置',
|
|
932
|
+
fmt_modules_button_change: '更改',
|
|
933
|
+
fmt_modules_button_open: '打开',
|
|
934
|
+
fmt_modules_labels_surplus: '剩余',
|
|
935
|
+
fmt_record_scene_meeting_rec: '录制',
|
|
936
|
+
fmt_record_tip_share_scaling: '双指可以缩放屏幕共享内容',
|
|
937
|
+
fmt_record_gallery_guide_toast: '长按宫格视窗可以唤起“更多”',
|
|
938
|
+
fmt_record_share_nick: '{reason1} 的屏幕共享',
|
|
939
|
+
fmt_record_share_board_nick: '{reason1} 的白板共享',
|
|
940
|
+
fmt_record_new_sharing_stream_tip: '{reason1}正在共享屏幕...',
|
|
941
|
+
fmt_record_record_starting2: '启动中',
|
|
942
|
+
fmt_record_record_pause_for_more: '云录制暂停',
|
|
943
|
+
fmt_record_record_start_fail: '云录制启动失败',
|
|
944
|
+
fmt_record_record_resume_fail: '云录制恢复失败',
|
|
945
|
+
fmt_record_record_stop_fail: '云录制停止失败',
|
|
946
|
+
fmt_record_record_pause_fail: '云录制暂停失败',
|
|
947
|
+
fmt_record_record_stoped: '云录制已停止',
|
|
948
|
+
fmt_record_record_started: '云录制已开始',
|
|
949
|
+
fmt_record_record_stop_ask: '确定现在停止录制吗?',
|
|
950
|
+
fmt_record_record_stop_confirm: '确定停止录制',
|
|
951
|
+
fmt_pstn_label_accessmethod: '选择音频接入方式',
|
|
952
|
+
fmt_pstn_options_PCaudioconnet: '连接到电脑音频',
|
|
953
|
+
fmt_pstn_options_phoneaudioconnet: '连接到电话音频',
|
|
954
|
+
fmt_pstn_options_audio_setting: '音频设置',
|
|
955
|
+
fmt_pstn_options_PCaudio: '麦克风接入',
|
|
956
|
+
fmt_pstn_options_phoneaudio: '电话接入',
|
|
957
|
+
fmt_pstn_label_connected: '电话接入-已接入',
|
|
958
|
+
fmt_pstn_label_accessmethodPC: '通过电脑音频接入',
|
|
959
|
+
fmt_pstn_button_devicetest: '测试扬声器和麦克风',
|
|
960
|
+
fmt_pstn_label_micselect: '选择麦克风',
|
|
961
|
+
fmt_pstn_button_PCaudiostop: '停止电脑音频接入',
|
|
962
|
+
fmt_pstn_label_alreadyin: '已通过电话参加会议?请按#{reason1}#',
|
|
963
|
+
fmt_pstn_options_rememberphone: '在本机上记住该号码',
|
|
964
|
+
fmt_pstn_button_callme: '呼叫我',
|
|
965
|
+
fmt_pstn_label_dialinphone: '或用电话拨入',
|
|
966
|
+
fmt_pstn_label_countryregion: '国家/地区',
|
|
967
|
+
fmt_pstn_label_dial: '拨号',
|
|
968
|
+
fmt_pstn_label_meetingid: '会议ID',
|
|
969
|
+
fmt_pstn_label_participantid: '参会者ID',
|
|
970
|
+
fmt_pstn_label_viaphone: '正在使用电话连接语音',
|
|
971
|
+
fmt_pstn_status_unconnectted: '未连接',
|
|
972
|
+
fmt_pstn_tips_alreadyphone: '已通过电话音频接入,请挂断电话后再进行音频切换',
|
|
973
|
+
fmt_pstn_status_calling: '正在呼叫',
|
|
974
|
+
fmt_pstn_button_hangupphone: '挂断电话',
|
|
975
|
+
fmt_pstn_label_merge: '将{reason1}电话号码)合并',
|
|
976
|
+
fmt_pstn_button_merge: '合并',
|
|
977
|
+
fmt_pstn_button_cancel: '取消',
|
|
978
|
+
fmt_pstn_label_phonecall: '电话呼叫',
|
|
979
|
+
fmt_pstn_inputtips_name: '参会者名称,名字将会在会议中显示',
|
|
980
|
+
fmt_pstn_button_phonecall: '电话呼叫',
|
|
981
|
+
fmt_pstn_label_or: '或',
|
|
982
|
+
fmt_pstn_label_copylink: '复制会议链接',
|
|
983
|
+
fmt_pstn_status_ringing: '响铃中',
|
|
984
|
+
fmt_pstn_status_Answered: '已接听',
|
|
985
|
+
fmt_pstn_status_failed: '失败',
|
|
986
|
+
fmt_pstn_status_hungup: '对方挂断电话',
|
|
987
|
+
fmt_pstn_status_maitain: '保持电话连接',
|
|
988
|
+
fmt_PSTN_status_connected: '已接入',
|
|
989
|
+
fmt_PSTN_label_pcaudio: '电脑音频',
|
|
990
|
+
fmt_PSTN_status_hangup: '已挂断',
|
|
991
|
+
fmt_PSTN_status_china: '中国',
|
|
992
|
+
fmt_PSTN_status_usa: '美国',
|
|
993
|
+
fmt_PSTN_tips_unempty: '不能为空',
|
|
994
|
+
fmt_PSTN_tips_formaterror: '格式有误',
|
|
995
|
+
fmt_PSTN_status_voiceconnected: '已连接语音',
|
|
996
|
+
fmt_PSTN_status_hungup: '已挂断电话',
|
|
997
|
+
fmt_pstn_tips_errorformat: '格式错误',
|
|
998
|
+
fmt_gateway_tips_nodata: '你已连接电脑音频',
|
|
999
|
+
fmt_PSTN_toast_merged: '已与{reason1}合并',
|
|
1000
|
+
fmt_sip_options_callout: '呼出',
|
|
1001
|
+
fmt_sip_options_callin: '呼入',
|
|
1002
|
+
fmt_sip_inputtips_sip_323: '请输入IP地址或E.164号码',
|
|
1003
|
+
fmt_sip_options_H323: 'H323',
|
|
1004
|
+
fmt_sip_options_SIP: 'SIP',
|
|
1005
|
+
fmt_sip_button_call: '呼叫',
|
|
1006
|
+
fmt_sip_button_Hangup: '挂断',
|
|
1007
|
+
fmt_sip_label_dialviasip: '在H.323/SIP会议室系统中拨号',
|
|
1008
|
+
fmt_sip_label_dial: '拨号',
|
|
1009
|
+
fmt_sip_label_inputid: '输入会议ID',
|
|
1010
|
+
fmt_sip_label_password: '密码',
|
|
1011
|
+
fmt_pstn_status_dialling: '正在拨号',
|
|
1012
|
+
fmt_pstn_status_raining: '响铃中',
|
|
1013
|
+
fmt_SIP323_copywrite_phonenumber: '手机号码(必填)',
|
|
1014
|
+
fmt_SIP323_options_detailedinfor: '复制详细会议信息',
|
|
1015
|
+
fmt_SIP323_tips_alreadycopied: '已复制在粘贴板'
|
|
1016
|
+
};
|