fcr-ui-scene 3.1.1 → 3.3.0
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/installer/icons/favicon.ico +0 -0
- package/installer/icons/favicon.png +0 -0
- package/installer/mac/entitlements.mac.plist +16 -0
- package/lib/base.d.ts +0 -1
- package/lib/base.js +16 -0
- package/lib/common/device-store.d.ts +4 -5
- package/lib/common/device-store.js +178 -86
- package/lib/common/device-stream-store.d.ts +3 -2
- package/lib/common/device-stream-store.js +94 -72
- package/lib/common/event-store.d.ts +20 -3
- package/lib/common/event-store.js +43 -5
- package/lib/common/security-store.d.ts +16 -16
- package/lib/common/security-store.js +278 -124
- package/lib/electron/app.js +13 -5
- package/lib/electron/bootstrap-dev.d.ts +1 -0
- package/lib/electron/bootstrap-dev.js +51 -0
- package/lib/electron/bootstrap-sdk.d.ts +1 -0
- package/lib/electron/bootstrap-sdk.js +56 -0
- package/lib/electron/bootstrap.d.ts +1 -0
- package/lib/electron/bootstrap.js +56 -0
- package/lib/electron/default-options.js +1 -1
- package/lib/electron/dev.d.ts +1 -0
- package/lib/electron/dev.js +51 -0
- package/lib/electron/injections.d.ts +3 -4
- package/lib/electron/injections.js +46 -33
- package/lib/electron/logger.d.ts +6 -0
- package/lib/electron/logger.js +66 -0
- package/lib/electron/main.js +15 -11
- package/lib/electron/plugins/meeting-state.d.ts +2 -0
- package/lib/electron/plugins/meeting-state.js +39 -0
- package/lib/electron/preload.js +2 -1
- package/lib/electron/tools.js +9 -0
- package/lib/electron/window.d.ts +1 -1
- package/lib/electron/window.js +14 -2
- package/lib/fragments/control-bar/context.d.ts +0 -1
- package/lib/fragments/control-bar/control-bar-store.d.ts +34 -1
- package/lib/fragments/control-bar/control-bar-store.js +394 -81
- package/lib/fragments/control-bar/device/index.js +12 -3
- package/lib/fragments/control-bar/index.css +15 -10
- package/lib/fragments/control-bar/index.js +19 -1
- package/lib/fragments/control-bar/meeting-details/meeting-detail.css +109 -0
- package/lib/fragments/control-bar/meeting-details/meeting-details-portal.d.ts +3 -0
- package/lib/fragments/control-bar/meeting-details/meeting-details-portal.js +60 -0
- package/lib/fragments/control-bar/meeting-details/meeting-details.d.ts +2 -0
- package/lib/fragments/control-bar/meeting-details/meeting-details.js +179 -0
- package/lib/fragments/control-bar/more-actions/index.css +53 -0
- package/lib/fragments/control-bar/more-actions/index.js +77 -37
- package/lib/fragments/control-bar/security-content/index.css +10 -0
- package/lib/fragments/control-bar/security-content/index.js +43 -18
- package/lib/fragments/control-bar/view.js +8 -2
- package/lib/fragments/live-streaming/context.d.ts +0 -1
- package/lib/fragments/live-streaming/store.js +27 -17
- package/lib/fragments/share-screen-selection/context.d.ts +0 -1
- package/lib/fragments/share-screen-selection/selection-store.d.ts +0 -1
- package/lib/fragments/share-screen-selection/selection-store.js +34 -33
- package/lib/fragments/share-screen-selection/view.js +7 -0
- package/lib/fragments/toolbar/components/color-picker/components/color.js +2 -0
- package/lib/fragments/toolbar/components/color-picker/components/panel.js +4 -0
- package/lib/fragments/toolbar/components/color-picker/components/picker.js +2 -0
- package/lib/fragments/toolbar/components/color-picker/index.js +5 -1
- package/lib/fragments/toolbar/components/color-picker.js +3 -1
- package/lib/fragments/toolbar/components/eraser-picker.js +4 -13
- package/lib/fragments/toolbar/components/extension-toolbar-item.js +5 -0
- package/lib/fragments/toolbar/components/extra-tool-picker.js +4 -0
- package/lib/fragments/toolbar/components/pen-picker.js +2 -0
- package/lib/fragments/toolbar/components/screen-capture-picker.js +2 -0
- package/lib/fragments/toolbar/components/shape-picker.js +2 -0
- package/lib/fragments/toolbar/hooks.d.ts +1 -1
- package/lib/fragments/toolbar/hooks.js +13 -8
- package/lib/fragments/toolbar/store.d.ts +4 -4
- package/lib/fragments/toolbar/store.js +20 -2
- package/lib/fragments/toolbar/view.js +2 -0
- package/lib/global.d.ts +1 -0
- package/lib/hooks/meeting-time.d.ts +2 -2
- package/lib/login-confirm-dialog.d.ts +12 -0
- package/lib/login-confirm-dialog.js +80 -0
- package/lib/modules/action-bar/action-bar-collapes-items.js +14 -5
- package/lib/modules/action-bar/chat/index.js +6 -6
- package/lib/modules/action-bar/context.d.ts +0 -1
- package/lib/modules/action-bar/device/index.css +7 -2
- package/lib/modules/action-bar/device/index.d.ts +2 -2
- package/lib/modules/action-bar/device/index.js +6 -4
- package/lib/modules/action-bar/index.css +63 -12
- package/lib/modules/action-bar/index.d.ts +3 -2
- package/lib/modules/action-bar/index.dev.js +8 -7
- package/lib/modules/action-bar/index.js +21 -0
- package/lib/modules/action-bar/item-placement.d.ts +1 -2
- package/lib/modules/action-bar/item.js +5 -0
- package/lib/modules/action-bar/leave/assign-host.d.ts +3 -1
- package/lib/modules/action-bar/leave/assign-host.js +7 -7
- package/lib/modules/action-bar/leave/index.js +35 -7
- package/lib/modules/action-bar/leave/leave-meeting.d.ts +11 -1
- package/lib/modules/action-bar/leave/leave-meeting.js +25 -16
- package/lib/modules/action-bar/more/poppover-content.d.ts +0 -1
- package/lib/modules/action-bar/more/poppover-content.js +14 -4
- package/lib/modules/action-bar/participants/index.css +12 -0
- package/lib/modules/action-bar/participants/index.js +21 -14
- package/lib/modules/action-bar/screen-share/index.js +5 -1
- package/lib/modules/action-bar/screen-share/submenu.js +17 -22
- package/lib/modules/action-bar/security/drop-menu.js +124 -14
- package/lib/modules/action-bar/security/index.js +1 -1
- package/lib/modules/action-bar/settings/index.js +1 -1
- package/lib/modules/action-bar/store.d.ts +45 -21
- package/lib/modules/action-bar/store.js +544 -134
- package/lib/modules/action-bar/view.js +65 -42
- package/lib/modules/audio-stream/index.js +12 -6
- package/lib/modules/chat/chat-bar/index.js +46 -27
- package/lib/modules/chat/chat-select/index.css +19 -4
- package/lib/modules/chat/chat-select/index.d.ts +0 -1
- package/lib/modules/chat/chat-select/index.js +29 -3
- package/lib/modules/chat/chat.d.ts +2 -3
- package/lib/modules/chat/chat.js +210 -107
- package/lib/modules/chat/contex.d.ts +0 -1
- package/lib/modules/chat/demo-wrapper.d.ts +0 -1
- package/lib/modules/chat/index.css +49 -0
- package/lib/modules/chat/index.d.ts +3 -3
- package/lib/modules/chat/index.dev.js +4 -4
- package/lib/modules/chat/index.js +32 -11
- package/lib/modules/chat/message-list.js +81 -49
- package/lib/modules/chat/store.d.ts +50 -4
- package/lib/modules/chat/store.js +303 -124
- package/lib/modules/chat/util.js +1 -1
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +2 -0
- package/lib/modules/connection-gateway/components/phone/index.js +2 -0
- package/lib/modules/connection-gateway/index.d.ts +3 -2
- package/lib/modules/connection-gateway/index.js +2 -0
- package/lib/modules/connection-gateway/store.d.ts +6 -4
- package/lib/modules/connection-gateway/store.js +46 -15
- package/lib/modules/device-pretest/audio-preview/microphone-detection.d.ts +1 -0
- package/lib/modules/device-pretest/audio-preview/microphone-detection.js +3 -2
- package/lib/modules/device-pretest/audio-preview/speaker-control.d.ts +0 -1
- package/lib/modules/device-pretest/audio-preview/speaker-control.js +1 -1
- package/lib/modules/device-pretest/context.d.ts +0 -1
- package/lib/modules/device-pretest/index.css +0 -4
- package/lib/modules/device-pretest/index.d.ts +0 -1
- package/lib/modules/device-pretest/index.js +2 -1
- package/lib/modules/device-pretest/settings/beauty.js +19 -6
- package/lib/modules/device-pretest/settings/video-effect.d.ts +0 -1
- package/lib/modules/device-pretest/settings/video-settings-basic.js +1 -0
- package/lib/modules/device-pretest/settings/virtual-background-setting.js +2 -0
- package/lib/modules/device-pretest/store.js +34 -19
- package/lib/modules/dialog/components/chat/electron.js +3 -2
- package/lib/modules/dialog/components/chat/index.js +1 -1
- package/lib/modules/dialog/components/confirm/electron.js +7 -5
- package/lib/modules/dialog/components/confirm/index.js +16 -2
- package/lib/modules/dialog/components/connection-gateway/electron.js +4 -2
- package/lib/modules/dialog/components/connection-gateway/index.css +0 -2
- package/lib/modules/dialog/components/device-setting/electron.d.ts +2 -0
- package/lib/modules/dialog/components/device-setting/electron.js +74 -0
- package/lib/modules/dialog/components/device-setting/index.css +26 -0
- package/lib/modules/dialog/components/device-setting/index.d.ts +4 -0
- package/lib/modules/dialog/components/device-setting/index.js +60 -0
- package/lib/modules/dialog/components/operation-waiting-room/electron.d.ts +5 -0
- package/lib/modules/dialog/components/operation-waiting-room/electron.js +89 -0
- package/lib/modules/dialog/components/operation-waiting-room/index.css +44 -0
- package/lib/modules/dialog/components/operation-waiting-room/index.d.ts +5 -0
- package/lib/modules/dialog/components/operation-waiting-room/index.js +156 -0
- package/lib/modules/dialog/components/participant/electron.js +8 -2
- package/lib/modules/dialog/components/remove-admit-waiting-room/electron.d.ts +5 -0
- package/lib/modules/dialog/components/remove-admit-waiting-room/electron.js +89 -0
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.css +50 -0
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.d.ts +5 -0
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.js +90 -0
- package/lib/modules/dialog/components/share-screen-selection/index.js +1 -1
- package/lib/modules/dialog/components/whiteboard/index.js +2 -1
- package/lib/modules/dialog/context.d.ts +0 -1
- package/lib/modules/dialog/dialogs.d.ts +0 -2
- package/lib/modules/dialog/dialogs.js +62 -103
- package/lib/modules/dialog/index.css +7 -6
- package/lib/modules/dialog/index.d.ts +1 -1
- package/lib/modules/dialog/index.js +17 -0
- package/lib/modules/dialog/store.d.ts +6 -2
- package/lib/modules/dialog/store.js +52 -9
- package/lib/modules/dialog/view.js +2 -0
- package/lib/modules/event-notification/context.d.ts +2 -0
- package/lib/modules/event-notification/context.js +9 -0
- package/lib/modules/event-notification/index.css +58 -0
- package/lib/modules/event-notification/index.d.ts +13 -0
- package/lib/modules/event-notification/index.js +48 -0
- package/lib/modules/event-notification/store.d.ts +17 -0
- package/lib/modules/event-notification/store.js +133 -0
- package/lib/modules/event-notification/view.d.ts +5 -0
- package/lib/modules/event-notification/view.js +114 -0
- package/lib/modules/event-toast/context.d.ts +0 -1
- package/lib/modules/event-toast/store.js +16 -0
- package/lib/modules/invite/context.d.ts +0 -1
- package/lib/modules/invite/index.css +4 -4
- package/lib/modules/invite/index.d.ts +2 -2
- package/lib/modules/invite/pstn-invite.js +4 -1
- package/lib/modules/invite/store.d.ts +2 -2
- package/lib/modules/invite/store.js +27 -7
- package/lib/modules/invite/voip-invite.d.ts +0 -1
- package/lib/modules/invite/voip-invite.js +1 -1
- package/lib/modules/layout/components/Aside.d.ts +0 -1
- package/lib/modules/layout/components/Aside.js +4 -1
- package/lib/modules/layout/components/Carousel.js +6 -5
- package/lib/modules/layout/components/Gallery.js +16 -9
- package/lib/modules/layout/components/Layout.js +82 -57
- package/lib/modules/layout/components/index.css +42 -5
- package/lib/modules/layout/components/index.js +3 -0
- package/lib/modules/layout/context.d.ts +0 -1
- package/lib/modules/layout/index.css +30 -0
- package/lib/modules/layout/index.dev.js +11 -11
- package/lib/modules/layout/index.js +0 -6
- package/lib/modules/layout/member-window/index.css +5 -5
- package/lib/modules/layout/member-window/index.d.ts +7 -7
- package/lib/modules/layout/member-window/index.js +59 -13
- package/lib/modules/layout/store.d.ts +61 -50
- package/lib/modules/layout/store.js +517 -342
- package/lib/modules/layout/type.d.ts +2 -1
- package/lib/modules/layout/video-window-datasource.d.ts +14 -8
- package/lib/modules/layout/video-window-datasource.js +129 -78
- package/lib/modules/live-streaming/context.d.ts +0 -1
- package/lib/modules/live-streaming/index.d.ts +2 -2
- package/lib/modules/live-streaming/index.dev.js +5 -4
- package/lib/modules/live-streaming/store.d.ts +2 -2
- package/lib/modules/live-streaming/store.js +32 -11
- package/lib/modules/participant/attendee/index.d.ts +12 -3
- package/lib/modules/participant/attendee/index.js +142 -30
- package/lib/modules/participant/context.d.ts +0 -1
- package/lib/modules/participant/index.css +20 -0
- package/lib/modules/participant/index.d.ts +5 -2
- package/lib/modules/participant/index.dev.js +14 -12
- package/lib/modules/participant/index.js +27 -0
- package/lib/modules/participant/member-list-data-source.d.ts +3 -3
- package/lib/modules/participant/member-list-data-source.js +29 -3
- package/lib/modules/participant/room-control-drop-menu/index.css +37 -0
- package/lib/modules/participant/room-control-drop-menu/index.js +35 -1
- package/lib/modules/participant/store.d.ts +59 -34
- package/lib/modules/participant/store.js +541 -222
- package/lib/modules/participant/view.d.ts +6 -6
- package/lib/modules/participant/view.js +138 -34
- package/lib/modules/setting/audio-settings/audio-settings.js +16 -12
- package/lib/modules/setting/audio-settings/index.css +2 -2
- package/lib/modules/setting/context.d.ts +0 -1
- package/lib/modules/setting/general-settings/general-settings.js +2 -1
- package/lib/modules/setting/general-settings/index.css +2 -2
- package/lib/modules/setting/index.css +1 -5
- package/lib/modules/setting/index.d.ts +2 -2
- package/lib/modules/setting/index.dev.js +14 -12
- package/lib/modules/setting/index.js +16 -0
- package/lib/modules/setting/minutes-settings/index.css +65 -0
- package/lib/modules/setting/minutes-settings/minutes-settings.d.ts +4 -0
- package/lib/modules/setting/minutes-settings/minutes-settings.js +159 -0
- package/lib/modules/setting/state/index.css +0 -4
- package/lib/modules/setting/state/index.js +11 -1
- package/lib/modules/setting/storage-settings/storage-settings.js +1 -1
- package/lib/modules/setting/store.d.ts +7 -5
- package/lib/modules/setting/store.js +69 -46
- package/lib/modules/setting/translate-settings/index.css +45 -0
- package/lib/modules/setting/translate-settings/language-select.d.ts +12 -0
- package/lib/modules/setting/translate-settings/language-select.js +50 -0
- package/lib/modules/setting/translate-settings/translate-settings.d.ts +4 -0
- package/lib/modules/setting/translate-settings/translate-settings.js +139 -0
- package/lib/modules/setting/video-settings/index.css +15 -6
- package/lib/modules/setting/video-settings/video-settings-basic.js +3 -2
- package/lib/modules/setting/video-settings/video-settings.js +5 -1
- package/lib/modules/setting/view.js +34 -2
- package/lib/modules/share-screen/index.d.ts +4 -2
- package/lib/modules/share-screen/index.dev.js +17 -14
- package/lib/modules/share-screen/index.js +2 -0
- package/lib/modules/share-screen/selection/index.css +2 -0
- package/lib/modules/share-screen/selection/index.js +44 -6
- package/lib/modules/share-screen/share-state-bar/index.css +49 -11
- package/lib/modules/share-screen/share-state-bar/index.d.ts +0 -1
- package/lib/modules/share-screen/share-state-bar/index.js +51 -20
- package/lib/modules/share-screen/store.d.ts +23 -13
- package/lib/modules/share-screen/store.js +733 -606
- package/lib/modules/state-bar/context.d.ts +0 -1
- package/lib/modules/state-bar/index.css +2 -2
- package/lib/modules/state-bar/index.d.ts +2 -2
- package/lib/modules/state-bar/index.dev.js +12 -10
- package/lib/modules/state-bar/layout-config.js +2 -0
- package/lib/modules/state-bar/live-streaming-state.js +3 -0
- package/lib/modules/state-bar/meeting-detail.css +6 -4
- package/lib/modules/state-bar/meeting-details.js +29 -3
- package/lib/modules/state-bar/meeting-network-state.css +14 -3
- package/lib/modules/state-bar/meeting-network-state.js +10 -4
- package/lib/modules/state-bar/recording.js +9 -11
- package/lib/modules/state-bar/store.d.ts +7 -5
- package/lib/modules/state-bar/store.js +68 -8
- package/lib/modules/state-bar/view.js +4 -8
- package/lib/modules/video-window/context.d.ts +0 -1
- package/lib/modules/video-window/deviceState/index.d.ts +3 -3
- package/lib/modules/video-window/index.css +1 -0
- package/lib/modules/video-window/members/index.js +7 -4
- package/lib/modules/video-window/store.d.ts +5 -4
- package/lib/modules/video-window/store.js +49 -17
- package/lib/modules/video-window/topControl/index.js +7 -0
- package/lib/modules/video-window/view.js +2 -0
- package/lib/modules/waiting-room-layout/context.d.ts +2 -0
- package/lib/modules/waiting-room-layout/context.js +9 -0
- package/lib/modules/waiting-room-layout/index.css +71 -0
- package/lib/modules/waiting-room-layout/index.d.ts +8 -0
- package/lib/modules/waiting-room-layout/index.js +47 -0
- package/lib/modules/waiting-room-layout/store.d.ts +30 -0
- package/lib/modules/waiting-room-layout/store.js +189 -0
- package/lib/modules/waiting-room-layout/type.d.ts +0 -0
- package/lib/modules/waiting-room-layout/type.js +1 -0
- package/lib/modules/waiting-room-layout/view.d.ts +3 -0
- package/lib/modules/waiting-room-layout/view.js +67 -0
- package/lib/modules/whiteboard/app.js +2 -8
- package/lib/modules/whiteboard/components/control-bar/index.css +3 -0
- package/lib/modules/whiteboard/components/control-bar/store.d.ts +0 -1
- package/lib/modules/whiteboard/components/control-bar/store.js +29 -29
- package/lib/modules/whiteboard/components/loading/index.js +2 -2
- package/lib/modules/whiteboard/components/multi-window/index.js +8 -3
- package/lib/modules/whiteboard/components/pagination/store.d.ts +0 -1
- package/lib/modules/whiteboard/components/progress/electron.js +3 -2
- package/lib/modules/whiteboard/components/progress/style.css +4 -3
- package/lib/modules/whiteboard/components/switch-theme/index.css +4 -0
- package/lib/modules/whiteboard/components/switch-theme/index.d.ts +2 -1
- package/lib/modules/whiteboard/components/switch-theme/index.js +29 -17
- package/lib/modules/whiteboard/components/switch-theme/item.d.ts +1 -0
- package/lib/modules/whiteboard/components/switch-theme/item.js +11 -2
- package/lib/modules/whiteboard/components/switch-theme/libs.d.ts +2 -1
- package/lib/modules/whiteboard/components/switch-theme/libs.js +21 -20
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +2 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/index.js +3 -1
- package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.js +11 -9
- package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +4 -0
- package/lib/modules/whiteboard/components/toolbar/components/move-handle.js +5 -0
- package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +2 -0
- package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +18 -12
- package/lib/modules/whiteboard/components/toolbar/hooks/index.d.ts +3 -3
- package/lib/modules/whiteboard/components/toolbar/hooks/index.js +16 -11
- package/lib/modules/whiteboard/components/toolbar/index.js +9 -0
- package/lib/modules/whiteboard/components/toolbar/store.d.ts +8 -7
- package/lib/modules/whiteboard/components/toolbar/store.js +25 -4
- package/lib/modules/whiteboard/context.d.ts +7 -3
- package/lib/modules/whiteboard/context.js +6 -4
- package/lib/modules/whiteboard/index.d.ts +6 -8
- package/lib/modules/whiteboard/index.js +310 -255
- package/lib/modules/whiteboard/type.d.ts +4 -12
- package/lib/modules/whiteboard/type.js +6 -16
- package/lib/modules/whiteboard/utils.d.ts +1 -0
- package/lib/modules/whiteboard/utils.js +12 -1
- package/lib/plugins/browser-runtime-plugin.js +2 -1
- package/lib/plugins/module-dev-plugin.js +12 -10
- package/lib/plugins/multi-lang-plugin.d.ts +1 -5
- package/lib/plugins/multi-lang-plugin.js +2 -0
- package/lib/runtime.d.ts +3 -5
- package/lib/translations/enUS.d.ts +590 -0
- package/lib/translations/enUS.js +608 -6
- package/lib/translations/zhCN.d.ts +588 -0
- package/lib/translations/zhCN.js +604 -4
- package/lib/type.d.ts +6 -2
- package/lib/ui-manager.d.ts +7 -3
- package/lib/ui-manager.js +597 -143
- package/lib/ui-scene.d.ts +1 -0
- package/lib/ui-scene.js +32 -22
- package/lib/utilities/board-context.d.ts +0 -1
- package/lib/utilities/constant.d.ts +47 -5
- package/lib/utilities/constant.js +44 -1
- package/lib/utilities/copyText.js +1 -1
- package/lib/utilities/extract.js +26 -3
- package/lib/utilities/hooks.js +2 -0
- package/lib/utilities/parameters.js +2 -2
- package/lib/utilities/renderer-event.js +28 -0
- package/lib/utilities/renderer.d.ts +1 -0
- package/lib/utilities/renderer.js +15 -6
- package/lib/utilities/tools.js +5 -2
- package/lib/utilities/ui-resources.d.ts +2 -2
- package/lib/utilities/ui-resources.js +20 -3
- package/lib/utilities/video-track-render-context.d.ts +0 -1
- package/package.json +17 -16
- package/public/assets/fcr_defaultpage.png +0 -0
- package/public/assets/login_confirm.png +0 -0
- package/public/index.html +29 -11
- package/lib/modules/device-pretest/settings/index.css +0 -15
- package/lib/modules/participant/attendee/participants-more-action.d.ts +0 -18
- package/lib/modules/participant/attendee/participants-more-action.js +0 -275
package/lib/translations/zhCN.js
CHANGED
|
@@ -7,6 +7,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.zhCn = void 0;
|
|
8
8
|
var zhCn = exports.zhCn = {
|
|
9
9
|
fmt_role_host: '主持人',
|
|
10
|
+
//****************** ls ******************
|
|
10
11
|
fmt_role_participant: '参会者',
|
|
11
12
|
fmt_role_cohost: '联席主持人',
|
|
12
13
|
fmt_participants_label_participants: '成员列表',
|
|
@@ -184,7 +185,7 @@ var zhCn = exports.zhCn = {
|
|
|
184
185
|
fmt_toolbar_tips_leave_confirm_dialog_kick_info: '你已被从会议中移出,点击按钮离开会议',
|
|
185
186
|
fmt_toolbar_leave_confirm_dialog_submit: '知道了',
|
|
186
187
|
fmt_toolbar_tips_leave_confirm_dialog_end_title: '会议已结束',
|
|
187
|
-
fmt_toolbar_tips_leave_confirm_dialog_end_info: '
|
|
188
|
+
fmt_toolbar_tips_leave_confirm_dialog_end_info: '会议已结束,请点击按钮离开会议。',
|
|
188
189
|
fmt_additional_tips_cameraturnon: '接受邀请后,你的摄像头将打开。',
|
|
189
190
|
fmt_additional_button_accept: '接受',
|
|
190
191
|
fmt_additional_button_refuse: '拒绝',
|
|
@@ -240,6 +241,8 @@ var zhCn = exports.zhCn = {
|
|
|
240
241
|
fmt_device_statues_opend: '已开启',
|
|
241
242
|
fmt_device_statues_closed: '已关闭',
|
|
242
243
|
fmt_device_options_whitening: '美白',
|
|
244
|
+
fmt_device_options_effects_enable: '点击开启特效背景',
|
|
245
|
+
fmt_device_options_effects_disable: '点击关闭特效背景',
|
|
243
246
|
fmt_device_options_smoother: '磨皮',
|
|
244
247
|
fmt_device_options_brighter: '提亮',
|
|
245
248
|
fmt_device_tips_videoeffectson: '如果开启了摄像头,视频特效将实时变化',
|
|
@@ -263,6 +266,8 @@ var zhCn = exports.zhCn = {
|
|
|
263
266
|
fmt_device_inspection_turn_on_camera: '打开摄像头',
|
|
264
267
|
fmt_device_label_inspection_switch_camera: '翻转',
|
|
265
268
|
fmt_device_label_inspection_speaker_on: '扬声器已开',
|
|
269
|
+
fmt_device_label_speaker_follow_system: '跟随系统 - {reason1}',
|
|
270
|
+
fmt_device_label_speaker_default: '默认',
|
|
266
271
|
fmt_device_inspection_turn_on_speaker: '打开扬声器',
|
|
267
272
|
fmt_device_inspection_start_meeting: '加入会议',
|
|
268
273
|
fmt_device_label_inspection_audio_route_speaker: '麦克风',
|
|
@@ -305,7 +310,7 @@ var zhCn = exports.zhCn = {
|
|
|
305
310
|
fmt_uimanager_option_Reset: '重置',
|
|
306
311
|
fmt_uimanager_option_Cameraview: '别人看我',
|
|
307
312
|
fmt_uimanager_option_Selfieview: '我看自己',
|
|
308
|
-
fmt_uimanager_tips_urmuted: '
|
|
313
|
+
fmt_uimanager_tips_urmuted: '主持人已将你静音',
|
|
309
314
|
fmt_uimanager_tips_urturnedoff: '您已经被主持人关闭摄像头',
|
|
310
315
|
fmt_uimanager_tips_norightsvideo: '你无权限开启视频',
|
|
311
316
|
fmt_uimanager_tips_norightsaudio: '你无权限开启音频',
|
|
@@ -580,6 +585,7 @@ var zhCn = exports.zhCn = {
|
|
|
580
585
|
fmt_screenshare_whiteboard_button_dragdrop: '拖拽',
|
|
581
586
|
fmt_screenshare_whiteboard_button_savescript: '保存板书',
|
|
582
587
|
fmt_screenshare_whiteboard_button_spread: '展开',
|
|
588
|
+
fmt_screenshare_whiteboard_tips_choose_pen_first: '请先选择形状或画笔',
|
|
583
589
|
fmt_screenshare_whiteboard_tips_downloading: '板书正在下载中',
|
|
584
590
|
fmt_screenshare_whiteboard_tips_savedsuccessfully: '板书保存成功',
|
|
585
591
|
fmt_screenshare_whiteboard_tips_failed: '板书保存失败',
|
|
@@ -599,6 +605,7 @@ var zhCn = exports.zhCn = {
|
|
|
599
605
|
fmt_share_options_purple: '紫色',
|
|
600
606
|
fmt_share_options_green: '绿色',
|
|
601
607
|
fmt_share_options_whiteboard: '白板',
|
|
608
|
+
fmt_share_options_red: '红色',
|
|
602
609
|
fmt_whiteboard_save_success: '图片存储成功',
|
|
603
610
|
fmt_whiteboard_save_failure: '图片下载失败',
|
|
604
611
|
fmt_whiteboard_tips_two_finger_move: '双指移动白板',
|
|
@@ -772,7 +779,7 @@ var zhCn = exports.zhCn = {
|
|
|
772
779
|
fmt_setting_label_professional: '音乐和专业音频',
|
|
773
780
|
fmt_setting_option_orinalvoise: '显示会议中选项,以通过麦克风“打开原声”',
|
|
774
781
|
fmt_setting_tips_speaker: '点击测试扬声器,以确定你可以听到他人的声音',
|
|
775
|
-
fmt_setting_tips_mic: '
|
|
782
|
+
fmt_setting_tips_mic: '请对着你的麦克风说话。如果你无法听到自己的声音,请更换麦克风',
|
|
776
783
|
fmt_setting_tips_speaker_unwork: '如果你无法听到测试音,请更换扬声器',
|
|
777
784
|
fmt_setting_tips_mic_unwork: '如果你无法听到测试音,请更换麦克风',
|
|
778
785
|
fmt_setting_label_preview: '效果预览',
|
|
@@ -821,6 +828,7 @@ var zhCn = exports.zhCn = {
|
|
|
821
828
|
fmt_internalsetting_tips_optimizevideo: '勾选后,基于软件的噪声消除将优化视频画质',
|
|
822
829
|
fmt_internalsetting_tips_reducevideo: '勾选后,硬件编解码器将降低视频编解码对CPU的消耗',
|
|
823
830
|
fmt_internalsetting_labels_currency: '通用',
|
|
831
|
+
fmt_internalsetting_labels_audiovisual: '音视频',
|
|
824
832
|
fmt_internalsetting_labels_application: '本应用',
|
|
825
833
|
fmt_internalsetting_labels_other: '其他',
|
|
826
834
|
fmt_internalsetting_labels_bandwidth: '带宽',
|
|
@@ -1012,5 +1020,597 @@ var zhCn = exports.zhCn = {
|
|
|
1012
1020
|
fmt_pstn_status_raining: '响铃中',
|
|
1013
1021
|
fmt_SIP323_copywrite_phonenumber: '手机号码(必填)',
|
|
1014
1022
|
fmt_SIP323_options_detailedinfor: '复制详细会议信息',
|
|
1015
|
-
fmt_SIP323_tips_alreadycopied: '已复制在粘贴板'
|
|
1023
|
+
fmt_SIP323_tips_alreadycopied: '已复制在粘贴板',
|
|
1024
|
+
fmt_localrecord_labels_record: '录制',
|
|
1025
|
+
fmt_localrecord_labels_savingto: '本地录制保存在',
|
|
1026
|
+
fmt_localrecord_button_savingto: '更改',
|
|
1027
|
+
fmt_localrecord_button_open: '打开',
|
|
1028
|
+
fmt_localrecord_labels_remaining_storage: '剩余{reason1}G',
|
|
1029
|
+
fmt_localrecord_options_videorecord_whileshare: '屏幕共享期间同时录制视频窗口',
|
|
1030
|
+
fmt_localrecord_options_temporaryfiles_saved: '保留临时录制文件',
|
|
1031
|
+
fmt_localrecord_options_localrecoding_onlyadmin: '仅主持人与联席主持人可以发起录制 ',
|
|
1032
|
+
fmt_localrecord_tips_origialfiles_save: '保留原始文件,以便在出现问题时帮助会议提供方进行故障排除',
|
|
1033
|
+
fmt_localrecord_tips_change_storage: '更改存储地址',
|
|
1034
|
+
fmt_localrecord_tips_ensufficient_storage: '本地磁盘空间不足',
|
|
1035
|
+
fmt_localrecord_tips_: '该磁盘空间不足2G,会影响录制文件存储,建议更换文件保存位置',
|
|
1036
|
+
fmt_localrecord_button_cancel: '取消',
|
|
1037
|
+
fmt_localrecord_button_confirm: '确定',
|
|
1038
|
+
fmt_localrecord_options_local_recording: '本地录制',
|
|
1039
|
+
fmt_localrecord_labels_permissions_localrecording: '本地录制权限',
|
|
1040
|
+
fmt_localrecord_options_onlyadmin_record: '仅会议管理员可录制',
|
|
1041
|
+
fmt_localrecord_options_allmember_canrecord: '全体成员可录制',
|
|
1042
|
+
fmt_localrecord_options_setting_recording: '录制设置',
|
|
1043
|
+
fmt_localrecord_options_localrecording_onlyuse: '本地录制(仅限使用)',
|
|
1044
|
+
fmt_localrecord_popup_enable_local_recording: '是否开启本地录制',
|
|
1045
|
+
fmt_localrecord_popup_record_audiovideo: '开启后,将录制会议中的音视频画面与共享屏幕内容,并告知所有参会成员',
|
|
1046
|
+
fmt_localrecord_popup_start_local_recording: '是否开启云录制',
|
|
1047
|
+
fmt_localrecord_popup_remind_afterstart: '开启后,所有参会成员将受到录制开始提醒',
|
|
1048
|
+
fmt_localrecord_popup_invite_start_recoding: '邀请会议管理员开启云录制',
|
|
1049
|
+
fmt_localrecord_popup_onlyadmin_recording: '只有主持人和联席主持人可以启用云录制功能,你是否向他们发起云录制邀请',
|
|
1050
|
+
fmt_localrecord_popup_open_recording: '开启',
|
|
1051
|
+
fmt_localrecord_popup_cancel_recording: '取消',
|
|
1052
|
+
fmt_localrecord_popup_invite: '发起邀请',
|
|
1053
|
+
fmt_localrecord_popup_cancel_invite: '取消',
|
|
1054
|
+
fmt_localrecord_tips_already_start: '云录制已启用',
|
|
1055
|
+
fmt_localrecord_tips_geturl: '云录制已启用,你可以在会议结束后获取链接',
|
|
1056
|
+
fmt_localrecord_tips_getfiles: '云录制已启用,你可以在会议结束后联系会议管理员获取链接。',
|
|
1057
|
+
fmt_localrecord_tips_someone_record: '有人启用了录制功能',
|
|
1058
|
+
fmt_localrecord_tips_view_recorded: '会议中有人启用了本地录制,你的音视频画面,要共享的内容将被录制',
|
|
1059
|
+
fmt_localrecord_options_beauty_record: '录制&美颜',
|
|
1060
|
+
fmt_localrecord_popup_stop_recording: '确定现在停止录制吗?',
|
|
1061
|
+
fmt_localrecord_button_stop_recording: '确定停止录制',
|
|
1062
|
+
fmt_localrecord_button_cancel_recording: '取消',
|
|
1063
|
+
fmt_localrecord_popup_in_recording: '此会议正在录制中',
|
|
1064
|
+
fmt_localrecord_popup_someone_recording: '有会议成员在他们的设备上开启了本地录制,他们可以将本地录制文件分享给其他成员',
|
|
1065
|
+
fmt_localrecord_button_leavemeeting: '离开会议',
|
|
1066
|
+
fmt_localrecord_button_got_it: '知道了',
|
|
1067
|
+
fmt_localrecord_tips_pause_localrecording: '暂停本地录制',
|
|
1068
|
+
fmt_localrecord_tips_stop_localrecording: '停止本地录制',
|
|
1069
|
+
fmt_waitingroom_setting_option_enable_waitingroom: '启用等候室',
|
|
1070
|
+
fmt_waitingroom_setting_option_disable_waitingroom: '关闭等候室',
|
|
1071
|
+
fmt_waitingroom_setting_popup_close_waitingroom: '关闭等候室',
|
|
1072
|
+
fmt_waitingroom_setting_tips_choose: '{reason1}名成员仍在等候室内,将他们移出会议室还是准入到会议室?',
|
|
1073
|
+
fmt_waitingroom_setting_button_admit_all: '准入全部等候室成员',
|
|
1074
|
+
fmt_waitingroom_setting_button_remove_all: '移除全部等候室成员',
|
|
1075
|
+
fmt_waitingroom_setting_button_cancel: '取消',
|
|
1076
|
+
fmt_waitingroom_sidebar_button_move_to_waitingroom: '移出到等候室',
|
|
1077
|
+
fmt_waitingroom_sidebar_label_waiting: '等候室{reason1}人',
|
|
1078
|
+
fmt_waitingroom_sidebar_label_search: '搜索',
|
|
1079
|
+
fmt_waitingroom_sidebar_button_invite: '邀请成员',
|
|
1080
|
+
fmt_waitingroom_sidebar_button_admit: '准入',
|
|
1081
|
+
fmt_waitingroom_sidebar_button_more: '更多',
|
|
1082
|
+
fmt_waitingroom_sidebar_button_private: '私聊',
|
|
1083
|
+
fmt_waitingroom_sidebar_button_remove: '移出',
|
|
1084
|
+
fmt_waitingroom_sidebar_button_removeall: '全部移除',
|
|
1085
|
+
fmt_waitingroom_sidebar_button_admitall: '全部准入',
|
|
1086
|
+
fmt_waitingroom_sidebar_popup_removeall: '移除等候成员',
|
|
1087
|
+
fmt_waitingroom_sidebar_popup_label_remove: '将{reason1}从等候室里移除?',
|
|
1088
|
+
fmt_waitingroom_sidebar_popup_option_notagain: '不允许用户再次加入该会议',
|
|
1089
|
+
fmt_waitingroom_sidebar_popup_button_cancel: '取消',
|
|
1090
|
+
fmt_waitingroom_sidebar_popup_button_remove: '移除',
|
|
1091
|
+
fmt_waitingroom_sidebar_popup_popup_admit: '全部准入等候成员',
|
|
1092
|
+
fmt_waitingroom_sidebar_popup_label_admitall: '是否允许等候室所有成员加入会议',
|
|
1093
|
+
fmt_waitingroom_sidebar_popup_button_admitall: '全部准入',
|
|
1094
|
+
fmt_waitingroom_attendie_popup_label_removed: '你已被移出会议,加入会议失败',
|
|
1095
|
+
fmt_waitingroom_attendie_popup_button_gotit: '我知道了',
|
|
1096
|
+
fmt_waitingroom_sidebar_chat_label_waiting: '等候室{reason1}',
|
|
1097
|
+
fmt_waitingroom_sidebar_chat_label_meeting: '会议中',
|
|
1098
|
+
fmt_waitingroom_sidebar_chat_label_notsend: '在等候室的用户不能发送消息,只能接收会议管理员的消息',
|
|
1099
|
+
fmt_waitingroom_sidebar_chat_label_all_attendees: '等候室所有人',
|
|
1100
|
+
fmt_waitingroom_mainwindow_popup_label_waitingroom: '等候室',
|
|
1101
|
+
fmt_waitingroom_mainwindow_popup_label_waiting: '当前等候室有{reason1}在等待',
|
|
1102
|
+
fmt_waitingroom_mainwindow_popup_button_view_detailed: '查看等候室',
|
|
1103
|
+
fmt_waitingroom_mainwindow_popup_button_not_remind: '不再提醒',
|
|
1104
|
+
fmt_waitingroom_attendie_popup_label_Leave: '离开会议',
|
|
1105
|
+
fmt_waitingroom_attendie_popup_label_click_leave: '你被请出这个会议,点击按钮后将退出会议',
|
|
1106
|
+
fmt_waitingroom_attendie_overview_label_waitingroom: '等候室',
|
|
1107
|
+
fmt_waitingroom_attendie_overview_label_wait_moment: '请稍等,主持人即将邀请您入会',
|
|
1108
|
+
fmt_waitingroom_attendie_overview_label_move_in_by_host: '你被移入等候室',
|
|
1109
|
+
fmt_waitingroom_attendie_overview_label_attendees: '等候室成员',
|
|
1110
|
+
fmt_waitingroom_attendie_overview_label_no_messages: '暂无消息公告',
|
|
1111
|
+
fmt_waitingroom_put_in_success: '{reason1}已移入等候室',
|
|
1112
|
+
fmt_waitingroom_setting_tips_deactivate: '{reason1}已停用等候室',
|
|
1113
|
+
fmt_waitingroom_setting_tips_disable: '你已停用等候室',
|
|
1114
|
+
fmt_waitingroom_setting_tips_enable: '已开启等候室',
|
|
1115
|
+
fmt_waitingroom_setting_tips_send_message_to_host: '你可以点击这里发送信息给会议管理员',
|
|
1116
|
+
fmt_waitingroom_setting_popup_toast_move_in_failed: '移入失败,请检查网络或确认等候室是否仍在使用',
|
|
1117
|
+
fmt_waitingroom_mobile_setting_label_enable: '启用等候室',
|
|
1118
|
+
fmt_waitingroom_mobile_setting_label_disable: '关闭等候室',
|
|
1119
|
+
fmt_waitingroom_mobile_setting_popup_label_close: '等候室关闭?',
|
|
1120
|
+
fmt_waitingroom_mobile_setting_popup_label_choose: '{reason1}名成员仍在等候室内,将他们移出会议室还是准入到会议中?',
|
|
1121
|
+
fmt_waitingroom_mobile_setting_popup_button_admit_all: '全体准入等候室成员',
|
|
1122
|
+
fmt_waitingroom_mobile_setting_popup_button_cancel: '不处理',
|
|
1123
|
+
fmt_waitingroom_mobile_setting_tips_deactivate: '{reason1}已停用等候室',
|
|
1124
|
+
fmt_waitingroom_mobile_setting_tips_disable: '你已停用等候室',
|
|
1125
|
+
fmt_waitingroom_mobile_setting_button_move_into_waitingroom: '移入等候室',
|
|
1126
|
+
fmt_waitingroom_mobile_memberlist_label_waitingroom: '等候室',
|
|
1127
|
+
fmt_waitingroom_mobile_memberlist_popup_label_search: '搜索',
|
|
1128
|
+
fmt_waitingroom_mobile_memberlist_popup_moveout: '移出',
|
|
1129
|
+
fmt_waitingroom_mobile_memberlist_button_admit: '准入',
|
|
1130
|
+
fmt_waitingroom_mobile_memberlist_button_privatechat: '私聊',
|
|
1131
|
+
fmt_waitingroom_mobile_memberlist_popup_label_remove: '移除等候成员',
|
|
1132
|
+
fmt_waitingroom_mobile_memberlist_popup_label_sure_remove: '将{reason1}从等候室移除?',
|
|
1133
|
+
fmt_waitingroom_mobile_memberlist_options_not_allowed: '不允许用户再次加入该会议',
|
|
1134
|
+
fmt_waitingroom_mobile_memberlist_button_cancel: '取消',
|
|
1135
|
+
fmt_waitingroom_mobile_memberlist_button_remove: '移除',
|
|
1136
|
+
fmt_waitingroom_mobile_memberlist_popup_label_remove_all: '移除全体等候室成员?',
|
|
1137
|
+
fmt_waitingroom_mobile_memberlist_popup_label_sure_to_remove_all: '将等候室的所有成员都移除?',
|
|
1138
|
+
fmt_waitingroom_mobile_memberlist_button_remove_all: '全部移除',
|
|
1139
|
+
fmt_waitingroom_mobile_memberlist_popup_label_admit_all: '全部准入等候成员',
|
|
1140
|
+
fmt_waitingroom_mobile_memberlist_popup_label_sure_to_admit_all: '是否允许等候室所有成员加入会议',
|
|
1141
|
+
fmt_waitingroom_mobile_memberlist_tips_all_removed: '已全部移除',
|
|
1142
|
+
fmt_waitingroom_mobile_memberlist_tips_removed: '已移除',
|
|
1143
|
+
fmt_waitingroom_mobile_memberlist_tips_all_amitted: '已全部准入会中',
|
|
1144
|
+
fmt_waitingroom_mobile_memberlist_label_nocontent: '暂无消息',
|
|
1145
|
+
fmt_waitingroom_mobile_chat_label_send_to: '发送给',
|
|
1146
|
+
fmt_waitingroom_mobile_chat_label_input: '请输入',
|
|
1147
|
+
fmt_waitingroom_mobile_chat_label_private_chat: '私聊',
|
|
1148
|
+
fmt_waitingroom_mobile_chat_label_all_waitingroom_member: '等候室所有人',
|
|
1149
|
+
fmt_waitingroom_mobile_chat_label_all_meeting_member: '会中所有人',
|
|
1150
|
+
fmt_waitingroom_mobile_notice_label_waitingroom: '等候室',
|
|
1151
|
+
fmt_waitingroom_mobile_notice_label_enabled: '主持人启用了等候室,请稍后,主持人将邀请你入会',
|
|
1152
|
+
fmt_waitingroom_mobile_notice_popup_label_about_join: '即将进入会议室',
|
|
1153
|
+
fmt_waitingroom_mobile_notice_popup_label_quick_join: '会议管理员已邀请你进会,点击按钮可以快速进会',
|
|
1154
|
+
fmt_waitingroom_mobile_notice_popup_button_join_now: '现在进会{reason1}',
|
|
1155
|
+
fmt_waitingroom_mobile_notice_popup_label_waitinglist: '当前等候室有{reason1}人等待',
|
|
1156
|
+
fmt_waitingroom_mobile_notice_popup_button_dont_remind: '不再提醒',
|
|
1157
|
+
fmt_waitingroom_mobile_notice_popup_button_view_detailed: '查看等候室',
|
|
1158
|
+
fmt_ai_transcriptions_setting_label_source: '声源语言',
|
|
1159
|
+
fmt_ai_transcriptions_setting_label_live_language: '现场说的语言 ',
|
|
1160
|
+
fmt_ai_transcriptions_setting_label_translate_to: '翻译为',
|
|
1161
|
+
fmt_ai_transcriptions_setting_label_effects: '对会中字幕和转写生效,翻译内容仅自己可见',
|
|
1162
|
+
fmt_ai_transcriptions_setting_option_bilingualism: '同时显示双语',
|
|
1163
|
+
fmt_ai_transcriptions_setting_label_translator: '翻译官',
|
|
1164
|
+
fmt_ai_transcriptions_setting_label_visable_range: '实时同声传译,仅自己可见',
|
|
1165
|
+
fmt_ai_transcriptions_setting_option_noton: '不开启',
|
|
1166
|
+
fmt_ai_transcriptions_setting_option_english_translation: '英翻中',
|
|
1167
|
+
fmt_ai_transcriptions_setting_option_translate: '中翻英',
|
|
1168
|
+
fmt_ai_subtitles_setting_label_subtitle_setting: '字幕设置',
|
|
1169
|
+
fmt_ai_subtitles_setting_label_caption_transcripts_setting: '字幕和翻译设置',
|
|
1170
|
+
fmt_ai_subtitles_setting_label_caption_transcripts: '字幕和翻译',
|
|
1171
|
+
fmt_ai_subtitles_setting_label_fontsize: '字号大小',
|
|
1172
|
+
fmt_ai_subtitles_setting_label_sample_chi: '字幕文字大小示例',
|
|
1173
|
+
fmt_ai_subtitles_setting_label_sample_eng: 'Example of subtitle text size',
|
|
1174
|
+
fmt_ai_subtitles_setting_label_translation_setting: '翻译设置',
|
|
1175
|
+
fmt_ai_subtitles_setting_label_effect_range: '对会中字幕和转写生效,翻译内容仅自己可见,暂不支持外语之间的互译',
|
|
1176
|
+
fmt_ai_subtitles_setting_options_no_translation: '不翻译',
|
|
1177
|
+
fmt_ai_subtitles_setting_options_chinese: '中文(简体)',
|
|
1178
|
+
fmt_ai_subtitles_setting_options_english: '英文',
|
|
1179
|
+
fmt_ai_subtitles_setting_options_subltitle_bilingual: '字幕同时显示双语',
|
|
1180
|
+
fmt_ai_subtitles_setting_options_translation_bilingual: '转写同时显示双语',
|
|
1181
|
+
fmt_ai_subtitles_setting_options_translation_restore_default: '恢复默认字号',
|
|
1182
|
+
fmt_ai_subtitles_setting_options_view_translation: '查看实时转写',
|
|
1183
|
+
fmt_ai_subtitles_setting_label_subtitle: '字幕',
|
|
1184
|
+
fmt_ai_subtitles_setting_label_source_language: '源语言',
|
|
1185
|
+
fmt_ai_subtitles_setting_label_translate_: '翻译为',
|
|
1186
|
+
fmt_ai_subtitles_setting_label_bilingual_display: '显示双语',
|
|
1187
|
+
fmt_ai_subtitles_setting_label_hot_words: '个人热词',
|
|
1188
|
+
fmt_ai_subtitles_setting_label_hot_words_add: '添加自己常用的热词,提升语音转文字准确率,最多可输入50个热词',
|
|
1189
|
+
fmt_ai_subtitles_setting_button_button: '按钮',
|
|
1190
|
+
fmt_ai_transcriptions_toolbar_button_realtime_transcription: '实时转写',
|
|
1191
|
+
fmt_ai_transcriptions_toolbar_options_translator: '启用翻译官',
|
|
1192
|
+
fmt_ai_transcriptions_toolbar_options_enable_translation: '启用实时转写',
|
|
1193
|
+
fmt_ai_transcriptions_toolbar_options_settings: '转写与翻译设置',
|
|
1194
|
+
fmt_ai_transcriptions_toolbar_popup_valid: '字幕仅对自己有效',
|
|
1195
|
+
fmt_ai_transcriptions_sidebar_label_realtime_translation: '实时转写',
|
|
1196
|
+
fmt_ai_transcriptions_sidebar_label_search: '搜索',
|
|
1197
|
+
fmt_ai_transcriptions_sidebar_tips_turnon: '开启翻译识别内容',
|
|
1198
|
+
fmt_ai_transcriptions_sidebar_tips_stopped: '已停止实时转写',
|
|
1199
|
+
fmt_ai_subtitles_setting_label_turnon_subtitles: '开启字幕中...',
|
|
1200
|
+
fmt_ai_subtitles_setting_label_click_to_setup: '点击可以进行字幕和翻译设置',
|
|
1201
|
+
fmt_ai_subtitles_setting_label_listening: '倾听中...',
|
|
1202
|
+
fmt_ai_subtitles_setting_label_listening_no_content: '暂无内容',
|
|
1203
|
+
fmt_ai_transcriptions_sidebar_button_stop_translation: '停止转写',
|
|
1204
|
+
fmt_ai_transcriptions_sidebar_button_start_translation: '开始转写',
|
|
1205
|
+
//****************** AI会议纪要 ******************
|
|
1206
|
+
fmt_ai_summary_create_option_create_summary: '开会的同时,创建会议纪要',
|
|
1207
|
+
fmt_ai_summary_create_labels_meeting_list: '会议列表',
|
|
1208
|
+
fmt_ai_summary_create_labels_valid_records: '只显示最近2天的会议记录',
|
|
1209
|
+
fmt_ai_summary_create_labels_meetingID: '会议ID',
|
|
1210
|
+
fmt_ai_summary_create_labels_meeting_time: '会议时间',
|
|
1211
|
+
fmt_ai_summary_create_labels_not_opened: '未开启会议纪要',
|
|
1212
|
+
fmt_ai_summary_detail_label_data_analysis: '数据分析',
|
|
1213
|
+
fmt_ai_summary_detail_label_meeting_summary: '会议纪要',
|
|
1214
|
+
fmt_ai_summary_detail_label_transcription: '转写',
|
|
1215
|
+
fmt_ai_summary_detail_label_search: '搜索',
|
|
1216
|
+
fmt_ai_summary_detail_button_transcription_management: '转写管理',
|
|
1217
|
+
fmt_ai_summary_detail_label_no_content: '暂无记录',
|
|
1218
|
+
fmt_ai_summary_setting_label_AI: 'AI配置',
|
|
1219
|
+
fmt_ai_summary_setting_label_LLM_choose: '大模型选择',
|
|
1220
|
+
fmt_ai_summary_setting_label_llm_range: 'AI模型会应用到会议纪要、翻译等功能',
|
|
1221
|
+
fmt_ai_summary_setting_option_tingwu: '通义听悟',
|
|
1222
|
+
fmt_ai_summary_setting_option_zhipu: '智谱AI',
|
|
1223
|
+
fmt_ai_summary_setting_option_moonshot: '月之暗面',
|
|
1224
|
+
fmt_ai_summary_setting_option_openai: 'OpenAI',
|
|
1225
|
+
fmt_ai_summary_setting_label_agent: '智能体选择',
|
|
1226
|
+
fmt_ai_summary_setting_option_meeting_assistant: '会议助手',
|
|
1227
|
+
fmt_ai_summary_setting_option_teacher: '老师',
|
|
1228
|
+
fmt_ai_summary_setting_option_sales_manager: '销售员',
|
|
1229
|
+
//****************** 会前设置页 ******************
|
|
1230
|
+
fmt_premeeting_setting_mobile_label_settings: '设置',
|
|
1231
|
+
fmt_premeeting_setting_mobile_label_host_settings: '会议管理员入会设置',
|
|
1232
|
+
fmt_premeeting_setting_mobile_swtich_mute_when_join: '成员入会时静音',
|
|
1233
|
+
fmt_premeeting_setting_mobile_label_personal_settings: '个人设置',
|
|
1234
|
+
fmt_premeeting_setting_mobile_label_video: '视频',
|
|
1235
|
+
fmt_premeeting_setting_mobile_swtich_hide_video_off: '隐藏非视频参会者',
|
|
1236
|
+
fmt_premeeting_setting_mobile_swtich_hide_my_video: '隐藏我的视频',
|
|
1237
|
+
fmt_premeeting_setting_mobile_option_background: '背景',
|
|
1238
|
+
fmt_premeeting_setting_mobile_option_enabled: '已开启',
|
|
1239
|
+
fmt_premeeting_setting_mobile_option_disabled: '未开启',
|
|
1240
|
+
fmt_premeeting_setting_mobile_option_beauty: '美颜',
|
|
1241
|
+
fmt_premeeting_setting_mobile_label_caption_transcription: '字幕和翻译',
|
|
1242
|
+
fmt_premeeting_setting_mobile_option_source_language: '声源语言',
|
|
1243
|
+
fmt_premeeting_setting_mobile_option_default: '默认',
|
|
1244
|
+
fmt_premeeting_setting_mobile_option_translate_to: '翻译为',
|
|
1245
|
+
fmt_premeeting_setting_mobile_swtich_display_bilingual: '同时显示双语',
|
|
1246
|
+
fmt_premeeting_setting_mobile_label_commen_settings: '会议通用',
|
|
1247
|
+
fmt_premeeting_setting_mobile_swtich_participant_display_name: '参会者显示名称',
|
|
1248
|
+
fmt_premeeting_setting_mobile_swtich_voice_stimulation: '语音激励',
|
|
1249
|
+
fmt_premeeting_setting_mobile_label_speaking_display_first: '开启语音激励后,会优先显示正在说话的与会成员。',
|
|
1250
|
+
fmt_premeeting_setting_mobile_option_bilingual: '多语言',
|
|
1251
|
+
fmt_premeeting_setting_mobile_option_chinese: '中文',
|
|
1252
|
+
fmt_premeeting_setting_mobile_option_english: '英文',
|
|
1253
|
+
fmt_premeeting_setting_mobile_option_language_auto: '跟随系统',
|
|
1254
|
+
fmt_premeeting_setting_mobile_option_appearance: '外观',
|
|
1255
|
+
fmt_premeeting_setting_mobile_option_auto: '自动',
|
|
1256
|
+
fmt_premeeting_setting_mobile_option_bright: '明亮',
|
|
1257
|
+
fmt_premeeting_setting_mobile_option_dark: '暗黑',
|
|
1258
|
+
fmt_premeeting_setting_mobile_option_region: '区域设置',
|
|
1259
|
+
fmt_premeeting_setting_mobile_option_developer_mode: '开发模式',
|
|
1260
|
+
fmt_premeeting_setting_mobile_label_about_us: '关于我们',
|
|
1261
|
+
fmt_premeeting_setting_mobile_option_version: '版本',
|
|
1262
|
+
fmt_premeeting_setting_mobile_button_version_pdate: '检查更新',
|
|
1263
|
+
fmt_premeeting_setting_mobile_label_release_time: '发版时间',
|
|
1264
|
+
fmt_premeeting_setting_mobile_url_agreement: '用户协议',
|
|
1265
|
+
fmt_premeeting_setting_mobile_url_privacy: '隐私条款',
|
|
1266
|
+
fmt_premeeting_setting_mobile_url_disclaimer: '免责声明',
|
|
1267
|
+
fmt_premeeting_setting_mobile_button_cancel_account: '注销声网账号 ',
|
|
1268
|
+
fmt_premeeting_setting_mobile_button_log_out: '退出登录',
|
|
1269
|
+
fmt_premeeting_setting_mobile_label_take_effect: '语言设置将在重启灵动会议后生效',
|
|
1270
|
+
fmt_premeeting_setting_mobile_popup_button_got_it: '我知道了',
|
|
1271
|
+
fmt_premeeting_setting_mobile_popup_button_restart: '立即重启',
|
|
1272
|
+
fmt_premeeting_setting_mobile_popup_label_latest_version: '你使用的版本已经是最新版本了哦',
|
|
1273
|
+
fmt_premeeting_setting_mobile_popup_label_dowloading: '正在下载最新版本',
|
|
1274
|
+
fmt_premeeting_setting_mobile_popup_button_install_comfirm: '下载完成,是否安装',
|
|
1275
|
+
fmt_premeeting_setting_mobile_popup_button_cancel_install: '取消',
|
|
1276
|
+
fmt_premeeting_setting_mobile_popup_button_install: '安装',
|
|
1277
|
+
fmt_premeeting_setting_mobile_popup_label_cancel_account: '注销声网账号?',
|
|
1278
|
+
fmt_premeeting_setting_mobile_popup_button_confirm_cancel: '确定注销',
|
|
1279
|
+
fmt_premeeting_setting_mobile_popup_button_cancel: '取消',
|
|
1280
|
+
fmt_premeeting_setting_mobile_popup_button_log_out: '退出当前登录账号',
|
|
1281
|
+
fmt_premeeting_setting_mobile_button_log_out_confirm: '确定退出',
|
|
1282
|
+
//****************** 首页 ******************
|
|
1283
|
+
fmt_premeeting_joinroom_mobile_button_upandin: '注册登录',
|
|
1284
|
+
fmt_premeeting_joinroom_mobile_label_flexible_meeting: '灵动会议',
|
|
1285
|
+
fmt_premeeting_joinroom_mobile_label_enterprise_account: '企业账号',
|
|
1286
|
+
fmt_premeeting_joinroom_mobile_tips_meetingid: '会议名或会议ID',
|
|
1287
|
+
fmt_premeeting_joinroom_mobile_tips_password: '会议密码',
|
|
1288
|
+
fmt_premeeting_joinroom_mobile_button_join_meeting: '加入会议',
|
|
1289
|
+
fmt_premeeting_joinroom_mobile_tips_six_characters: '请输入6位以内字符',
|
|
1290
|
+
fmt_premeeting_joinroom_mobile_tips_wrong_password: '密码错误',
|
|
1291
|
+
fmt_premeeting_joinroom_mobile_tips_no_password: '房间可以不设置密码;房间不存在时,输入的密码将成为该房间的密码。',
|
|
1292
|
+
fmt_premeeting_joinroom_mobile_label_account: '账号',
|
|
1293
|
+
fmt_premeeting_joinroom_mobile_button_settings_privacy: '设置与隐私',
|
|
1294
|
+
fmt_premeeting_joinroom_mobile_button_log_out: '退出登录',
|
|
1295
|
+
fmt_premeeting_joinroom_mobile_button_confirm_exit: '确定退出',
|
|
1296
|
+
fmt_premeeting_joinroom_mobile_button_cancel: '取消',
|
|
1297
|
+
fmt_premeeting_joinroom_mobile_label_rename: '重命名',
|
|
1298
|
+
//****************** 水印(移动) ******************
|
|
1299
|
+
fmt_security_setting_mobile_label_watermark: '水印',
|
|
1300
|
+
fmt_security_setting_mobile_label_watermark_style: '水印样式',
|
|
1301
|
+
fmt_security_setting_mobile_option_watermark_style_single: '单行',
|
|
1302
|
+
fmt_security_setting_mobile_option_watermark_style_multi: '多行',
|
|
1303
|
+
fmt_security_setting_mobile_label_mute_join: '参会者加入会议时静音',
|
|
1304
|
+
fmt_security_setting_mobile_label_allow_participants: '允许与会者',
|
|
1305
|
+
fmt_security_setting_mobile_label_chat_with: '聊天',
|
|
1306
|
+
fmt_security_setting_mobile_label_share_screen: '共享屏幕',
|
|
1307
|
+
fmt_security_setting_mobile_label_rename: '重命名',
|
|
1308
|
+
fmt_security_setting_mobile_label_unmute: '解除禁言',
|
|
1309
|
+
fmt_security_setting_mobile_label_start_video: '开启视频',
|
|
1310
|
+
fmt_security_setting_mobile_popup_toast_lock_meeting: '你已锁定会议,其他任何人无法加入',
|
|
1311
|
+
fmt_security_setting_mobile_popup_toast_unlock_meeting: '你已解锁会议,新参会者可加入',
|
|
1312
|
+
fmt_security_setting_mobile_chat_popup_label_participants: '允许与会者聊天',
|
|
1313
|
+
fmt_security_setting_mobile_chat_popup_option_no_one: '无',
|
|
1314
|
+
fmt_security_setting_mobile_chat_popup_option_facilitator: '主持人和联席主持人',
|
|
1315
|
+
fmt_security_setting_mobile_chat_popup_option_all: '所有人',
|
|
1316
|
+
fmt_security_setting_mobile_chat_popup_option_all_chat: '所有公屏聊天和私聊',
|
|
1317
|
+
fmt_security_mobile_mainwindow_label_watermark: '{reason1}{reason1}',
|
|
1318
|
+
//****************** 安全(移动) ******************
|
|
1319
|
+
fmt_security_setting_mobile_label_security: '安全',
|
|
1320
|
+
fmt_security_setting_mobile_label_security_label: 'SECURITY安全',
|
|
1321
|
+
fmt_security_setting_mobile_label_lock_meeting: '锁定会议',
|
|
1322
|
+
fmt_security_setting_mobile_label_waiting_room: '等候室',
|
|
1323
|
+
//****************** 安全 ******************
|
|
1324
|
+
fmt_security_setting_label_security_setting: '会议安全设置',
|
|
1325
|
+
fmt_security_setting_label_lock_meeting: '锁定会议室',
|
|
1326
|
+
fmt_security_setting_label_waiting_room: '无权限的参会者入会时先进会议室',
|
|
1327
|
+
fmt_security_setting_label_watermark: '水印',
|
|
1328
|
+
fmt_security_setting_option_watermark_style_single: '单行',
|
|
1329
|
+
fmt_security_setting_option_watermark_style_multi: '多行',
|
|
1330
|
+
fmt_security_setting_label_allow_participants: '允许参会者',
|
|
1331
|
+
fmt_security_setting_label_chat_with: '聊天',
|
|
1332
|
+
fmt_security_setting_label_share_screen: '共享屏幕',
|
|
1333
|
+
fmt_security_setting_label_rename: '自我改名',
|
|
1334
|
+
fmt_security_setting_label_unmute: '自我解除禁言',
|
|
1335
|
+
fmt_security_setting_label_start_video: '开启视频',
|
|
1336
|
+
fmt_security_setting_label_remove_participant: '移除参会者…',
|
|
1337
|
+
fmt_security_setting_label_pause_participant: '暂停参会者活动…',
|
|
1338
|
+
fmt_security_setting_popup_toast_join_waiting_room: '无权限的参会者入会时先进会议室',
|
|
1339
|
+
fmt_security_setting_popup_toast_facilitator_watermark: '主持人开启了屏幕水印',
|
|
1340
|
+
fmt_security_setting_popup_toast_co_facilitator_watermark: '联席主持人开启了屏幕水印',
|
|
1341
|
+
fmt_security_setting_popup_toast_turn_off_watermark: '水印已关闭',
|
|
1342
|
+
fmt_security_setting_popup_tip_watermark_voice_active_prioritized: '所有成员观看会议内容时,将看到水印嵌入会议画面中',
|
|
1343
|
+
fmt_security_mainwindow_label_watermark: '{reason1}{reason1}',
|
|
1344
|
+
//****************** 设置 ******************
|
|
1345
|
+
fmt_premeeting_setting_label_settings: '设置',
|
|
1346
|
+
fmt_premeeting_setting_label_normal: '常规',
|
|
1347
|
+
fmt_premeeting_setting_label_voice_motivation: '语音激励',
|
|
1348
|
+
fmt_premeeting_setting_label_turn_on_microphone: '入会开启麦克风',
|
|
1349
|
+
fmt_premeeting_setting_label_turn_on_camera: '入会开启摄像头',
|
|
1350
|
+
fmt_premeeting_setting_label_attendees_name: '参会者显示名称',
|
|
1351
|
+
fmt_premeeting_setting_label_appearances: '外观',
|
|
1352
|
+
fmt_premeeting_setting_label_bright_mode: '浅色模式',
|
|
1353
|
+
fmt_premeeting_setting_label_dark_mode: '暗黑模式',
|
|
1354
|
+
fmt_premeeting_setting_label_auto_mode: '自动',
|
|
1355
|
+
fmt_premeeting_setting_label_multi_language: '多语言',
|
|
1356
|
+
fmt_premeeting_setting_label_Chinese: '中文',
|
|
1357
|
+
fmt_premeeting_setting_label_English: '英文',
|
|
1358
|
+
fmt_premeeting_setting_popup_label_restart_activate: '重启后生效',
|
|
1359
|
+
fmt_premeeting_setting_popup_label_language_setting_restarting_meeting: '语言设置将在重启灵动会议后生效',
|
|
1360
|
+
fmt_premeeting_setting_popup_label_restart_application_switch_language: '如果期待现在切换语言,请重启应用程序。',
|
|
1361
|
+
fmt_premeeting_setting_popup_button_i_know: '我知道了',
|
|
1362
|
+
fmt_premeeting_setting_pupop_button_restart_now: '立即重启',
|
|
1363
|
+
fmt_premeeting_setting_label_follow_the_system: '跟随系统',
|
|
1364
|
+
fmt_premeeting_setting_label_region: '区域',
|
|
1365
|
+
fmt_premeeting_setting_label_cn: 'CN',
|
|
1366
|
+
fmt_premeeting_setting_label_eu: 'EU',
|
|
1367
|
+
fmt_premeeting_setting_label_us: 'US',
|
|
1368
|
+
fmt_premeeting_setting_label_ap: 'AP',
|
|
1369
|
+
fmt_premeeting_setting_label_meeting_control: '会议管理',
|
|
1370
|
+
fmt_premeeting_setting_label_mute_join_meeting: '参会者入会时静音',
|
|
1371
|
+
fmt_premeeting_setting_label_lock_meeting: '锁定会议',
|
|
1372
|
+
fmt_premeeting_setting_label_open_waiting_room: '开启等待室',
|
|
1373
|
+
fmt_premeeting_setting_label_voice: '语音',
|
|
1374
|
+
fmt_premeeting_setting_label_automatically_connects_to_computer_audio: '加入会议时自动连接电脑音频',
|
|
1375
|
+
fmt_premeeting_setting_label_mute_the_microphone_joinning_meeting: '加入会议时将麦克风静音',
|
|
1376
|
+
fmt_premeeting_setting_label_speaker: '扬声器',
|
|
1377
|
+
fmt_premeeting_setting_button_test_speaker: '检测扬声器',
|
|
1378
|
+
fmt_premeeting_setting_label_click_test_speaker: '点击测试扬声器以确定你可以听到他人的声+E1377:E1431音',
|
|
1379
|
+
fmt_premeeting_setting_button_pause: '暂停播放',
|
|
1380
|
+
fmt_premeeting_setting_label_change_speaker: '如果你无法听到测试音,请更换扬声器',
|
|
1381
|
+
fmt_premeeting_setting_label_output_level: '输出级别',
|
|
1382
|
+
fmt_premeeting_setting_label_output_volume: '输出音量',
|
|
1383
|
+
fmt_premeeting_setting_label_automatically_adjust_volume: '自动调整{xxxxx}音量',
|
|
1384
|
+
fmt_premeeting_setting_label_microphone: '麦克风',
|
|
1385
|
+
fmt_premeeting_setting_button_test_microphone: '检测麦克风',
|
|
1386
|
+
fmt_premeeting_setting_label_speak_into_your_microphone: '请对着你的麦克风说话,如果你无法听到自己的声音,请更换麦克风',
|
|
1387
|
+
fmt_premeeting_setting_button_recording: '录制中',
|
|
1388
|
+
fmt_premeeting_setting_label_change_the_microphone: '如果你无法听到测试音,请更换麦克风',
|
|
1389
|
+
fmt_premeeting_setting_label_input_level: '输入级别',
|
|
1390
|
+
fmt_premeeting_setting_label_input_volume: '输入音量',
|
|
1391
|
+
fmt_premeeting_setting_label_automatically_adjust_microphone_volume: '自动调整麦克风音量',
|
|
1392
|
+
fmt_premeeting_setting_label_audio_noise_reduction_enhancement: '音频降噪与增强',
|
|
1393
|
+
fmt_premeeting_setting_label_choose_audio_settings: '可选择降低背景噪音或专业音频',
|
|
1394
|
+
fmt_premeeting_setting_label_enable_waiting_room: '开启等待室',
|
|
1395
|
+
fmt_premeeting_setting_label_Off: '关',
|
|
1396
|
+
fmt_premeeting_setting_label_reduce_background_noise: '降低背景噪音',
|
|
1397
|
+
fmt_premeeting_setting_label_auto: '自动',
|
|
1398
|
+
fmt_premeeting_setting_label_low: '低',
|
|
1399
|
+
fmt_premeeting_setting_label_medium: '适中',
|
|
1400
|
+
fmt_premeeting_setting_label_high: '高',
|
|
1401
|
+
fmt_premeeting_setting_label_professional_audio: '专业音频',
|
|
1402
|
+
fmt_premeeting_setting_label_enable_stereo: '启用立体声',
|
|
1403
|
+
fmt_premeeting_setting_label_high_fidelity_music_mode: '高保真音乐模式',
|
|
1404
|
+
fmt_premeeting_setting_label_echo_cancellation: '回声消除',
|
|
1405
|
+
fmt_premeeting_setting_label_video_and_effect: '视频和效果',
|
|
1406
|
+
fmt_premeeting_setting_button_basic: '基础',
|
|
1407
|
+
fmt_premeeting_setting_button_background: '背景',
|
|
1408
|
+
fmt_premeeting_setting_button_beauty_filter: '美颜',
|
|
1409
|
+
fmt_premeeting_setting_label_camera: '摄像头',
|
|
1410
|
+
fmt_premeeting_setting_label_hd_video: '视频高清',
|
|
1411
|
+
fmt_premeeting_setting_label_adjust_adapt_low_light: '调整以适应弱光',
|
|
1412
|
+
fmt_premeeting_setting_label_turn_off_video_joining_meeting: '加入会议时关闭我的视频',
|
|
1413
|
+
fmt_premeeting_setting_label_always_show_video_preview_dialog: '加入视频会议时始终显示视频预览对话框',
|
|
1414
|
+
fmt_premeeting_setting_label_hide_participants_without_video: '隐藏非视频参会者',
|
|
1415
|
+
fmt_premeeting_setting_label_mirror_my_video: '镜像我的视频',
|
|
1416
|
+
fmt_premeeting_setting_label_16_participants: '16名参会者',
|
|
1417
|
+
fmt_premeeting_setting_label_25_participants: '25名参会者',
|
|
1418
|
+
fmt_premeeting_setting_label_advanced_Setting: '高级',
|
|
1419
|
+
fmt_premeeting_setting_label_optimize_video_quality_through_noise_reduction: '通过降噪优化视频质量',
|
|
1420
|
+
fmt_premeeting_setting_label_hardware_acceleration_for_video_receiving: '为视频接受使用硬件加速',
|
|
1421
|
+
fmt_premeeting_setting_label_about_us: '关于我们',
|
|
1422
|
+
fmt_premeeting_setting_label_smart_meeting: '灵动会议',
|
|
1423
|
+
fmt_premeeting_setting_label_version_now: '版本号{reason1}',
|
|
1424
|
+
fmt_premeeting_setting_button_check_for_update: '检查更新',
|
|
1425
|
+
fmt_premeeting_setting_button_user_agreement: '用户协议',
|
|
1426
|
+
fmt_premeeting_setting_button_privacy_policy: '隐私协议',
|
|
1427
|
+
fmt_premeeting_setting_button_disclaimer: '免责声明',
|
|
1428
|
+
fmt_premeeting_setting_version_popup_label_latest_version: '最新版本',
|
|
1429
|
+
fmt_premeeting_setting_version_popup_label_latest_version_announcement: '{reason1}已经是最新版本',
|
|
1430
|
+
fmt_premeeting_setting_version_popup_button_ok: 'OK',
|
|
1431
|
+
fmt_premeeting_setting_version_popup_label_new_version_announcement: '{reason1}版本已发布',
|
|
1432
|
+
fmt_premeeting_setting_version_popup_label_current_version: '当前版本为{reason1}',
|
|
1433
|
+
fmt_premeeting_setting_version_popup_button_download_update: '下载更新',
|
|
1434
|
+
fmt_premeeting_setting_version_popup_button_download_later: '稍后再试',
|
|
1435
|
+
fmt_premeeting_setting_label_downloading_update: '正在下载更新',
|
|
1436
|
+
fmt_premeeting_setting_version_popup_button_cancel: '取消',
|
|
1437
|
+
fmt_premeeting_setting_version_popup_new_version_ready: '新版本已就绪',
|
|
1438
|
+
fmt_premeeting_setting_version_popup_label_restarting_to_experience: '重启应用后可体验({reason1})',
|
|
1439
|
+
fmt_premeeting_setting_version_popup_button_restart_application: '重启应用',
|
|
1440
|
+
fmt_premeeting_setting_version_popup_button_try_later: '稍后再试',
|
|
1441
|
+
fmt_meeting_mainwidow_version_popup_label_new_version_ready: '新版本已就绪',
|
|
1442
|
+
fmt_meeting_mainwindow_version_popup_label_experience_after_restarting: '重启应用后可体验({reason1})',
|
|
1443
|
+
fmt_meeting_mainwindow_version_popup_button_restart_application: '重启应用',
|
|
1444
|
+
//****************** 同声传译-PC ******************
|
|
1445
|
+
fmt_interpretation_setting_controller_option_simultaneous_interpretation: '同声传译',
|
|
1446
|
+
fmt_interpretation_setting_controller_toast_turn_on_simultaneous_interpretation: '开启同声传译',
|
|
1447
|
+
fmt_interpretation_setting_controller_toast_turn_off_simultaneous_interpretation: '关闭同声传译',
|
|
1448
|
+
fmt_interpretation_setting_popup_controller_label_simultaneous_interpretation: '同声传译',
|
|
1449
|
+
fmt_interpretation_setting_popup_controller_option_add_interpreter: '添加翻译官',
|
|
1450
|
+
fmt_interpretation_setting_popup_controller_label_interpreter: '翻译官{reason1}',
|
|
1451
|
+
fmt_interpretation_setting_popup_controller_labe_search_name: '搜索名字',
|
|
1452
|
+
fmt_interpretation_setting_popup_controller_labe_source_language: '语言',
|
|
1453
|
+
fmt_interpretation_setting_popup_controller_labe_Translate_language: '语言',
|
|
1454
|
+
fmt_interpretation_setting_popup_controller_option_new_add_interpreter: '添加翻译官',
|
|
1455
|
+
fmt_interpretation_setting_popup_controller_option_turn_on_simultaneous: '开启同声传译',
|
|
1456
|
+
fmt_interpretation_setting_popup_controller_option_add_interpreter_limited: '添加翻译官(上限10)',
|
|
1457
|
+
fmt_interpretation_setting_popup_controller_option_change: '修改',
|
|
1458
|
+
fmt_interpretation_setting_popup_controller_option_stop_interpretation: '停止传译',
|
|
1459
|
+
fmt_interpretation_setting_popup_controller_option_change_comfirm: '确认更改',
|
|
1460
|
+
fmt_interpretation_popup_toast_interpretation_online: '同声传译已启用',
|
|
1461
|
+
fmt_interpretation_popup_toast_interpreter_set_by_controller: '联席主持{reason1}指定了{reason1}等{reason1}人为翻译官',
|
|
1462
|
+
fmt_interpretation_sidebar_button_interpret: '同声传译',
|
|
1463
|
+
fmt_interpretation_sidebar_toast_choose_language: '正在进行同声传译,可选择不同的语言频道收听',
|
|
1464
|
+
fmt_interpretation_pupup_interpreter_offline: '翻译官离线',
|
|
1465
|
+
fmt_interpretation_popup_button_set: '去分配',
|
|
1466
|
+
fmt_interpretation_popup_label_set: '翻译官{reason1}已离开会议,请重新分配翻译官',
|
|
1467
|
+
fmt_interpretation_popup_toast_label_return_meeting: '{reason1}已重新进入会议室',
|
|
1468
|
+
fmt_interpretation_interpreter_popup_label_welcome_interpreter_be_set: '你被指定为翻译官',
|
|
1469
|
+
fmt_interpretation_interpreter_popup_label_welcome_open_micro: '请确认打开麦克风,并通过主界面按钮进行两种语言的输出切换',
|
|
1470
|
+
fmt_interpretation_interpreter_popup_label_welcome_source_language: '{reason1}(声源语言)',
|
|
1471
|
+
fmt_interpretation_interpreter_popup_label_welcome_translate_language: '{reason1}(翻译语言)',
|
|
1472
|
+
fmt_interpretation_interpreter_popup_button_welcome_i_know: '我知道了',
|
|
1473
|
+
fmt_interpretation_interpreter_toast_label_open_micro: '请打开麦克风',
|
|
1474
|
+
fmt_interpretation_interpreter_toast_label_change_channel: '点击这里可以切换要传达的语音频道,并确定是否已经打开麦克风',
|
|
1475
|
+
fmt_interpretation_interpreter_popup_button_cn: '中文',
|
|
1476
|
+
fmt_interpretation_interpreter_popup_button_en: '英文',
|
|
1477
|
+
fmt_interpretation_interpreter_toast_label_return_channel: '你是翻译官,目前在xxx频道',
|
|
1478
|
+
fmt_interpretation_interpreter_popup_label_language_change_attention: '请注意,翻译语言有更改',
|
|
1479
|
+
fmt_interpretation_interpreter_popup_label_language_change_by_controller: '会议管理员指定了你新的翻译语言:',
|
|
1480
|
+
fmt_interpretation_interpreter_popup_label_language: '{reason1}(翻译语言)',
|
|
1481
|
+
fmt_interpretation_interpreter_popup_button_i_know: '我知道了',
|
|
1482
|
+
fmt_interpretation_interpreter_popup_label_interpret_cancel: '翻译权限被收回',
|
|
1483
|
+
fmt_interpretation_interpreter_popup_label_interpret_cancel_label: '会议管理员已取消你的翻译官身份',
|
|
1484
|
+
fmt_interpretation_interpreter_popup_button_know: '知道了',
|
|
1485
|
+
fmt_interpretation_mainwindow_toast_label_interpret_offline_controller: '主持人{reason1}关闭了同声传译功能',
|
|
1486
|
+
fmt_interpretation_interpreter_popup_label_language_change_by_cocontroller: '联席主持人{reason1}关闭了同声传译功能',
|
|
1487
|
+
fmt_interpretation_attendness_sidbar_popup_option_original_aswell: '同时收听原声',
|
|
1488
|
+
fmt_interpretation_controller_sidbar_popup_button_interpret_set: '同声传译设置',
|
|
1489
|
+
fmt_interpretation_attendness_sidbar_popup_option_language_off: '关闭',
|
|
1490
|
+
fmt_interpretation_attendness_sidbar_popup_option_language_cn: '中文',
|
|
1491
|
+
fmt_interpretation_attendness_sidbar_popup_option_language_eng: '英文',
|
|
1492
|
+
fmt_interpretation_attendness_popup_label_interpretation_online: '会议室开启了同声传译',
|
|
1493
|
+
fmt_interpretation_attendness_popup_label_interpretation_click: '请点击底部操作栏上的“同声传译”进行操作',
|
|
1494
|
+
fmt_interpretation_attendness_sidbar_popup_toast_label_channel_close: '您选择的同声传译频道被关闭,已为您切换到原声频道',
|
|
1495
|
+
fmt_interpretation_mainwindow_toast_label_update_language: '联席主持人{reason1}更新了同声传译的翻译官或语言',
|
|
1496
|
+
fmt_interpretation_mainwindow_toast_label_turn_off_interpret: '你已关闭了同声传译功能',
|
|
1497
|
+
//****************** 同声传译-mobile ******************
|
|
1498
|
+
fmt_interpretation_mobile_setting_controller_option_interpret: '同声传译',
|
|
1499
|
+
fmt_interpretation_mobile_setting_controller_label_interpret: '同声传译',
|
|
1500
|
+
fmt_interpretation_mobile_setting_controller_toast_label_setting_by_member: '{reason1}等{reason2}人正在设置该功能',
|
|
1501
|
+
fmt_interpretation_mobile_setting_controller_button_add_interpret: '添加翻译官',
|
|
1502
|
+
fmt_interpretation_mobile_setting_controller_label_interpreter: '翻译员{reason1}',
|
|
1503
|
+
fmt_interpretation_mobile_setting_controller_label_name_search: '使用姓名查找',
|
|
1504
|
+
fmt_interpretation_mobile_setting_controller_label_cn: '中文',
|
|
1505
|
+
fmt_interpretation_mobile_setting_controller_label_en: '英文',
|
|
1506
|
+
fmt_interpretation_mobile_setting_controller_button_turn_on_interpretation: '开启同声传译',
|
|
1507
|
+
fmt_interpretation_mobile_setting_controller_button_turn_off_interpretation: '关闭同声传译',
|
|
1508
|
+
fmt_interpretation_mobile_setting_controller_button_save: '保存',
|
|
1509
|
+
fmt_interpretation_mobile_setting_controller_toast_label_complete_setting: '请完善所有翻译官及其语言的设定',
|
|
1510
|
+
fmt_interpretation_mobile_setting_controller_toast_label_setting_update: '已更新设置',
|
|
1511
|
+
fmt_interpretation_mobile_setting_controller_option_french: '法语',
|
|
1512
|
+
fmt_interpretation_mobile_setting_controller_option_italian: '意大利语',
|
|
1513
|
+
fmt_interpretation_mobile_setting_controller_option_korean: '韩语',
|
|
1514
|
+
fmt_interpretation_mobile_setting_controller_option_spanish: '西班牙语',
|
|
1515
|
+
fmt_interpretation_mobile_setting_controller_option_japanese: '日语',
|
|
1516
|
+
fmt_interpretation_mobile_chatwin_controller_label_assign_a_interpreter: '指派一名翻译官',
|
|
1517
|
+
fmt_interpretation_mobile_toast_controller_label_interpret_in_process: '正在进行同声传译,可选择不同的语言频道收听',
|
|
1518
|
+
fmt_interpretation_mobile_toast_controller_toast_label_update_interpreter_by_cocontroller: '联席主持人{reason1}更新了同声传译的翻译官或语言',
|
|
1519
|
+
fmt_interpretation_mobile_interpreter_popup_label_as_interpreter: '你被指为翻译官',
|
|
1520
|
+
fmt_interpretation_mobile_interpreter_popup_label_open_microphone: '请确认打开麦克风,并通过主界面按钮进行两种语言的输出切换',
|
|
1521
|
+
fmt_interpretation_mobile_interpreter_popup_label_en: '英语',
|
|
1522
|
+
fmt_interpretation_mobile_interpreter_popup_label_cn: '中文',
|
|
1523
|
+
fmt_interpretation_mobile_interpreter_popup_button_i_know: '我知道了',
|
|
1524
|
+
fmt_interpretation_mobile_interpreter_label_click_change_language: '点击这里可以切换要传达的语音频道,并确定是否已经打开麦克风',
|
|
1525
|
+
fmt_interpretation_mobile_interpreter_toast_label_interpreter_channel: '你是翻译官,目前在{reason1}频道',
|
|
1526
|
+
fmt_interpretation_mobile_interpreter_popup_label_permission_revoke: '翻译权限被收回',
|
|
1527
|
+
fmt_interpretation_mobile_interpreter_popup_label_status_cancel: '会议管理员已取消你的翻译官身份',
|
|
1528
|
+
fmt_interpretation_mobile_interpreter_popup_status_button_i_know: '我知道了',
|
|
1529
|
+
fmt_interpretation_mobile_interpreter_popup_change_label_language_change: '请注意,翻译语言有更改',
|
|
1530
|
+
fmt_interpretation_mobile_interpreter_popup_change_button_i_know: '我知道了',
|
|
1531
|
+
fmt_interpretation_mobile_attendnees_popup_lable_language_choose: '选择要翻译的语言',
|
|
1532
|
+
fmt_interpretation_mobile_attendnees_popup_option_off: '关闭',
|
|
1533
|
+
fmt_interpretation_mobile_attendnees_popup_option_cn: '中文',
|
|
1534
|
+
fmt_interpretation_mobile_attendnees_popup_option_en: '英文',
|
|
1535
|
+
fmt_interpretation_mobile_attendnees_popup_label_original_aswell: '同时收听原声',
|
|
1536
|
+
fmt_interpretation_mobile_controller_popup_button_interpret_setting: '同声传译设置',
|
|
1537
|
+
fmt_interpretation_mobile_attendnees_toast_label_channel_close: '您选择的同声传译频道被关闭,已为您切换到原声频道',
|
|
1538
|
+
//****************** 免密登陆 ******************
|
|
1539
|
+
fmt_meeting_creatpage_label_smart_meeting: '灵动会议',
|
|
1540
|
+
fmt_meeting_creatpage_label_fast_experience: '快速体验',
|
|
1541
|
+
fmt_meeting_creatpage_button_create_meeting: '创建会议',
|
|
1542
|
+
fmt_meeting_creatpage_label_room_name: '房间名',
|
|
1543
|
+
fmt_meeting_creatpage_label_enter_room_name: '请输入房间名',
|
|
1544
|
+
fmt_meeting_creatpage_label_user_name: '用户名',
|
|
1545
|
+
fmt_meeting_creatpage_label_enter_user_name: '请输入用户名',
|
|
1546
|
+
fmt_meeting_creatpage_label_duration: '时长',
|
|
1547
|
+
fmt_meeting_creatpage_label_enter_duration: '请输入会议时长',
|
|
1548
|
+
fmt_meeting_creatpage_label_password: '入会密码',
|
|
1549
|
+
fmt_meeting_creatpage_label_password_empty_admit_without_password: '如密码为空,参会者将免密入会',
|
|
1550
|
+
fmt_meeting_creatpage_label_enter_password: '请输入入会密码',
|
|
1551
|
+
fmt_meeting_creatpage_button_quick_meeting_creat: '快速创建会议',
|
|
1552
|
+
fmt_meeting_creatpage_label_create_meeting_summary: '入会的同时,创建会议纪要',
|
|
1553
|
+
fmt_meeting_creatpage_label_agree_service: '同意《灵动会议用户服务协议》和《灵动会议隐私政策》',
|
|
1554
|
+
fmt_meeting_creatpage_button_join_meeting: '加入会议',
|
|
1555
|
+
fmt_meeting_creatpage_label_join_room_num: '房间号',
|
|
1556
|
+
fmt_meeting_creatpage_label_join_enter_room_num: '请输入房间号',
|
|
1557
|
+
fmt_meeting_creatpage_label_join_user_name: '用户名',
|
|
1558
|
+
fmt_meeting_creatpage_label_join_enter_user_name: '请输入用户名',
|
|
1559
|
+
fmt_meeting_creatpage_label_join_password: '入会密码',
|
|
1560
|
+
fmt_meeting_creatpage_label_join_enter_password: '请输入入会密码',
|
|
1561
|
+
fmt_meeting_creatpage_label_join_role: '角色',
|
|
1562
|
+
fmt_meeting_creatpage_label_join_attendee: '参会人',
|
|
1563
|
+
fmt_meeting_creatpage_button_quick_join_meeting: '快速加入会议',
|
|
1564
|
+
fmt_meeting_creatpage_label_join_agree_service: '同意《灵动会议用户服务协议》和《灵动会议隐私政策》',
|
|
1565
|
+
fmt_meeting_creatpage_popup_label_wrong_room_password: '房间号不存在或密码错误',
|
|
1566
|
+
fmt_meeting_mainwindow_topbar_left_button_meeting_detail: '会议详情 {reason1}',
|
|
1567
|
+
fmt_meeting_mainwindow_topbar_left_popup_toast_copy_information: '点击复制会议信息',
|
|
1568
|
+
fmt_meeting_mainwindow_topbar_left_popup_toast_copy_done: '会议信息已复制到剪贴板',
|
|
1569
|
+
fmt_meeting_mainwindow_topbar_left_popup_label_share: '分享会议号或邀请链接',
|
|
1570
|
+
fmt_meeting_mainwindow_topbar_left_popup_label_room_name: '{reason1}(房间名)',
|
|
1571
|
+
fmt_meeting_mainwindow_topbar_left_popup_label_meeting_num: '会议号 {reason1}',
|
|
1572
|
+
fmt_meeting_mainwindow_topbar_left_popup_label_meeting_password: '会议密码 {reason1}',
|
|
1573
|
+
fmt_meeting_mainwindow_topbar_left_popup_label_link: '邀请链接 {reason1}',
|
|
1574
|
+
fmt_meeting_mainwindow_topbar_left_popup_label_all_info: '复制全部信息',
|
|
1575
|
+
fmt_meeting_call_voice_call_button_copy_info: '复制会议信息',
|
|
1576
|
+
fmt_link_invitation: '{reason1} 邀请您参加会议 会议主题为:{reason2} 会议时间:{reason3} 会议链接:{reason4} {reason5}',
|
|
1577
|
+
fmt_meeting_creatpage_toast_password_only_contain: '密码只能包含数字、字母和符号',
|
|
1578
|
+
fmt_meeting_creatpage_toast_password_only_six: '入会密码长度为6位',
|
|
1579
|
+
//****************** 翻译语言 ******************
|
|
1580
|
+
fmt_translate_language_chinese: '中文',
|
|
1581
|
+
fmt_translate_language_english: '英文',
|
|
1582
|
+
fmt_translate_language_japanese: '日语',
|
|
1583
|
+
fmt_translate_language_korean: '韩语',
|
|
1584
|
+
fmt_translate_language_german: '德语',
|
|
1585
|
+
fmt_translate_language_french: '法语',
|
|
1586
|
+
fmt_translate_language_russian: '俄语',
|
|
1587
|
+
fmt_translate_language_spanish: '西班牙语',
|
|
1588
|
+
fmt_translate_language_portuguese: '葡萄牙语',
|
|
1589
|
+
fmt_translate_language_ilalian: '意大利语',
|
|
1590
|
+
fmt_translate_language_arabic: '阿拉伯语',
|
|
1591
|
+
fmt_translate_language_indonesian: '印尼语',
|
|
1592
|
+
fmt_translate_language_hindi: '印地语',
|
|
1593
|
+
fmt_translate_language_thai: '泰语',
|
|
1594
|
+
fmt_translate_language_vietnamese: '越南语',
|
|
1595
|
+
fmt_translate_language_malay: '马来语',
|
|
1596
|
+
fmt_translate_language_turkish: '土耳其语',
|
|
1597
|
+
fmt_translate_language_chinese_mini: '中',
|
|
1598
|
+
fmt_translate_language_english_mini: 'EN',
|
|
1599
|
+
fmt_translate_language_japanese_mini: 'JP',
|
|
1600
|
+
fmt_translate_language_korean_mini: 'KO',
|
|
1601
|
+
fmt_translate_language_german_mini: 'DE',
|
|
1602
|
+
fmt_translate_language_french_mini: 'FR',
|
|
1603
|
+
fmt_translate_language_russian_mini: 'RU',
|
|
1604
|
+
fmt_translate_language_spanish_mini: 'PT',
|
|
1605
|
+
fmt_translate_language_portuguese_mini: 'ES',
|
|
1606
|
+
fmt_translate_language_ilalian_mini: 'IT',
|
|
1607
|
+
fmt_translate_language_arabic_mini: 'AR',
|
|
1608
|
+
fmt_translate_language_indonesian_mini: 'ID',
|
|
1609
|
+
fmt_translate_language_hindi_mini: 'HI',
|
|
1610
|
+
fmt_translate_language_thai_mini: 'TH',
|
|
1611
|
+
fmt_translate_language_vietnamese_mini: 'VI',
|
|
1612
|
+
fmt_translate_language_malay_mini: 'MS',
|
|
1613
|
+
fmt_translate_language_turkish_mini: 'TR',
|
|
1614
|
+
fmt_waitingroom_attendie_overview_label__toast_move_to_waitingroom: '你已被移出至等候室',
|
|
1615
|
+
fmt_waitingroom_mobile_notice_popup_button_join_now_no_count: '现在进会'
|
|
1016
1616
|
};
|