fcr-ui-scene 3.6.4 → 3.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/creator.d.ts +4 -3
- package/lib/creator.js +146 -111
- package/lib/electron/app.js +1 -1
- package/lib/electron/bootstrap-sdk.js +49 -4
- package/lib/electron/injections.d.ts +5 -1
- package/lib/electron/injections.js +14 -2
- package/lib/electron/ipc/type.d.ts +8 -4
- package/lib/electron/ipc/type.js +10 -4
- package/lib/electron/logger.js +1 -1
- package/lib/electron/main.js +5 -2
- package/lib/electron/preload.js +34 -5
- package/lib/fragments/annotation/index.d.ts +2 -2
- package/lib/fragments/annotation/index.js +38 -28
- package/lib/fragments/annotation/libs.d.ts +2 -2
- package/lib/fragments/annotation/store.d.ts +21 -4
- package/lib/fragments/annotation/store.js +281 -84
- package/lib/fragments/annotation/style.css +9 -0
- package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/item/item.js +1 -1
- package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/pen-tool/pen-panel/index.js +1 -1
- package/lib/{modules/annotation/components → fragments/annotation}/toolbar/store.d.ts +26 -2
- package/lib/{modules/annotation/components → fragments/annotation}/toolbar/store.js +57 -8
- package/lib/{modules/annotation/components → fragments/annotation}/toolbar/view.js +36 -3
- package/lib/fragments/annotation/view.d.ts +1 -0
- package/lib/fragments/annotation/view.js +52 -10
- package/lib/modules/action-bar/components/apps/index.js +54 -38
- package/lib/modules/action-bar/components/chat/index.js +13 -34
- package/lib/modules/action-bar/components/collapse/index.js +1 -1
- package/lib/modules/action-bar/components/leave/index.js +9 -9
- package/lib/modules/action-bar/components/more/index.js +26 -27
- package/lib/modules/action-bar/components/participants/index.js +23 -39
- package/lib/modules/action-bar/components/record/index.js +7 -13
- package/lib/modules/action-bar/components/screen-share/index.js +4 -24
- package/lib/modules/action-bar/components/security/index.js +29 -34
- package/lib/modules/action-bar/components/settings/index.js +13 -19
- package/lib/modules/action-bar/index.d.ts +4 -0
- package/lib/modules/action-bar/index.js +3 -1
- package/lib/modules/action-bar/store.d.ts +16 -6
- package/lib/modules/action-bar/store.js +63 -25
- package/lib/modules/action-bar/types.d.ts +3 -3
- package/lib/modules/action-bar/view.js +2 -3
- package/lib/modules/annotation/annotation-index.d.ts +2 -0
- package/lib/modules/annotation/annotation-index.js +80 -0
- package/lib/modules/annotation/annotation-toolbar-store.d.ts +82 -0
- package/lib/modules/annotation/annotation-toolbar-store.js +501 -0
- package/lib/modules/annotation/components/color-picker/components/color.d.ts +5 -0
- package/lib/modules/annotation/components/color-picker/components/color.js +38 -0
- package/lib/modules/annotation/components/color-picker/components/panel.d.ts +1 -0
- package/lib/modules/annotation/components/color-picker/components/panel.js +109 -0
- package/lib/modules/annotation/components/color-picker/components/picker.d.ts +1 -0
- package/lib/modules/annotation/components/color-picker/components/picker.js +75 -0
- package/lib/modules/annotation/components/color-picker/index.d.ts +2 -0
- package/lib/modules/annotation/components/color-picker/index.js +47 -0
- package/lib/modules/annotation/components/eraser-picker.d.ts +4 -0
- package/lib/modules/annotation/components/eraser-picker.js +144 -0
- package/lib/modules/annotation/components/expansion/index.d.ts +1 -0
- package/lib/modules/annotation/components/expansion/index.js +100 -0
- package/lib/modules/annotation/components/extra-tool-picker.d.ts +1 -0
- package/lib/modules/annotation/components/extra-tool-picker.js +62 -0
- package/lib/modules/annotation/components/history.d.ts +2 -0
- package/lib/modules/annotation/components/history.js +78 -0
- package/lib/modules/annotation/components/icons/fold-icon.d.ts +2 -0
- package/lib/modules/annotation/components/icons/fold-icon.js +41 -0
- package/lib/modules/annotation/components/icons/move-icon.d.ts +1 -0
- package/lib/modules/annotation/components/icons/move-icon.js +66 -0
- package/lib/modules/annotation/components/item/index.d.ts +1 -0
- package/lib/modules/annotation/components/item/index.js +43 -0
- package/lib/modules/annotation/components/move-handle.d.ts +5 -0
- package/lib/modules/annotation/components/move-handle.js +134 -0
- package/lib/modules/annotation/components/pen-picker.d.ts +4 -0
- package/lib/modules/annotation/components/pen-picker.js +155 -0
- package/lib/modules/annotation/components/screen-capture-picker.d.ts +4 -0
- package/lib/modules/annotation/components/screen-capture-picker.js +85 -0
- package/lib/modules/annotation/components/shape-picker.d.ts +4 -0
- package/lib/modules/annotation/components/shape-picker.js +210 -0
- package/lib/modules/annotation/hooks/index.d.ts +14 -0
- package/lib/modules/annotation/hooks/index.js +292 -0
- package/lib/modules/annotation/index.d.ts +4 -1
- package/lib/modules/annotation/index.js +20 -22
- package/lib/modules/annotation/store.d.ts +59 -18
- package/lib/modules/annotation/store.js +503 -263
- package/lib/modules/annotation/style.css +10 -0
- package/lib/modules/annotation/view.js +9 -11
- package/lib/modules/chat/chat-room-store.js +5 -2
- package/lib/modules/chat/components/chat-select/index.js +1 -1
- package/lib/modules/chat/components/chat-select/select-item/index.js +10 -3
- package/lib/modules/chat/components/message-list/message-item/index.js +4 -2
- package/lib/modules/chat/index.d.ts +2 -0
- package/lib/modules/chat/index.js +13 -3
- package/lib/modules/chat/store.d.ts +3 -0
- package/lib/modules/chat/store.js +12 -6
- package/lib/modules/chat/types.d.ts +1 -0
- package/lib/modules/chat/types.js +2 -1
- package/lib/modules/chat/util.js +2 -1
- package/lib/modules/chat/view.js +6 -3
- package/lib/modules/{action-bar/components → components}/apps/app-item/index.d.ts +1 -1
- package/lib/modules/components/apps/app-list.d.ts +3 -0
- package/lib/modules/{action-bar/components → components}/apps/app-list.js +2 -4
- package/lib/modules/components/apps/types.d.ts +14 -0
- package/lib/modules/components/apps/types.js +6 -0
- package/lib/modules/components/device-control/components/carmera/index.js +71 -68
- package/lib/modules/components/device-control/components/microphone/index.js +99 -97
- package/lib/modules/components/device-control/store.d.ts +1 -1
- package/lib/modules/components/member-window/components/member-actions/components/audio-control.js +7 -7
- package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.d.ts +0 -2
- package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.js +4 -7
- package/lib/modules/components/member-window/components/member-actions/components/icon-status.d.ts +0 -1
- package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +19 -36
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.d.ts +1 -0
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +9 -2
- package/lib/modules/components/member-window/components/member-actions/components/user-info.js +0 -3
- package/lib/modules/components/member-window/components/member-actions/components/user-tag.js +15 -11
- package/lib/modules/components/member-window/components/member-actions/index.js +10 -2
- package/lib/modules/components/member-window/components/member-actions/libs/index.js +2 -2
- package/lib/modules/components/member-window/components/video-player/components/local-video-player-with-zoom.d.ts +12 -0
- package/lib/modules/components/member-window/components/video-player/components/local-video-player-with-zoom.js +75 -0
- package/lib/modules/components/member-window/components/video-player/components/local-video-player.d.ts +1 -7
- package/lib/modules/components/member-window/components/video-player/components/local-video-player.js +7 -47
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player-with-zoom.d.ts +12 -0
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player-with-zoom.js +68 -0
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player.d.ts +1 -9
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player.js +7 -49
- package/lib/modules/components/member-window/components/video-player/components/zoomable-container.d.ts +15 -0
- package/lib/modules/components/member-window/components/video-player/components/zoomable-container.js +255 -0
- package/lib/modules/components/member-window/components/video-player/index.d.ts +2 -0
- package/lib/modules/components/member-window/components/video-player/index.js +8 -2
- package/lib/modules/components/member-window/index.css +16 -6
- package/lib/modules/components/member-window/index.d.ts +1 -1
- package/lib/modules/components/member-window/index.js +12 -4
- package/lib/modules/components/member-window/types.d.ts +2 -0
- package/lib/modules/components/security-menu/index.js +6 -5
- package/lib/modules/control-bar/components/annotation-button/index.js +21 -8
- package/lib/modules/control-bar/components/more-actions/index.css +13 -0
- package/lib/modules/control-bar/components/more-actions/index.js +1 -1
- package/lib/modules/control-bar/components/share-audio/index.css +90 -0
- package/lib/modules/control-bar/components/share-audio/index.d.ts +15 -0
- package/lib/modules/control-bar/components/share-audio/index.js +173 -0
- package/lib/modules/control-bar/components/share-state-nav/index.css +5 -0
- package/lib/modules/control-bar/components/share-state-nav/index.js +14 -2
- package/lib/modules/control-bar/index.d.ts +2 -0
- package/lib/modules/control-bar/index.js +9 -1
- package/lib/modules/control-bar/store.d.ts +16 -7
- package/lib/modules/control-bar/store.js +36 -12
- package/lib/modules/control-bar/view.d.ts +4 -0
- package/lib/modules/control-bar/view.js +180 -90
- package/lib/modules/device-pretest/store.d.ts +1 -1
- package/lib/modules/dialog/components/dialog-container/component/body.d.ts +1 -1
- package/lib/modules/dialog/components/dialog-container/index.css +1 -0
- package/lib/modules/dialog/components/dialog-container/index.d.ts +2 -1
- package/lib/modules/dialog/components/dialog-container/index.js +27 -10
- package/lib/modules/dialog/components/host-area-container/index.js +4 -4
- package/lib/modules/dialog/components/normal-window/index.d.ts +19 -0
- package/lib/modules/dialog/components/normal-window/index.js +69 -0
- package/lib/modules/dialog/{components → dialogs}/annotation-tool/index.js +17 -15
- package/lib/modules/dialog/dialogs/chat/components/actions.d.ts +1 -0
- package/lib/modules/dialog/dialogs/chat/components/actions.js +33 -0
- package/lib/modules/dialog/{components → dialogs}/chat/index.d.ts +1 -1
- package/lib/modules/dialog/dialogs/chat/index.js +59 -0
- package/lib/modules/dialog/dialogs/confirm-leave-meeting/index.d.ts +6 -0
- package/lib/modules/dialog/{components → dialogs}/confirm-leave-meeting/index.js +13 -37
- package/lib/modules/dialog/{components → dialogs}/connection-gateway/index.js +19 -12
- package/lib/modules/dialog/{components → dialogs}/control-bar/index.js +2 -2
- package/lib/modules/dialog/{components → dialogs}/device-setting/index.js +20 -13
- package/lib/modules/dialog/dialogs/end-meeting/index.d.ts +12 -0
- package/lib/modules/dialog/dialogs/end-meeting/index.js +45 -0
- package/lib/modules/dialog/{components/interpreter/electron.js → dialogs/interpreter/index.js} +17 -11
- package/lib/modules/dialog/dialogs/invite/index.d.ts +3 -0
- package/lib/modules/dialog/{components → dialogs}/invite/index.js +9 -25
- package/lib/modules/dialog/dialogs/live-streaming/index.d.ts +2 -0
- package/lib/modules/dialog/{components → dialogs}/live-streaming/index.js +11 -34
- package/lib/modules/dialog/dialogs/participant/components/actions.d.ts +1 -0
- package/lib/modules/dialog/dialogs/participant/components/actions.js +32 -0
- package/lib/modules/dialog/dialogs/participant/components/title.d.ts +1 -0
- package/lib/modules/dialog/dialogs/participant/components/title.js +19 -0
- package/lib/modules/dialog/dialogs/participant/index.d.ts +2 -0
- package/lib/modules/dialog/dialogs/participant/index.js +53 -0
- package/lib/modules/dialog/dialogs/pre-setting/index.js +62 -0
- package/lib/modules/dialog/dialogs/rename/index.js +35 -0
- package/lib/modules/dialog/{components → dialogs}/share-screen-selection/index.js +1 -1
- package/lib/modules/dialog/{components → dialogs}/video-window/index.js +11 -8
- package/lib/modules/dialog/{components → dialogs}/whiteboard/index.js +2 -3
- package/lib/modules/dialog/{components → dialogs}/widget/electron.js +1 -1
- package/lib/modules/dialog/{components → dialogs}/widget/index.js +1 -1
- package/lib/modules/dialog/hooks/use-web-drag.d.ts +8 -0
- package/lib/modules/dialog/hooks/use-web-drag.js +73 -0
- package/lib/modules/dialog/hooks/useElectron.d.ts +2 -7
- package/lib/modules/dialog/hooks/useElectron.js +46 -156
- package/lib/modules/dialog/index.d.ts +4 -0
- package/lib/modules/dialog/index.js +4 -2
- package/lib/modules/dialog/level-config.d.ts +11 -0
- package/lib/modules/dialog/level-config.js +21 -0
- package/lib/modules/dialog/store.d.ts +15 -6
- package/lib/modules/dialog/store.js +40 -54
- package/lib/modules/dialog/type.d.ts +15 -12
- package/lib/modules/event-confirm/components/window/index.d.ts +1 -4
- package/lib/modules/event-confirm/components/window/index.js +34 -23
- package/lib/modules/event-confirm/index.d.ts +2 -0
- package/lib/modules/event-confirm/index.js +3 -2
- package/lib/modules/event-confirm/store.d.ts +9 -1
- package/lib/modules/event-confirm/store.js +24 -16
- package/lib/modules/event-confirm/view.js +11 -22
- package/lib/modules/event-sound/index.d.ts +2 -0
- package/lib/modules/event-sound/index.js +8 -1
- package/lib/modules/event-toast/index.css +10 -0
- package/lib/modules/event-toast/store.d.ts +1 -1
- package/lib/modules/event-toast/store.js +17 -15
- package/lib/modules/event-toast/view.js +2 -1
- package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/index.js +4 -2
- package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/option-Item.js +2 -1
- package/lib/modules/interpreter/store.d.ts +1 -0
- package/lib/modules/interpreter/store.js +12 -5
- package/lib/modules/interpreter/view.js +7 -1
- package/lib/modules/layout/components/Aside.js +4 -0
- package/lib/modules/layout/components/Carousel.js +3 -1
- package/lib/modules/layout/components/CommonVideoRenderer.d.ts +3 -1
- package/lib/modules/layout/components/CommonVideoRenderer.js +13 -9
- package/lib/modules/layout/components/Gallery.js +11 -3
- package/lib/modules/layout/index.css +1 -0
- package/lib/modules/layout/index.d.ts +2 -0
- package/lib/modules/layout/index.js +4 -3
- package/lib/modules/layout/store.d.ts +9 -5
- package/lib/modules/layout/store.js +38 -46
- package/lib/modules/participant/components/confirm-input/index.css +4 -0
- package/lib/modules/participant/components/confirm-input/index.d.ts +1 -0
- package/lib/modules/participant/components/confirm-input/index.js +2 -1
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.js +2 -1
- package/lib/modules/participant/components/participants/components/participants/index.js +11 -3
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.js +7 -3
- package/lib/modules/participant/components/participants/types.d.ts +1 -0
- package/lib/modules/participant/store.d.ts +2 -1
- package/lib/modules/participant/store.js +23 -9
- package/lib/modules/phone-audio-connect/store.d.ts +4 -4
- package/lib/modules/setting/audio-settings/audio-settings.js +6 -17
- package/lib/modules/setting/config.d.ts +16 -0
- package/lib/modules/setting/config.js +17 -1
- package/lib/modules/setting/index.d.ts +2 -4
- package/lib/modules/setting/index.js +7 -16
- package/lib/modules/setting/minutes-settings/minutes-settings.js +0 -4
- package/lib/modules/setting/state/index.js +5 -5
- package/lib/modules/setting/store.d.ts +37 -33
- package/lib/modules/setting/store.js +275 -261
- package/lib/modules/setting/translate-settings/language-select.js +0 -2
- package/lib/modules/setting/video-settings/video-settings-basic.js +6 -6
- package/lib/modules/setting/video-settings/video-settings.js +2 -2
- package/lib/modules/setting/view.js +1 -1
- package/lib/modules/share-screen/components/control-bar/index.css +75 -0
- package/lib/modules/share-screen/components/control-bar/index.d.ts +3 -0
- package/lib/modules/share-screen/components/control-bar/index.js +88 -0
- package/lib/modules/share-screen/components/control-bar/items/annotation-edit-btn/index.d.ts +8 -0
- package/lib/modules/share-screen/components/control-bar/items/annotation-edit-btn/index.js +46 -0
- package/lib/modules/share-screen/components/control-bar/items/full-container-btn/index.d.ts +6 -0
- package/lib/modules/share-screen/components/control-bar/items/full-container-btn/index.js +32 -0
- package/lib/modules/share-screen/components/control-bar/items/original-size-btn/index.d.ts +6 -0
- package/lib/modules/share-screen/components/control-bar/items/original-size-btn/index.js +32 -0
- package/lib/modules/share-screen/components/control-bar/items/zoom-in-btn/index.d.ts +6 -0
- package/lib/modules/share-screen/components/control-bar/items/zoom-in-btn/index.js +32 -0
- package/lib/modules/share-screen/components/control-bar/items/zoom-out-btn/index.d.ts +6 -0
- package/lib/modules/share-screen/components/control-bar/items/zoom-out-btn/index.js +32 -0
- package/lib/modules/share-screen/components/selection/index.js +28 -14
- package/lib/modules/share-screen/components/share-scenario/index.d.ts +5 -0
- package/lib/modules/share-screen/components/share-scenario/index.js +47 -0
- package/lib/modules/share-screen/index.d.ts +4 -2
- package/lib/modules/share-screen/index.js +11 -2
- package/lib/modules/share-screen/store.d.ts +32 -11
- package/lib/modules/share-screen/store.js +273 -192
- package/lib/modules/share-screen/view.js +2 -2
- package/lib/modules/state-bar/index.js +2 -3
- package/lib/modules/state-bar/layout-config.d.ts +2 -4
- package/lib/modules/state-bar/layout-config.js +10 -5
- package/lib/modules/state-bar/live-streaming-state.js +0 -1
- package/lib/modules/state-bar/store.d.ts +7 -7
- package/lib/modules/state-bar/store.js +17 -15
- package/lib/modules/state-bar/view.js +19 -23
- package/lib/modules/video-window/components/members/index.js +3 -2
- package/lib/modules/video-window/index.js +0 -3
- package/lib/modules/waiting-room-layout/index.css +3 -3
- package/lib/modules/waiting-room-layout/index.js +2 -2
- package/lib/modules/waiting-room-layout/view.js +1 -0
- package/lib/modules/whiteboard/components/control-bar/index.js +2 -2
- package/lib/modules/whiteboard/components/control-bar/store.d.ts +4 -1
- package/lib/modules/whiteboard/components/control-bar/store.js +4 -2
- package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +4 -4
- package/lib/modules/whiteboard/components/toolbar/hooks/index.d.ts +0 -14
- package/lib/modules/whiteboard/components/toolbar/hooks/index.js +4 -155
- package/lib/modules/whiteboard/components/toolbar/store.d.ts +4 -2
- package/lib/modules/whiteboard/components/toolbar/store.js +37 -25
- package/lib/modules/whiteboard/components/toolbar/style.css +1 -0
- package/lib/modules/whiteboard/index.d.ts +3 -1
- package/lib/modules/whiteboard/index.js +26 -23
- package/lib/modules/widget/view.js +4 -0
- package/lib/providers/ability-provider.d.ts +2 -0
- package/lib/providers/annotation-provider.d.ts +43 -47
- package/lib/providers/annotation-provider.js +94 -142
- package/lib/providers/app-list-provider.d.ts +98 -0
- package/lib/providers/app-list-provider.js +251 -0
- package/lib/providers/device-provider.d.ts +31 -23
- package/lib/providers/device-provider.js +495 -444
- package/lib/providers/device-stream-provider.js +2 -2
- package/lib/providers/event-provider.d.ts +0 -4
- package/lib/providers/event-provider.js +0 -10
- package/lib/providers/interpreter-provider.js +10 -7
- package/lib/providers/privilege-provider.d.ts +1 -1
- package/lib/providers/privilege-provider.js +3 -2
- package/lib/providers/renderer-provider.d.ts +1 -0
- package/lib/providers/renderer-provider.js +7 -2
- package/lib/providers/room-provider.d.ts +5 -1
- package/lib/providers/room-provider.js +44 -16
- package/lib/providers/screen-share-provider.d.ts +73 -17
- package/lib/providers/screen-share-provider.js +222 -100
- package/lib/providers/sharing-provider.d.ts +0 -1
- package/lib/providers/sharing-provider.js +3 -9
- package/lib/providers/user-setting-storage-provider.d.ts +1 -0
- package/lib/providers/user-setting-storage-provider.js +5 -12
- package/lib/providers/widget-provider.d.ts +19 -0
- package/lib/providers/widget-provider.js +28 -2
- package/lib/runtime.d.ts +10 -1
- package/lib/scenes/main-scene.d.ts +12 -2
- package/lib/scenes/main-scene.js +54 -28
- package/lib/scenes/waiting-scene.d.ts +11 -0
- package/lib/scenes/waiting-scene.js +34 -8
- package/lib/schema.d.ts +6 -0
- package/lib/schema.js +5 -1
- package/lib/shared-data-source/annotation-data.d.ts +17 -0
- package/lib/shared-data-source/annotation-data.js +110 -0
- package/lib/shared-data-source/app-list-data.d.ts +34 -0
- package/lib/shared-data-source/app-list-data.js +133 -0
- package/lib/shared-data-source/config.d.ts +26 -7
- package/lib/shared-data-source/config.js +29 -11
- package/lib/shared-data-source/confirm-data.d.ts +25 -0
- package/lib/shared-data-source/confirm-data.js +97 -0
- package/lib/shared-data-source/interpreter.d.ts +1 -0
- package/lib/shared-data-source/layout-data.d.ts +2 -0
- package/lib/shared-data-source/layout-data.js +14 -3
- package/lib/shared-data-source/meeting-time.d.ts +23 -1
- package/lib/shared-data-source/meeting-time.js +160 -43
- package/lib/shared-data-source/member-data.d.ts +10 -9
- package/lib/shared-data-source/member-data.js +55 -48
- package/lib/shared-data-source/screen-share-data.d.ts +100 -17
- package/lib/shared-data-source/screen-share-data.js +142 -22
- package/lib/shared-data-source/setting.d.ts +36 -4
- package/lib/shared-data-source/setting.js +92 -57
- package/lib/shared-data-source/video-window.d.ts +3 -0
- package/lib/shared-data-source/video-window.js +52 -30
- package/lib/shared-data-source/waiting-room.js +4 -2
- package/lib/translations/enUS.d.ts +62 -7
- package/lib/translations/enUS.js +71 -14
- package/lib/translations/zhCN.d.ts +62 -7
- package/lib/translations/zhCN.js +73 -16
- package/lib/type.d.ts +23 -5
- package/lib/type.js +6 -2
- package/lib/ui-manager.d.ts +5 -16
- package/lib/ui-manager.js +15 -57
- package/lib/ui-scene.d.ts +31 -6
- package/lib/ui-scene.js +180 -169
- package/lib/utilities/constant.d.ts +67 -63
- package/lib/utilities/constant.js +65 -61
- package/lib/utilities/dialog-utils.d.ts +66 -0
- package/lib/utilities/dialog-utils.js +188 -0
- package/lib/utilities/logger.js +3 -3
- package/lib/utilities/meeting-detail.js +1 -1
- package/lib/utilities/parameters.d.ts +1 -0
- package/lib/utilities/parameters.js +5 -1
- package/lib/utilities/renderer-event.d.ts +1 -1
- package/lib/utilities/screen-capture-permission.d.ts +1 -0
- package/lib/utilities/screen-capture-permission.js +9 -1
- package/lib/utilities/tools.d.ts +0 -66
- package/lib/utilities/tools.js +9 -186
- package/package.json +5 -6
- package/public/index.html +11 -1
- package/lib/modules/action-bar/components/apps/app-list.d.ts +0 -3
- package/lib/modules/action-bar/components/apps/useAppItemOptions.d.ts +0 -17
- package/lib/modules/action-bar/components/apps/useAppItemOptions.js +0 -30
- package/lib/modules/action-bar/components/apps/useBeautyBackground.d.ts +0 -10
- package/lib/modules/action-bar/components/apps/useBeautyBackground.js +0 -36
- package/lib/modules/action-bar/components/apps/useInterpreter.d.ts +0 -14
- package/lib/modules/action-bar/components/apps/useInterpreter.js +0 -37
- package/lib/modules/action-bar/components/apps/useLiveStreaming.d.ts +0 -16
- package/lib/modules/action-bar/components/apps/useLiveStreaming.js +0 -41
- package/lib/modules/action-bar/components/apps/useWidgetList.d.ts +0 -10
- package/lib/modules/action-bar/components/apps/useWidgetList.js +0 -39
- package/lib/modules/annotation/components/control-bar/index.css +0 -48
- package/lib/modules/annotation/components/control-bar/index.d.ts +0 -3
- package/lib/modules/annotation/components/control-bar/index.js +0 -142
- package/lib/modules/annotation/components/toolbar/index.d.ts +0 -0
- package/lib/modules/annotation/components/toolbar/index.js +0 -1
- package/lib/modules/dialog/components/chat/electron.d.ts +0 -2
- package/lib/modules/dialog/components/chat/electron.js +0 -35
- package/lib/modules/dialog/components/chat/index.js +0 -67
- package/lib/modules/dialog/components/confirm-leave-meeting/index.d.ts +0 -6
- package/lib/modules/dialog/components/connection-gateway/electron.d.ts +0 -5
- package/lib/modules/dialog/components/connection-gateway/electron.js +0 -33
- package/lib/modules/dialog/components/device-setting/electron.d.ts +0 -2
- package/lib/modules/dialog/components/device-setting/electron.js +0 -37
- package/lib/modules/dialog/components/interpreter/electron.d.ts +0 -2
- package/lib/modules/dialog/components/interpreter/index.js +0 -33
- package/lib/modules/dialog/components/invite/index.d.ts +0 -3
- package/lib/modules/dialog/components/live-streaming/index.d.ts +0 -4
- package/lib/modules/dialog/components/participant/electron.d.ts +0 -2
- package/lib/modules/dialog/components/participant/electron.js +0 -35
- package/lib/modules/dialog/components/participant/index.d.ts +0 -2
- package/lib/modules/dialog/components/participant/index.js +0 -65
- package/lib/modules/dialog/components/pre-setting/electron.d.ts +0 -2
- package/lib/modules/dialog/components/pre-setting/electron.js +0 -51
- package/lib/modules/dialog/components/pre-setting/index.js +0 -38
- package/lib/modules/dialog/components/pre-setting-container/component/body.d.ts +0 -8
- package/lib/modules/dialog/components/pre-setting-container/component/body.js +0 -78
- package/lib/modules/dialog/components/pre-setting-container/index.css +0 -82
- package/lib/modules/dialog/components/pre-setting-container/index.d.ts +0 -18
- package/lib/modules/dialog/components/pre-setting-container/index.js +0 -116
- package/lib/modules/dialog/components/rename/index.js +0 -72
- package/lib/modules/dialog/dialogs.d.ts +0 -3
- package/lib/modules/dialog/dialogs.js +0 -28
- package/lib/utilities/setting-config-storage.d.ts +0 -18
- package/lib/utilities/setting-config-storage.js +0 -133
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/color-tool/color-panel/index.d.ts +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/color-tool/color-panel/index.js +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/color-tool/index.d.ts +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/color-tool/index.js +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/graphic-tool/graphic-panel/index.d.ts +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/graphic-tool/graphic-panel/index.js +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/graphic-tool/graphic-panel/libs.d.ts +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/graphic-tool/graphic-panel/libs.js +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/graphic-tool/index.d.ts +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/graphic-tool/index.js +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/item/item.d.ts +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/item/style.css +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/panel/index.d.ts +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/panel/index.js +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/panel/style.css +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/pen-tool/index.d.ts +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/pen-tool/index.js +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/pen-tool/pen-panel/index.d.ts +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/tips/index.d.ts +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/tips/index.js +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/components/tips/style.css +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/style.css +0 -0
- /package/lib/{modules/annotation/components → fragments/annotation}/toolbar/view.d.ts +0 -0
- /package/lib/modules/{action-bar/components → components}/apps/app-item/index.css +0 -0
- /package/lib/modules/{action-bar/components → components}/apps/app-item/index.js +0 -0
- /package/lib/modules/{action-bar/components → components}/apps/index.css +0 -0
- /package/lib/modules/dialog/{components → dialogs}/annotation-tool/index.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/confirm/index.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/confirm/index.js +0 -0
- /package/lib/modules/dialog/{components → dialogs}/connection-gateway/index.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/connection-gateway/tabs.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/connection-gateway/tabs.js +0 -0
- /package/lib/modules/dialog/{components → dialogs}/control-bar/index.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/device-setting/index.css +0 -0
- /package/lib/modules/dialog/{components → dialogs}/device-setting/index.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/interpreter/index.css +0 -0
- /package/lib/modules/dialog/{components → dialogs}/interpreter/index.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/pre-setting/index.css +0 -0
- /package/lib/modules/dialog/{components → dialogs}/pre-setting/index.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/rename/index.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/share-screen-selection/index.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/system-preference/assets/bg1.png +0 -0
- /package/lib/modules/dialog/{components → dialogs}/system-preference/assets/bg2.png +0 -0
- /package/lib/modules/dialog/{components → dialogs}/system-preference/assets/fcr_png_host.png +0 -0
- /package/lib/modules/dialog/{components → dialogs}/system-preference/electron.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/system-preference/electron.js +0 -0
- /package/lib/modules/dialog/{components → dialogs}/system-preference/index.css +0 -0
- /package/lib/modules/dialog/{components → dialogs}/system-preference/index.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/system-preference/index.js +0 -0
- /package/lib/modules/dialog/{components → dialogs}/toast/index.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/toast/index.js +0 -0
- /package/lib/modules/dialog/{components → dialogs}/video-window/index.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/whiteboard/index.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/widget/electron.d.ts +0 -0
- /package/lib/modules/dialog/{components → dialogs}/widget/index.d.ts +0 -0
|
@@ -210,7 +210,6 @@ export declare const enUs: {
|
|
|
210
210
|
fmt_actionbar_button_continue: string;
|
|
211
211
|
fmt_actionbar_option_connectaudio: string;
|
|
212
212
|
fmt_actionbar_label_dialsip: string;
|
|
213
|
-
fmt_actionbar_tips_hidenonvideo: string;
|
|
214
213
|
fmt_driver_installation_v_sound_card: string;
|
|
215
214
|
fmt_camera_popup_label_restricted: string;
|
|
216
215
|
fmt_camera_popup_label_system_change: string;
|
|
@@ -457,6 +456,10 @@ export declare const enUs: {
|
|
|
457
456
|
fmt_chat_small_bubble: string;
|
|
458
457
|
fmt_chat_label_enter_message: string;
|
|
459
458
|
fmt_chat_label_show_bubble_tips: string;
|
|
459
|
+
fmt_chat_label_am: string;
|
|
460
|
+
fmt_chat_label_pm: string;
|
|
461
|
+
fmt_chat_toast_select_more_error: string;
|
|
462
|
+
fmt_chat_toast_infraction_error: string;
|
|
460
463
|
fmt_screenshare_window_tab_basic: string;
|
|
461
464
|
fmt_screenshare_window_tab_advanced: string;
|
|
462
465
|
fmt_screenshare_window_button_start: string;
|
|
@@ -579,6 +582,10 @@ export declare const enUs: {
|
|
|
579
582
|
fmt_screenshare_controlbar_settings_label_annotation_controls: string;
|
|
580
583
|
fmt_screenshare_toast_annotation_controls_screen_sharing_disabled: string;
|
|
581
584
|
fmt_screenshare_tips_host_not_enabled_annotations: string;
|
|
585
|
+
fmt_screenshare_tips_share_pc_sound: string;
|
|
586
|
+
fmt_screenshare_tips_video_smoothness: string;
|
|
587
|
+
fmt_screenshare_button_share_icloud: string;
|
|
588
|
+
fmt_screenshare_button_stop_share_icloud: string;
|
|
582
589
|
fmt_screenshare_tips_unenabled: string;
|
|
583
590
|
fmt_screenshare_whiteboard_options_changetheme: string;
|
|
584
591
|
fmt_screenshare_tips_alreadyoriginalsize: string;
|
|
@@ -768,6 +775,11 @@ export declare const enUs: {
|
|
|
768
775
|
fmt_failure_popup_label_crash_tips: string;
|
|
769
776
|
fmt_failure_popup_button_close_app: string;
|
|
770
777
|
fmt_failure_popup_button_refresh: string;
|
|
778
|
+
fmt_qualitystatistics_label_video: string;
|
|
779
|
+
fmt_qualitystatistics_label_audio: string;
|
|
780
|
+
fmt_qualitystatistics_label_audio_bit: string;
|
|
781
|
+
fmt_qualitystatistics_label_audio_mic: string;
|
|
782
|
+
fmt_qualitystatistics_label_audio_speaker: string;
|
|
771
783
|
fmt_settings_option_setting: string;
|
|
772
784
|
fmt_settings_option_general: string;
|
|
773
785
|
fmt_settings_option_about_us: string;
|
|
@@ -908,8 +920,11 @@ export declare const enUs: {
|
|
|
908
920
|
fmt_internalsetting_labels_hide_my_video: string;
|
|
909
921
|
fmt_settings_labels_virtual_background: string;
|
|
910
922
|
fmt_settings_labels_prompt_tone: string;
|
|
923
|
+
fmt_settings_options_video_on: string;
|
|
924
|
+
fmt_settings_options_audio_on: string;
|
|
925
|
+
fmt_settings_general_label_dual_display: string;
|
|
926
|
+
fmt_settings_tips_dual_display: string;
|
|
911
927
|
fmt_meeting_setting_button_meeting_settings: string;
|
|
912
|
-
fmt_meeting_setting_labels_meeting_settings: string;
|
|
913
928
|
fmt_meeting_setting_labels_audio_video_settings: string;
|
|
914
929
|
fmt_meeting_setting_options_mute_participants: string;
|
|
915
930
|
fmt_meeting_setting_options_disable_video: string;
|
|
@@ -1174,6 +1189,7 @@ export declare const enUs: {
|
|
|
1174
1189
|
fmt_waitingroom_attendie_overview_label_no_messages: string;
|
|
1175
1190
|
fmt_waitingroom_put_in_success: string;
|
|
1176
1191
|
fmt_waitingroom_setting_tips_deactivate: string;
|
|
1192
|
+
fmt_waitingroom_setting_tips_enabled_waiting_room: string;
|
|
1177
1193
|
fmt_waitingroom_setting_tips_disable: string;
|
|
1178
1194
|
fmt_waitingroom_setting_tips_enable: string;
|
|
1179
1195
|
fmt_waitingroom_setting_tips_send_message_to_host: string;
|
|
@@ -1234,24 +1250,26 @@ export declare const enUs: {
|
|
|
1234
1250
|
fmt_ai_transcriptions_setting_option_noton: string;
|
|
1235
1251
|
fmt_ai_transcriptions_setting_option_english_translation: string;
|
|
1236
1252
|
fmt_ai_transcriptions_setting_option_translate: string;
|
|
1253
|
+
fmt_ai_subtitles_button_enable_caption: string;
|
|
1254
|
+
fmt_ai_subtitles_button_disable_caption: string;
|
|
1237
1255
|
fmt_ai_subtitles_setting_label_subtitle_setting: string;
|
|
1238
|
-
fmt_ai_subtitles_setting_label_caption_transcripts_setting: string;
|
|
1239
1256
|
fmt_ai_subtitles_setting_label_caption_transcripts: string;
|
|
1240
1257
|
fmt_ai_subtitles_setting_label_fontsize: string;
|
|
1241
|
-
|
|
1242
|
-
fmt_ai_subtitles_setting_label_sample_eng: string;
|
|
1258
|
+
fmt_ai_subtitles_setting_label_sample: string;
|
|
1243
1259
|
fmt_ai_subtitles_setting_label_translation_setting: string;
|
|
1244
1260
|
fmt_ai_subtitles_setting_label_effect_range: string;
|
|
1245
|
-
|
|
1261
|
+
fmt_ai_subtitles_setting_options_enable_translation: string;
|
|
1262
|
+
fmt_ai_subtitles_setting_options_not_translated: string;
|
|
1246
1263
|
fmt_ai_subtitles_setting_options_chinese: string;
|
|
1247
1264
|
fmt_ai_subtitles_setting_options_english: string;
|
|
1265
|
+
fmt_ai_subtitles_setting_options_japanese: string;
|
|
1248
1266
|
fmt_ai_subtitles_setting_options_subltitle_bilingual: string;
|
|
1249
1267
|
fmt_ai_subtitles_setting_options_translation_bilingual: string;
|
|
1250
1268
|
fmt_ai_subtitles_setting_options_translation_restore_default: string;
|
|
1251
1269
|
fmt_ai_subtitles_setting_options_view_translation: string;
|
|
1252
1270
|
fmt_ai_subtitles_setting_label_subtitle: string;
|
|
1253
1271
|
fmt_ai_subtitles_setting_label_source_language: string;
|
|
1254
|
-
|
|
1272
|
+
fmt_ai_subtitles_setting_label_translations_display: string;
|
|
1255
1273
|
fmt_ai_subtitles_setting_label_bilingual_display: string;
|
|
1256
1274
|
fmt_ai_subtitles_setting_label_hot_words: string;
|
|
1257
1275
|
fmt_ai_subtitles_setting_label_hot_words_add: string;
|
|
@@ -1271,6 +1289,38 @@ export declare const enUs: {
|
|
|
1271
1289
|
fmt_ai_subtitles_setting_label_listening_no_content: string;
|
|
1272
1290
|
fmt_ai_transcriptions_sidebar_button_stop_translation: string;
|
|
1273
1291
|
fmt_ai_transcriptions_sidebar_button_start_translation: string;
|
|
1292
|
+
fmt_ai_subtitles_toast_host_disabled_subtitles: string;
|
|
1293
|
+
fmt_ai_subtitles_toast_you_turned_off_subtitles: string;
|
|
1294
|
+
fmt_ai_subtitles_window_label_change_language: string;
|
|
1295
|
+
fmt_ai_subtitles_window_label_change_language_content: string;
|
|
1296
|
+
fmt_ai_subtitles_window_button_cancel: string;
|
|
1297
|
+
fmt_ai_subtitles_window_button_modify: string;
|
|
1298
|
+
fmt_ai_subtitles_toast_change_language_self: string;
|
|
1299
|
+
fmt_ai_subtitles_toast_stopped_transcription: string;
|
|
1300
|
+
fmt_ai_subtitles_toast_change_language_attendees: string;
|
|
1301
|
+
fmt_ai_subtitles_toast_started_transcription: string;
|
|
1302
|
+
fmt_ai_subtitles_label_started_transcription_self: string;
|
|
1303
|
+
fmt_ai_subtitles_label_stopped_transcription_self: string;
|
|
1304
|
+
fmt_ai_subtitles_window_label_request_enable_rtt: string;
|
|
1305
|
+
fmt_ai_subtitles_window_label_request_enable_rtt_content: string;
|
|
1306
|
+
fmt_ai_subtitles_window_button_send: string;
|
|
1307
|
+
fmt_ai_subtitles_toast_rtt_request_sent: string;
|
|
1308
|
+
fmt_ai_subtitles_toast_rtt_host_declined_request: string;
|
|
1309
|
+
fmt_ai_rtt_window_label_enable_request: string;
|
|
1310
|
+
fmt_ai_rtt_window_label_enable_request_content: string;
|
|
1311
|
+
fmt_ai_rtt_window_option_decline_all_request: string;
|
|
1312
|
+
fmt_ai_rtt_window_button_reject: string;
|
|
1313
|
+
fmt_ai_rtt_window_button_approve: string;
|
|
1314
|
+
fmt_ai_rtt_window_button_view: string;
|
|
1315
|
+
fmt_ai_subtitles_source_language_options_chinese: string;
|
|
1316
|
+
fmt_ai_subtitles_source_language_options_english: string;
|
|
1317
|
+
fmt_ai_subtitles_source_language_options_japanese: string;
|
|
1318
|
+
fmt_ai_rtt_window_label_converting_stt: string;
|
|
1319
|
+
fmt_ai_rtt_window_button_view_stt_content: string;
|
|
1320
|
+
fmt_ai_rtt_window_button_stop_stt: string;
|
|
1321
|
+
fmt_ai_rtt_toast_host_enabled_rtt: string;
|
|
1322
|
+
fmt_ai_subtitles_toast_host_enabled_captions: string;
|
|
1323
|
+
fmt_ai_rtt_tips_only_host_stop: string;
|
|
1274
1324
|
fmt_ai_summary_create_option_create_summary: string;
|
|
1275
1325
|
fmt_ai_summary_create_labels_meeting_list: string;
|
|
1276
1326
|
fmt_ai_summary_create_labels_valid_records: string;
|
|
@@ -1411,6 +1461,9 @@ export declare const enUs: {
|
|
|
1411
1461
|
fmt_security_mainwindow_label_toast_unmute_not_allow: string;
|
|
1412
1462
|
fmt_security_mainwindow_label_toast_name_change_not_allow: string;
|
|
1413
1463
|
fmt_security_mainwindow_label_interactive_annotations: string;
|
|
1464
|
+
fmt_security_mainwindow_option_start_stop_transcription: string;
|
|
1465
|
+
fmt_security_mainwindow_option_use_captions: string;
|
|
1466
|
+
fmt_security_mainwindow_option_change_language: string;
|
|
1414
1467
|
fmt_premeeting_setting_label_settings: string;
|
|
1415
1468
|
fmt_premeeting_setting_label_normal: string;
|
|
1416
1469
|
fmt_premeeting_setting_label_voice_motivation: string;
|
|
@@ -1944,4 +1997,6 @@ export declare const enUs: {
|
|
|
1944
1997
|
fmt_jbh_title_host_not_in_meeting: string;
|
|
1945
1998
|
fmt_jbh_title_host_in_meeting: string;
|
|
1946
1999
|
fmt_jbh_title_meeting_topic: string;
|
|
2000
|
+
fmt_apps_button_automatic_screenshot: string;
|
|
2001
|
+
fmt_webinar_tips_welcome_greetings: string;
|
|
1947
2002
|
};
|
package/lib/translations/enUS.js
CHANGED
|
@@ -219,7 +219,6 @@ var enUs = exports.enUs = {
|
|
|
219
219
|
fmt_actionbar_button_continue: 'Continue',
|
|
220
220
|
fmt_actionbar_option_connectaudio: 'Connect your audio',
|
|
221
221
|
fmt_actionbar_label_dialsip: 'Dial H.323/SIP Room System',
|
|
222
|
-
fmt_actionbar_tips_hidenonvideo: 'You have enabled the "Hide non-video window function", and the fixed window does not take effect',
|
|
223
222
|
fmt_driver_installation_v_sound_card: 'The audio driver has been installed and will take effect after restarting flexible meeting',
|
|
224
223
|
fmt_camera_popup_label_restricted: 'Camera privileges are restricted',
|
|
225
224
|
fmt_camera_popup_label_system_change: 'Please go to system settings to change camera privileges',
|
|
@@ -231,8 +230,8 @@ var enUs = exports.enUs = {
|
|
|
231
230
|
fmt_audio_popup_button_cancel: 'Cancel',
|
|
232
231
|
fmt_popup_copywrite_stopstreamingnow: 'Are you sure to stop the live broadcast now?',
|
|
233
232
|
fmt_popup_options_confirmstop: 'Confirm to stop live streaming',
|
|
234
|
-
fmt_popup_options_placedbottom: 'Move to Bottom
|
|
235
|
-
fmt_popup_options_placedtop: '
|
|
233
|
+
fmt_popup_options_placedbottom: 'Move to Bottom',
|
|
234
|
+
fmt_popup_options_placedtop: 'Move to Top',
|
|
236
235
|
fmt_broadcast_tips_righturl: 'Please enter the correct live streaming page address',
|
|
237
236
|
fmt_broadcast_tips_anyonewatch: 'Anyone who uses this link can watch the live broadcast',
|
|
238
237
|
fmt_broadcast_tips_streamingwebpage: 'Please enter the URL of the live streaming webpage',
|
|
@@ -468,6 +467,10 @@ var enUs = exports.enUs = {
|
|
|
468
467
|
fmt_chat_small_bubble: 'Small Bubble',
|
|
469
468
|
fmt_chat_label_enter_message: 'Enter a message ',
|
|
470
469
|
fmt_chat_label_show_bubble_tips: 'Bubble Tips',
|
|
470
|
+
fmt_chat_label_am: 'AM',
|
|
471
|
+
fmt_chat_label_pm: 'PM',
|
|
472
|
+
fmt_chat_toast_select_more_error: 'Maximum 50 chat records can be selected.',
|
|
473
|
+
fmt_chat_toast_infraction_error: 'Your message violates our policies and cannot be sent.',
|
|
471
474
|
fmt_screenshare_window_tab_basic: 'Basics',
|
|
472
475
|
fmt_screenshare_window_tab_advanced: 'Senior',
|
|
473
476
|
fmt_screenshare_window_button_start: 'Start sharing',
|
|
@@ -590,6 +593,10 @@ var enUs = exports.enUs = {
|
|
|
590
593
|
fmt_screenshare_controlbar_settings_label_annotation_controls: 'Interactive Annotation Controls',
|
|
591
594
|
fmt_screenshare_toast_annotation_controls_screen_sharing_disabled: 'Screen sharing has been turned off',
|
|
592
595
|
fmt_screenshare_tips_host_not_enabled_annotations: 'The host or presenter has not enabled the interactive annotation',
|
|
596
|
+
fmt_screenshare_tips_share_pc_sound: 'PC sound will be shared when you share your screen.',
|
|
597
|
+
fmt_screenshare_tips_video_smoothness: 'Prioritize video smoothness by reducing CPU usage and optimizing screen sharing frame rate.',
|
|
598
|
+
fmt_screenshare_button_share_icloud: 'Share files with iCloud file',
|
|
599
|
+
fmt_screenshare_button_stop_share_icloud: 'Stop iCloud file sharing',
|
|
593
600
|
fmt_screenshare_tips_unenabled: 'The conference administrator has not enabled the whiteboard editing function',
|
|
594
601
|
fmt_screenshare_whiteboard_options_changetheme: 'Change whiteboard theme',
|
|
595
602
|
fmt_screenshare_tips_alreadyoriginalsize: "It is already 'original size'",
|
|
@@ -788,6 +795,11 @@ var enUs = exports.enUs = {
|
|
|
788
795
|
fmt_failure_popup_label_crash_tips: 'The app is crashing, please close the app and try again.',
|
|
789
796
|
fmt_failure_popup_button_close_app: 'Close the app',
|
|
790
797
|
fmt_failure_popup_button_refresh: 'Refresh',
|
|
798
|
+
fmt_qualitystatistics_label_video: 'Video',
|
|
799
|
+
fmt_qualitystatistics_label_audio: 'Audio',
|
|
800
|
+
fmt_qualitystatistics_label_audio_bit: 'Bitrate',
|
|
801
|
+
fmt_qualitystatistics_label_audio_mic: 'Mic',
|
|
802
|
+
fmt_qualitystatistics_label_audio_speaker: 'Speaker',
|
|
791
803
|
//****************** 设置 ******************
|
|
792
804
|
fmt_settings_option_setting: 'Setting',
|
|
793
805
|
fmt_settings_option_general: 'General',
|
|
@@ -929,9 +941,12 @@ var enUs = exports.enUs = {
|
|
|
929
941
|
fmt_internalsetting_labels_hide_my_video: 'After checking this option, you will not see your own view during the meeting (others will still be able to see your view).',
|
|
930
942
|
fmt_settings_labels_virtual_background: 'Virtual Background',
|
|
931
943
|
fmt_settings_labels_prompt_tone: 'prompt tone',
|
|
944
|
+
fmt_settings_options_video_on: 'Turn on Video',
|
|
945
|
+
fmt_settings_options_audio_on: 'Turn on Audio',
|
|
946
|
+
fmt_settings_general_label_dual_display: 'Enable dual display mode',
|
|
947
|
+
fmt_settings_tips_dual_display: 'Distribute meeting videos and shared content across multiple displays',
|
|
932
948
|
//****************** 会控设置 ******************
|
|
933
949
|
fmt_meeting_setting_button_meeting_settings: 'Meeting settings',
|
|
934
|
-
fmt_meeting_setting_labels_meeting_settings: 'Meeting settings',
|
|
935
950
|
fmt_meeting_setting_labels_audio_video_settings: 'Audio and Video Settings (when joining a meeting)',
|
|
936
951
|
fmt_meeting_setting_options_mute_participants: 'Mute participants upon entry',
|
|
937
952
|
fmt_meeting_setting_options_disable_video: 'Disable video for attendees upon entry',
|
|
@@ -1198,7 +1213,8 @@ var enUs = exports.enUs = {
|
|
|
1198
1213
|
fmt_waitingroom_attendie_overview_label_attendees: 'Attendees in the waiting room',
|
|
1199
1214
|
fmt_waitingroom_attendie_overview_label_no_messages: 'No message',
|
|
1200
1215
|
fmt_waitingroom_put_in_success: '{reason1} has been moved to the waiting room.',
|
|
1201
|
-
fmt_waitingroom_setting_tips_deactivate: '{reason1}
|
|
1216
|
+
fmt_waitingroom_setting_tips_deactivate: '{reason1} has disabled the waiting room',
|
|
1217
|
+
fmt_waitingroom_setting_tips_enabled_waiting_room: '{reason1} has enabled the waiting room',
|
|
1202
1218
|
fmt_waitingroom_setting_tips_disable: "You've disabled the Waiting Room",
|
|
1203
1219
|
fmt_waitingroom_setting_tips_enable: "You've enabled the Waiting Room",
|
|
1204
1220
|
fmt_waitingroom_setting_tips_send_message_to_host: 'You can click here to send a message to the host.',
|
|
@@ -1259,25 +1275,27 @@ var enUs = exports.enUs = {
|
|
|
1259
1275
|
fmt_ai_transcriptions_setting_option_noton: 'Do not turn on',
|
|
1260
1276
|
fmt_ai_transcriptions_setting_option_english_translation: 'English to Chines',
|
|
1261
1277
|
fmt_ai_transcriptions_setting_option_translate: 'Chinese to English',
|
|
1278
|
+
fmt_ai_subtitles_button_enable_caption: 'Enable Caption',
|
|
1279
|
+
fmt_ai_subtitles_button_disable_caption: 'Disable Caption',
|
|
1262
1280
|
fmt_ai_subtitles_setting_label_subtitle_setting: 'Subtitle settings',
|
|
1263
|
-
fmt_ai_subtitles_setting_label_caption_transcripts_setting: 'Captions & Transcripts Settings',
|
|
1264
1281
|
fmt_ai_subtitles_setting_label_caption_transcripts: 'Captions & Transcripts',
|
|
1265
1282
|
fmt_ai_subtitles_setting_label_fontsize: 'Font size',
|
|
1266
|
-
|
|
1267
|
-
fmt_ai_subtitles_setting_label_sample_eng: 'Example of subtitle text size',
|
|
1283
|
+
fmt_ai_subtitles_setting_label_sample: 'Example of subtitle text size',
|
|
1268
1284
|
fmt_ai_subtitles_setting_label_translation_setting: 'Translation settings',
|
|
1269
1285
|
fmt_ai_subtitles_setting_label_effect_range: 'It takes effect for transcriptions and transcriptions, the translated content will only be visible to you.Only Chinese and English translations are supported',
|
|
1270
|
-
|
|
1271
|
-
|
|
1286
|
+
fmt_ai_subtitles_setting_options_enable_translation: 'Enable translation',
|
|
1287
|
+
fmt_ai_subtitles_setting_options_not_translated: 'Original Text(Not Translated)',
|
|
1288
|
+
fmt_ai_subtitles_setting_options_chinese: '简体中文',
|
|
1272
1289
|
fmt_ai_subtitles_setting_options_english: 'English',
|
|
1290
|
+
fmt_ai_subtitles_setting_options_japanese: '日本語',
|
|
1273
1291
|
fmt_ai_subtitles_setting_options_subltitle_bilingual: 'Subtitles are bilingual at the same time',
|
|
1274
1292
|
fmt_ai_subtitles_setting_options_translation_bilingual: 'The transcription shows bilingual at the same time',
|
|
1275
1293
|
fmt_ai_subtitles_setting_options_translation_restore_default: 'Restore the default font size',
|
|
1276
|
-
fmt_ai_subtitles_setting_options_view_translation: 'View
|
|
1294
|
+
fmt_ai_subtitles_setting_options_view_translation: 'View transcriptions',
|
|
1277
1295
|
fmt_ai_subtitles_setting_label_subtitle: 'Subtitle',
|
|
1278
1296
|
fmt_ai_subtitles_setting_label_source_language: 'Source language',
|
|
1279
|
-
|
|
1280
|
-
fmt_ai_subtitles_setting_label_bilingual_display: '
|
|
1297
|
+
fmt_ai_subtitles_setting_label_translations_display: 'Translations Display',
|
|
1298
|
+
fmt_ai_subtitles_setting_label_bilingual_display: 'Bilingual Mode',
|
|
1281
1299
|
fmt_ai_subtitles_setting_label_hot_words: 'Personal hot words',
|
|
1282
1300
|
fmt_ai_subtitles_setting_label_hot_words_add: 'Add your own hot words to improve the accuracy of speech-to-text.You can enter up to 50 hot words',
|
|
1283
1301
|
fmt_ai_subtitles_setting_button_button: 'Button',
|
|
@@ -1296,6 +1314,38 @@ var enUs = exports.enUs = {
|
|
|
1296
1314
|
fmt_ai_subtitles_setting_label_listening_no_content: 'No content yet',
|
|
1297
1315
|
fmt_ai_transcriptions_sidebar_button_stop_translation: 'Stop transcribing',
|
|
1298
1316
|
fmt_ai_transcriptions_sidebar_button_start_translation: 'Start transcribing',
|
|
1317
|
+
fmt_ai_subtitles_toast_host_disabled_subtitles: 'The host has disabled subtitles permissions.',
|
|
1318
|
+
fmt_ai_subtitles_toast_you_turned_off_subtitles: 'You have turned off subtitles',
|
|
1319
|
+
fmt_ai_subtitles_window_label_change_language: 'Change source language',
|
|
1320
|
+
fmt_ai_subtitles_window_label_change_language_content: "Changing the source language to '{reason1}' for this meeting will update all attendees' captions and transcripts.",
|
|
1321
|
+
fmt_ai_subtitles_window_button_cancel: 'Cancel',
|
|
1322
|
+
fmt_ai_subtitles_window_button_modify: 'Modify',
|
|
1323
|
+
fmt_ai_subtitles_toast_change_language_self: "You have changed the source language for captions and transcripts to '{reason1}'.",
|
|
1324
|
+
fmt_ai_subtitles_toast_stopped_transcription: '{reason1} has stopped real-time transcription',
|
|
1325
|
+
fmt_ai_subtitles_toast_change_language_attendees: "{reason1} has changed the source language to '{reason2}'.",
|
|
1326
|
+
fmt_ai_subtitles_toast_started_transcription: '{reason1} has started real-time transcription',
|
|
1327
|
+
fmt_ai_subtitles_label_started_transcription_self: 'You have stopped real-time transcription',
|
|
1328
|
+
fmt_ai_subtitles_label_stopped_transcription_self: 'You have started real-time transcription',
|
|
1329
|
+
fmt_ai_subtitles_window_label_request_enable_rtt: 'Request host to enable real-time transcription',
|
|
1330
|
+
fmt_ai_subtitles_window_label_request_enable_rtt_content: 'Once enabled, meeting dialogues will be transcribed into text, accessible to all participants.',
|
|
1331
|
+
fmt_ai_subtitles_window_button_send: 'Send Request',
|
|
1332
|
+
fmt_ai_subtitles_toast_rtt_request_sent: 'Request Sent',
|
|
1333
|
+
fmt_ai_subtitles_toast_rtt_host_declined_request: 'Host declined your real-time transcription request.',
|
|
1334
|
+
fmt_ai_rtt_window_label_enable_request: 'Real-time transcription request',
|
|
1335
|
+
fmt_ai_rtt_window_label_enable_request_content: '{reason1} requested real-time transcription for the meeting. Once enabled, all participants can access the transcribed content.',
|
|
1336
|
+
fmt_ai_rtt_window_option_decline_all_request: 'Decline all future real-time transcription requests',
|
|
1337
|
+
fmt_ai_rtt_window_button_reject: 'Reject',
|
|
1338
|
+
fmt_ai_rtt_window_button_approve: 'Approve',
|
|
1339
|
+
fmt_ai_rtt_window_button_view: 'View',
|
|
1340
|
+
fmt_ai_subtitles_source_language_options_chinese: 'Chinese',
|
|
1341
|
+
fmt_ai_subtitles_source_language_options_english: 'English',
|
|
1342
|
+
fmt_ai_subtitles_source_language_options_japanese: 'Japanese',
|
|
1343
|
+
fmt_ai_rtt_window_label_converting_stt: 'Converting meeting speech to text',
|
|
1344
|
+
fmt_ai_rtt_window_button_view_stt_content: 'View',
|
|
1345
|
+
fmt_ai_rtt_window_button_stop_stt: 'Stop',
|
|
1346
|
+
fmt_ai_rtt_toast_host_enabled_rtt: 'The host has enabled access to real-time transcription.',
|
|
1347
|
+
fmt_ai_subtitles_toast_host_enabled_captions: 'The host has enabled access to captions.',
|
|
1348
|
+
fmt_ai_rtt_tips_only_host_stop: 'Only the host can stop',
|
|
1299
1349
|
//****************** AI会议纪要 ******************
|
|
1300
1350
|
fmt_ai_summary_create_option_create_summary: 'Create meeting summary for the meeting',
|
|
1301
1351
|
fmt_ai_summary_create_labels_meeting_list: 'List of meetings',
|
|
@@ -1442,6 +1492,9 @@ var enUs = exports.enUs = {
|
|
|
1442
1492
|
fmt_security_mainwindow_label_toast_unmute_not_allow: 'Hosts/co-hosts not allowed to unmute themselves',
|
|
1443
1493
|
fmt_security_mainwindow_label_toast_name_change_not_allow: 'Hosts/co-hosts are not allowed to change their own name',
|
|
1444
1494
|
fmt_security_mainwindow_label_interactive_annotations: 'Allow interactive annotations',
|
|
1495
|
+
fmt_security_mainwindow_option_start_stop_transcription: 'Start and stop transcription',
|
|
1496
|
+
fmt_security_mainwindow_option_use_captions: 'Use captions',
|
|
1497
|
+
fmt_security_mainwindow_option_change_language: 'Change source language',
|
|
1445
1498
|
//****************** 设置 ******************
|
|
1446
1499
|
fmt_premeeting_setting_label_settings: 'Setting',
|
|
1447
1500
|
fmt_premeeting_setting_label_normal: 'Normal',
|
|
@@ -1987,5 +2040,9 @@ var enUs = exports.enUs = {
|
|
|
1987
2040
|
//****************** JBH ******************
|
|
1988
2041
|
fmt_jbh_title_host_not_in_meeting: 'The meeting has not started yet',
|
|
1989
2042
|
fmt_jbh_title_host_in_meeting: 'Please wait.The host will let you into the meeting soon.',
|
|
1990
|
-
fmt_jbh_title_meeting_topic: 'Meeting Topic'
|
|
2043
|
+
fmt_jbh_title_meeting_topic: 'Meeting Topic',
|
|
2044
|
+
//****************** APPS ******************
|
|
2045
|
+
fmt_apps_button_automatic_screenshot: 'Automatic screenshot',
|
|
2046
|
+
//****************** Webinar ******************
|
|
2047
|
+
fmt_webinar_tips_welcome_greetings: '{英文欢迎语} '
|
|
1991
2048
|
};
|
|
@@ -210,7 +210,6 @@ export declare const zhCn: {
|
|
|
210
210
|
fmt_actionbar_button_continue: string;
|
|
211
211
|
fmt_actionbar_option_connectaudio: string;
|
|
212
212
|
fmt_actionbar_label_dialsip: string;
|
|
213
|
-
fmt_actionbar_tips_hidenonvideo: string;
|
|
214
213
|
fmt_driver_installation_v_sound_card: string;
|
|
215
214
|
fmt_camera_popup_label_restricted: string;
|
|
216
215
|
fmt_camera_popup_label_system_change: string;
|
|
@@ -457,6 +456,10 @@ export declare const zhCn: {
|
|
|
457
456
|
fmt_chat_small_bubble: string;
|
|
458
457
|
fmt_chat_label_enter_message: string;
|
|
459
458
|
fmt_chat_label_show_bubble_tips: string;
|
|
459
|
+
fmt_chat_label_am: string;
|
|
460
|
+
fmt_chat_label_pm: string;
|
|
461
|
+
fmt_chat_toast_select_more_error: string;
|
|
462
|
+
fmt_chat_toast_infraction_error: string;
|
|
460
463
|
fmt_screenshare_window_tab_basic: string;
|
|
461
464
|
fmt_screenshare_window_tab_advanced: string;
|
|
462
465
|
fmt_screenshare_window_button_start: string;
|
|
@@ -579,6 +582,10 @@ export declare const zhCn: {
|
|
|
579
582
|
fmt_screenshare_controlbar_settings_label_annotation_controls: string;
|
|
580
583
|
fmt_screenshare_toast_annotation_controls_screen_sharing_disabled: string;
|
|
581
584
|
fmt_screenshare_tips_host_not_enabled_annotations: string;
|
|
585
|
+
fmt_screenshare_tips_share_pc_sound: string;
|
|
586
|
+
fmt_screenshare_tips_video_smoothness: string;
|
|
587
|
+
fmt_screenshare_button_share_icloud: string;
|
|
588
|
+
fmt_screenshare_button_stop_share_icloud: string;
|
|
582
589
|
fmt_screenshare_tips_unenabled: string;
|
|
583
590
|
fmt_screenshare_whiteboard_options_changetheme: string;
|
|
584
591
|
fmt_screenshare_tips_alreadyoriginalsize: string;
|
|
@@ -768,6 +775,11 @@ export declare const zhCn: {
|
|
|
768
775
|
fmt_failure_popup_label_crash_tips: string;
|
|
769
776
|
fmt_failure_popup_button_close_app: string;
|
|
770
777
|
fmt_failure_popup_button_refresh: string;
|
|
778
|
+
fmt_qualitystatistics_label_video: string;
|
|
779
|
+
fmt_qualitystatistics_label_audio: string;
|
|
780
|
+
fmt_qualitystatistics_label_audio_bit: string;
|
|
781
|
+
fmt_qualitystatistics_label_audio_mic: string;
|
|
782
|
+
fmt_qualitystatistics_label_audio_speaker: string;
|
|
771
783
|
fmt_settings_option_setting: string;
|
|
772
784
|
fmt_settings_option_general: string;
|
|
773
785
|
fmt_settings_option_about_us: string;
|
|
@@ -908,8 +920,11 @@ export declare const zhCn: {
|
|
|
908
920
|
fmt_internalsetting_labels_hide_my_video: string;
|
|
909
921
|
fmt_settings_labels_virtual_background: string;
|
|
910
922
|
fmt_settings_labels_prompt_tone: string;
|
|
923
|
+
fmt_settings_options_video_on: string;
|
|
924
|
+
fmt_settings_options_audio_on: string;
|
|
925
|
+
fmt_settings_general_label_dual_display: string;
|
|
926
|
+
fmt_settings_tips_dual_display: string;
|
|
911
927
|
fmt_meeting_setting_button_meeting_settings: string;
|
|
912
|
-
fmt_meeting_setting_labels_meeting_settings: string;
|
|
913
928
|
fmt_meeting_setting_labels_audio_video_settings: string;
|
|
914
929
|
fmt_meeting_setting_options_mute_participants: string;
|
|
915
930
|
fmt_meeting_setting_options_disable_video: string;
|
|
@@ -1174,6 +1189,7 @@ export declare const zhCn: {
|
|
|
1174
1189
|
fmt_waitingroom_attendie_overview_label_no_messages: string;
|
|
1175
1190
|
fmt_waitingroom_put_in_success: string;
|
|
1176
1191
|
fmt_waitingroom_setting_tips_deactivate: string;
|
|
1192
|
+
fmt_waitingroom_setting_tips_enabled_waiting_room: string;
|
|
1177
1193
|
fmt_waitingroom_setting_tips_disable: string;
|
|
1178
1194
|
fmt_waitingroom_setting_tips_enable: string;
|
|
1179
1195
|
fmt_waitingroom_setting_tips_send_message_to_host: string;
|
|
@@ -1234,24 +1250,26 @@ export declare const zhCn: {
|
|
|
1234
1250
|
fmt_ai_transcriptions_setting_option_noton: string;
|
|
1235
1251
|
fmt_ai_transcriptions_setting_option_english_translation: string;
|
|
1236
1252
|
fmt_ai_transcriptions_setting_option_translate: string;
|
|
1253
|
+
fmt_ai_subtitles_button_enable_caption: string;
|
|
1254
|
+
fmt_ai_subtitles_button_disable_caption: string;
|
|
1237
1255
|
fmt_ai_subtitles_setting_label_subtitle_setting: string;
|
|
1238
|
-
fmt_ai_subtitles_setting_label_caption_transcripts_setting: string;
|
|
1239
1256
|
fmt_ai_subtitles_setting_label_caption_transcripts: string;
|
|
1240
1257
|
fmt_ai_subtitles_setting_label_fontsize: string;
|
|
1241
|
-
|
|
1242
|
-
fmt_ai_subtitles_setting_label_sample_eng: string;
|
|
1258
|
+
fmt_ai_subtitles_setting_label_sample: string;
|
|
1243
1259
|
fmt_ai_subtitles_setting_label_translation_setting: string;
|
|
1244
1260
|
fmt_ai_subtitles_setting_label_effect_range: string;
|
|
1245
|
-
|
|
1261
|
+
fmt_ai_subtitles_setting_options_enable_translation: string;
|
|
1262
|
+
fmt_ai_subtitles_setting_options_not_translated: string;
|
|
1246
1263
|
fmt_ai_subtitles_setting_options_chinese: string;
|
|
1247
1264
|
fmt_ai_subtitles_setting_options_english: string;
|
|
1265
|
+
fmt_ai_subtitles_setting_options_japanese: string;
|
|
1248
1266
|
fmt_ai_subtitles_setting_options_subltitle_bilingual: string;
|
|
1249
1267
|
fmt_ai_subtitles_setting_options_translation_bilingual: string;
|
|
1250
1268
|
fmt_ai_subtitles_setting_options_translation_restore_default: string;
|
|
1251
1269
|
fmt_ai_subtitles_setting_options_view_translation: string;
|
|
1252
1270
|
fmt_ai_subtitles_setting_label_subtitle: string;
|
|
1253
1271
|
fmt_ai_subtitles_setting_label_source_language: string;
|
|
1254
|
-
|
|
1272
|
+
fmt_ai_subtitles_setting_label_translations_display: string;
|
|
1255
1273
|
fmt_ai_subtitles_setting_label_bilingual_display: string;
|
|
1256
1274
|
fmt_ai_subtitles_setting_label_hot_words: string;
|
|
1257
1275
|
fmt_ai_subtitles_setting_label_hot_words_add: string;
|
|
@@ -1271,6 +1289,38 @@ export declare const zhCn: {
|
|
|
1271
1289
|
fmt_ai_subtitles_setting_label_listening_no_content: string;
|
|
1272
1290
|
fmt_ai_transcriptions_sidebar_button_stop_translation: string;
|
|
1273
1291
|
fmt_ai_transcriptions_sidebar_button_start_translation: string;
|
|
1292
|
+
fmt_ai_subtitles_toast_host_disabled_subtitles: string;
|
|
1293
|
+
fmt_ai_subtitles_toast_you_turned_off_subtitles: string;
|
|
1294
|
+
fmt_ai_subtitles_window_label_change_language: string;
|
|
1295
|
+
fmt_ai_subtitles_window_label_change_language_content: string;
|
|
1296
|
+
fmt_ai_subtitles_window_button_cancel: string;
|
|
1297
|
+
fmt_ai_subtitles_window_button_modify: string;
|
|
1298
|
+
fmt_ai_subtitles_toast_change_language_self: string;
|
|
1299
|
+
fmt_ai_subtitles_toast_stopped_transcription: string;
|
|
1300
|
+
fmt_ai_subtitles_toast_change_language_attendees: string;
|
|
1301
|
+
fmt_ai_subtitles_toast_started_transcription: string;
|
|
1302
|
+
fmt_ai_subtitles_label_started_transcription_self: string;
|
|
1303
|
+
fmt_ai_subtitles_label_stopped_transcription_self: string;
|
|
1304
|
+
fmt_ai_subtitles_window_label_request_enable_rtt: string;
|
|
1305
|
+
fmt_ai_subtitles_window_label_request_enable_rtt_content: string;
|
|
1306
|
+
fmt_ai_subtitles_window_button_send: string;
|
|
1307
|
+
fmt_ai_subtitles_toast_rtt_request_sent: string;
|
|
1308
|
+
fmt_ai_subtitles_toast_rtt_host_declined_request: string;
|
|
1309
|
+
fmt_ai_rtt_window_label_enable_request: string;
|
|
1310
|
+
fmt_ai_rtt_window_label_enable_request_content: string;
|
|
1311
|
+
fmt_ai_rtt_window_option_decline_all_request: string;
|
|
1312
|
+
fmt_ai_rtt_window_button_reject: string;
|
|
1313
|
+
fmt_ai_rtt_window_button_approve: string;
|
|
1314
|
+
fmt_ai_rtt_window_button_view: string;
|
|
1315
|
+
fmt_ai_subtitles_source_language_options_chinese: string;
|
|
1316
|
+
fmt_ai_subtitles_source_language_options_english: string;
|
|
1317
|
+
fmt_ai_subtitles_source_language_options_japanese: string;
|
|
1318
|
+
fmt_ai_rtt_window_label_converting_stt: string;
|
|
1319
|
+
fmt_ai_rtt_window_button_view_stt_content: string;
|
|
1320
|
+
fmt_ai_rtt_window_button_stop_stt: string;
|
|
1321
|
+
fmt_ai_rtt_toast_host_enabled_rtt: string;
|
|
1322
|
+
fmt_ai_subtitles_toast_host_enabled_captions: string;
|
|
1323
|
+
fmt_ai_rtt_tips_only_host_stop: string;
|
|
1274
1324
|
fmt_ai_summary_create_option_create_summary: string;
|
|
1275
1325
|
fmt_ai_summary_create_labels_meeting_list: string;
|
|
1276
1326
|
fmt_ai_summary_create_labels_valid_records: string;
|
|
@@ -1411,6 +1461,9 @@ export declare const zhCn: {
|
|
|
1411
1461
|
fmt_security_mainwindow_label_toast_unmute_not_allow: string;
|
|
1412
1462
|
fmt_security_mainwindow_label_toast_name_change_not_allow: string;
|
|
1413
1463
|
fmt_security_mainwindow_label_interactive_annotations: string;
|
|
1464
|
+
fmt_security_mainwindow_option_start_stop_transcription: string;
|
|
1465
|
+
fmt_security_mainwindow_option_use_captions: string;
|
|
1466
|
+
fmt_security_mainwindow_option_change_language: string;
|
|
1414
1467
|
fmt_premeeting_setting_label_settings: string;
|
|
1415
1468
|
fmt_premeeting_setting_label_normal: string;
|
|
1416
1469
|
fmt_premeeting_setting_label_voice_motivation: string;
|
|
@@ -1942,4 +1995,6 @@ export declare const zhCn: {
|
|
|
1942
1995
|
fmt_jbh_title_host_not_in_meeting: string;
|
|
1943
1996
|
fmt_jbh_title_host_in_meeting: string;
|
|
1944
1997
|
fmt_jbh_title_meeting_topic: string;
|
|
1998
|
+
fmt_apps_button_automatic_screenshot: string;
|
|
1999
|
+
fmt_webinar_tips_welcome_greetings: string;
|
|
1945
2000
|
};
|