fcr-ui-scene 3.1.1 → 3.2.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/dist/132.js +2 -0
- package/dist/132.js.LICENSE.txt +311 -0
- package/dist/651.js +2 -0
- package/dist/651.js.LICENSE.txt +1 -0
- package/dist/73.js +1 -0
- package/dist/index.html +13 -0
- package/dist/main.da7c203ab32d15742cfe.css +11760 -0
- package/dist/main.js +2 -0
- package/dist/main.js.LICENSE.txt +254 -0
- package/dist/worker-entry.worker.js.LICENSE.txt +13 -0
- package/lib/base.d.ts +0 -1
- package/lib/base.js +16 -0
- package/lib/common/device-store.d.ts +3 -4
- package/lib/common/device-store.js +167 -83
- 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 +3 -2
- package/lib/common/event-store.js +5 -0
- package/lib/common/security-store.d.ts +6 -16
- package/lib/common/security-store.js +136 -101
- package/lib/electron/app.js +13 -5
- package/lib/electron/injections.d.ts +3 -4
- package/lib/electron/injections.js +46 -30
- package/lib/electron/logger.d.ts +6 -0
- package/lib/electron/logger.js +66 -0
- package/lib/electron/main.js +24 -8
- 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.js +23 -2
- package/lib/fragments/control-bar/device/index.js +7 -0
- package/lib/fragments/control-bar/index.js +1 -1
- package/lib/fragments/control-bar/more-actions/index.js +5 -0
- package/lib/fragments/control-bar/security-content/index.js +3 -0
- 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/modules/action-bar/action-bar-collapes-items.js +9 -0
- package/lib/modules/action-bar/chat/index.js +1 -1
- package/lib/modules/action-bar/context.d.ts +0 -1
- package/lib/modules/action-bar/device/index.d.ts +2 -2
- package/lib/modules/action-bar/device/index.js +2 -0
- package/lib/modules/action-bar/index.css +4 -0
- package/lib/modules/action-bar/index.d.ts +2 -2
- package/lib/modules/action-bar/index.dev.js +7 -6
- 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 +0 -1
- package/lib/modules/action-bar/leave/assign-host.js +5 -3
- package/lib/modules/action-bar/leave/index.js +6 -1
- package/lib/modules/action-bar/leave/leave-meeting.d.ts +0 -1
- package/lib/modules/action-bar/more/poppover-content.d.ts +0 -1
- package/lib/modules/action-bar/more/poppover-content.js +10 -0
- package/lib/modules/action-bar/screen-share/submenu.js +1 -0
- package/lib/modules/action-bar/security/drop-menu.js +34 -1
- 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 +9 -17
- package/lib/modules/action-bar/store.js +67 -49
- package/lib/modules/audio-stream/index.js +12 -6
- package/lib/modules/chat/chat-bar/index.js +7 -0
- package/lib/modules/chat/chat-select/index.css +5 -0
- 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 +1 -1
- package/lib/modules/chat/chat.js +28 -4
- package/lib/modules/chat/contex.d.ts +0 -1
- package/lib/modules/chat/demo-wrapper.d.ts +0 -1
- package/lib/modules/chat/index.d.ts +3 -3
- package/lib/modules/chat/index.dev.js +3 -3
- package/lib/modules/chat/index.js +19 -3
- package/lib/modules/chat/message-list.js +24 -3
- package/lib/modules/chat/store.d.ts +3 -3
- package/lib/modules/chat/store.js +45 -79
- 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 +2 -2
- package/lib/modules/connection-gateway/index.js +2 -0
- package/lib/modules/connection-gateway/store.d.ts +1 -2
- package/lib/modules/connection-gateway/store.js +41 -14
- 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/context.d.ts +0 -1
- 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 +2 -0
- 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 +28 -9
- package/lib/modules/dialog/components/chat/electron.js +1 -1
- package/lib/modules/dialog/components/chat/index.js +1 -1
- package/lib/modules/dialog/components/confirm/electron.js +2 -2
- package/lib/modules/dialog/components/confirm/index.js +16 -2
- package/lib/modules/dialog/components/connection-gateway/electron.js +1 -1
- package/lib/modules/dialog/components/device-setting/electron.d.ts +2 -0
- package/lib/modules/dialog/components/device-setting/electron.js +72 -0
- package/lib/modules/dialog/components/device-setting/index.css +27 -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/participant/electron.js +6 -1
- package/lib/modules/dialog/components/share-screen-selection/index.js +1 -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 +46 -91
- package/lib/modules/dialog/index.css +5 -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 +2 -2
- package/lib/modules/dialog/store.js +36 -7
- package/lib/modules/dialog/view.js +2 -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.d.ts +2 -2
- package/lib/modules/invite/pstn-invite.js +3 -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 +9 -8
- package/lib/modules/layout/components/index.css +11 -1
- package/lib/modules/layout/components/index.js +3 -0
- package/lib/modules/layout/context.d.ts +0 -1
- 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 +50 -10
- package/lib/modules/layout/store.d.ts +44 -50
- package/lib/modules/layout/store.js +406 -338
- 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 +4 -3
- 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.js +10 -0
- package/lib/modules/participant/attendee/participants-more-action.js +5 -2
- package/lib/modules/participant/context.d.ts +0 -1
- package/lib/modules/participant/index.d.ts +3 -3
- package/lib/modules/participant/index.dev.js +13 -11
- 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.js +35 -1
- package/lib/modules/participant/store.d.ts +31 -31
- package/lib/modules/participant/store.js +203 -157
- package/lib/modules/participant/view.d.ts +6 -6
- package/lib/modules/participant/view.js +5 -0
- 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.d.ts +2 -2
- package/lib/modules/setting/index.dev.js +13 -11
- 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 +6 -4
- package/lib/modules/setting/store.js +68 -40
- 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 +7 -1
- 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 +2 -2
- package/lib/modules/share-screen/index.dev.js +14 -12
- package/lib/modules/share-screen/index.js +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 +18 -11
- package/lib/modules/share-screen/store.js +656 -570
- package/lib/modules/state-bar/context.d.ts +0 -1
- package/lib/modules/state-bar/index.d.ts +1 -1
- package/lib/modules/state-bar/index.dev.js +11 -9
- 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/recording.js +6 -6
- package/lib/modules/state-bar/store.d.ts +4 -4
- package/lib/modules/state-bar/store.js +50 -5
- package/lib/modules/state-bar/view.js +3 -2
- 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/members/index.js +7 -4
- package/lib/modules/video-window/store.d.ts +3 -2
- package/lib/modules/video-window/store.js +35 -6
- package/lib/modules/video-window/topControl/index.js +7 -0
- package/lib/modules/video-window/view.js +2 -0
- package/lib/modules/whiteboard/app.js +2 -2
- 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 +2 -2
- package/lib/modules/whiteboard/components/pagination/store.d.ts +0 -1
- package/lib/modules/whiteboard/components/progress/electron.js +1 -1
- package/lib/modules/whiteboard/components/progress/style.css +4 -3
- package/lib/modules/whiteboard/components/switch-theme/index.js +9 -2
- package/lib/modules/whiteboard/components/switch-theme/item.js +2 -0
- 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 +4 -2
- 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 +7 -7
- package/lib/modules/whiteboard/components/toolbar/store.js +22 -4
- package/lib/modules/whiteboard/context.d.ts +3 -3
- package/lib/modules/whiteboard/context.js +2 -2
- package/lib/modules/whiteboard/index.d.ts +6 -8
- package/lib/modules/whiteboard/index.js +292 -253
- 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 +4 -4
- 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 +148 -1
- package/lib/translations/enUS.js +156 -7
- package/lib/translations/zhCN.d.ts +148 -1
- package/lib/translations/zhCN.js +152 -3
- package/lib/ui-manager.d.ts +2 -2
- package/lib/ui-manager.js +37 -20
- package/lib/ui-scene.js +6 -1
- package/lib/utilities/board-context.d.ts +0 -1
- package/lib/utilities/constant.d.ts +4 -1
- package/lib/utilities/constant.js +3 -0
- package/lib/utilities/copyText.js +1 -1
- package/lib/utilities/extract.js +26 -3
- package/lib/utilities/hooks.js +2 -0
- package/lib/utilities/renderer-event.js +28 -0
- package/lib/utilities/renderer.js +9 -4
- 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 +8 -7
|
@@ -1,11 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
Selector = 1,
|
|
3
|
-
LaserPointer = 2,
|
|
4
|
-
Eraser = 3,
|
|
5
|
-
Clicker = 4,
|
|
6
|
-
Hand = 5,
|
|
7
|
-
Text = 6
|
|
8
|
-
}
|
|
1
|
+
import { FcrBoardToolType } from 'agora-edu-core/lib/room-control/whiteboard-control/enums';
|
|
9
2
|
export declare enum FcrBoardShape {
|
|
10
3
|
Curve = 1,
|
|
11
4
|
Straight = 2,
|
|
@@ -32,7 +25,7 @@ export type BoardState = {
|
|
|
32
25
|
strokeColor: Color;
|
|
33
26
|
strokeWidth: number;
|
|
34
27
|
textSize: number;
|
|
35
|
-
tool:
|
|
28
|
+
tool: FcrBoardToolType;
|
|
36
29
|
shape: FcrBoardShape;
|
|
37
30
|
};
|
|
38
31
|
export type Color = {
|
|
@@ -58,11 +51,10 @@ export declare enum ToolbarEvents {
|
|
|
58
51
|
SET_THEME = "setTheme",
|
|
59
52
|
SET_COMMON_COLOR = "setCommonColor"
|
|
60
53
|
}
|
|
61
|
-
export declare enum
|
|
54
|
+
export declare enum WhiteboardEvents {
|
|
62
55
|
onJoinSuccess = "onJoinSuccess",
|
|
63
56
|
onJoinFailure = "onJoinFailure",
|
|
64
|
-
onConnectionStateUpdated = "onConnectionStateUpdated"
|
|
65
|
-
onMemberStateChanged = "onMemberStateChanged"
|
|
57
|
+
onConnectionStateUpdated = "onConnectionStateUpdated"
|
|
66
58
|
}
|
|
67
59
|
export declare enum WhiteboardUIEvents {
|
|
68
60
|
handleBoardDomLoad = "handleBoardDomLoad",
|
|
@@ -4,16 +4,7 @@ require("core-js/modules/es.object.define-property.js");
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
|
-
exports.WhiteboardUIEvents = exports.
|
|
8
|
-
var FcrBoardTool = exports.FcrBoardTool = /*#__PURE__*/function (FcrBoardTool) {
|
|
9
|
-
FcrBoardTool[FcrBoardTool["Selector"] = 1] = "Selector";
|
|
10
|
-
FcrBoardTool[FcrBoardTool["LaserPointer"] = 2] = "LaserPointer";
|
|
11
|
-
FcrBoardTool[FcrBoardTool["Eraser"] = 3] = "Eraser";
|
|
12
|
-
FcrBoardTool[FcrBoardTool["Clicker"] = 4] = "Clicker";
|
|
13
|
-
FcrBoardTool[FcrBoardTool["Hand"] = 5] = "Hand";
|
|
14
|
-
FcrBoardTool[FcrBoardTool["Text"] = 6] = "Text";
|
|
15
|
-
return FcrBoardTool;
|
|
16
|
-
}({});
|
|
7
|
+
exports.WhiteboardUIEvents = exports.WhiteboardEvents = exports.WhiteboardControlbarEvents = exports.WhiteboardBaseEvents = exports.ToolbarEvents = exports.LonelyWindowState = exports.FcrBoardShape = exports.FcrBoardRegion = exports.FcrBoardMainWindowFailureReason = void 0;
|
|
17
8
|
var FcrBoardShape = exports.FcrBoardShape = /*#__PURE__*/function (FcrBoardShape) {
|
|
18
9
|
FcrBoardShape[FcrBoardShape["Curve"] = 1] = "Curve";
|
|
19
10
|
FcrBoardShape[FcrBoardShape["Straight"] = 2] = "Straight";
|
|
@@ -58,12 +49,11 @@ var ToolbarEvents = exports.ToolbarEvents = /*#__PURE__*/function (ToolbarEvents
|
|
|
58
49
|
ToolbarEvents["SET_COMMON_COLOR"] = "setCommonColor";
|
|
59
50
|
return ToolbarEvents;
|
|
60
51
|
}({});
|
|
61
|
-
var
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
return WhiteboardRoomEvents;
|
|
52
|
+
var WhiteboardEvents = exports.WhiteboardEvents = /*#__PURE__*/function (WhiteboardEvents) {
|
|
53
|
+
WhiteboardEvents["onJoinSuccess"] = "onJoinSuccess";
|
|
54
|
+
WhiteboardEvents["onJoinFailure"] = "onJoinFailure";
|
|
55
|
+
WhiteboardEvents["onConnectionStateUpdated"] = "onConnectionStateUpdated";
|
|
56
|
+
return WhiteboardEvents;
|
|
67
57
|
}({});
|
|
68
58
|
var WhiteboardUIEvents = exports.WhiteboardUIEvents = /*#__PURE__*/function (WhiteboardUIEvents) {
|
|
69
59
|
WhiteboardUIEvents["handleBoardDomLoad"] = "handleBoardDomLoad";
|
|
@@ -9,3 +9,4 @@ export declare const ZOOM_IN_CANVAS = false;
|
|
|
9
9
|
export declare const toolbarClassName = "fcr-board-toolbar";
|
|
10
10
|
export declare const windowClassName = "netless-whiteboard-wrapper";
|
|
11
11
|
export declare const downloadCanvasImage: (canvas: HTMLCanvasElement, filename?: string) => void;
|
|
12
|
+
export declare const downloadImageData: (imageData: ImageData, filename?: string) => void;
|
|
@@ -4,7 +4,7 @@ require("core-js/modules/es.object.define-property.js");
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", {
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
|
-
exports.windowClassName = exports.widgetContainerClassName = exports.verticalPadding = exports.toolbarClassName = exports.sceneNavHeight = exports.layoutContentClassName = exports.heightPerTool = exports.heightPerColor = exports.downloadCanvasImage = exports.defaultToolsRetain = exports.ZOOM_IN_CANVAS = void 0;
|
|
7
|
+
exports.windowClassName = exports.widgetContainerClassName = exports.verticalPadding = exports.toolbarClassName = exports.sceneNavHeight = exports.layoutContentClassName = exports.heightPerTool = exports.heightPerColor = exports.downloadImageData = exports.downloadCanvasImage = exports.defaultToolsRetain = exports.ZOOM_IN_CANVAS = void 0;
|
|
8
8
|
var heightPerTool = exports.heightPerTool = 36;
|
|
9
9
|
var heightPerColor = exports.heightPerColor = 18;
|
|
10
10
|
var defaultToolsRetain = exports.defaultToolsRetain = heightPerTool * 6;
|
|
@@ -22,4 +22,15 @@ var downloadCanvasImage = exports.downloadCanvasImage = function downloadCanvasI
|
|
|
22
22
|
a.download = filename;
|
|
23
23
|
a.href = canvas.toDataURL();
|
|
24
24
|
a.click();
|
|
25
|
+
};
|
|
26
|
+
var downloadImageData = exports.downloadImageData = function downloadImageData(imageData) {
|
|
27
|
+
var filename = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'fcr-board-snapshot.jpg';
|
|
28
|
+
var canvas = document.createElement('canvas');
|
|
29
|
+
canvas.width = imageData.width;
|
|
30
|
+
canvas.height = imageData.height;
|
|
31
|
+
var ctx = canvas.getContext('2d');
|
|
32
|
+
if (ctx) {
|
|
33
|
+
ctx.putImageData(imageData, 0, 0);
|
|
34
|
+
downloadCanvasImage(canvas, filename);
|
|
35
|
+
}
|
|
25
36
|
};
|
|
@@ -15,7 +15,7 @@ var _agoraEduCore = require("agora-edu-core");
|
|
|
15
15
|
* @returns 房间ID
|
|
16
16
|
*/
|
|
17
17
|
var createRoom = /*#__PURE__*/function () {
|
|
18
|
-
var _ref = (0, _asyncToGenerator2["default"])(
|
|
18
|
+
var _ref = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee(roomName) {
|
|
19
19
|
var url, res, json;
|
|
20
20
|
return _regenerator["default"].wrap(function _callee$(_context) {
|
|
21
21
|
while (1) switch (_context.prev = _context.next) {
|
|
@@ -63,7 +63,7 @@ var createRoom = /*#__PURE__*/function () {
|
|
|
63
63
|
* @returns
|
|
64
64
|
*/
|
|
65
65
|
var getUserToken = /*#__PURE__*/function () {
|
|
66
|
-
var _ref2 = (0, _asyncToGenerator2["default"])(
|
|
66
|
+
var _ref2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee2(roomId, userId, userName, role) {
|
|
67
67
|
var url, res, json;
|
|
68
68
|
return _regenerator["default"].wrap(function _callee2$(_context2) {
|
|
69
69
|
while (1) switch (_context2.prev = _context2.next) {
|
|
@@ -105,8 +105,8 @@ var getUserToken = /*#__PURE__*/function () {
|
|
|
105
105
|
var roomId = 'test-room';
|
|
106
106
|
var userId = "test-user-".concat(Date.now());
|
|
107
107
|
var role = 'host';
|
|
108
|
-
window.__DEV_ENGINE_IS_READY__ = createRoom(roomId).then(
|
|
109
|
-
var _ref3 = (0, _asyncToGenerator2["default"])(
|
|
108
|
+
window.__DEV_ENGINE_IS_READY__ = createRoom(roomId).then(/*#__PURE__*/function () {
|
|
109
|
+
var _ref3 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee3(roomId) {
|
|
110
110
|
return _regenerator["default"].wrap(function _callee3$(_context3) {
|
|
111
111
|
while (1) switch (_context3.prev = _context3.next) {
|
|
112
112
|
case 0:
|
|
@@ -4,6 +4,8 @@ var _i18n = require("agora-ui-foundation/lib/i18n");
|
|
|
4
4
|
var _zhCN = require("../translations/zhCN");
|
|
5
5
|
var _enUS = require("../translations/enUS");
|
|
6
6
|
var _logger = require("agora-foundation/lib/logger");
|
|
7
|
+
//@internal
|
|
8
|
+
|
|
7
9
|
var logger = (0, _logger.getLogger)();
|
|
8
10
|
(0, _i18n.addResourceBundle)('zh', _zhCN.zhCn).then(function () {
|
|
9
11
|
logger.info('zh language pack has been loaded');
|
package/lib/runtime.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
export {};
|
|
3
2
|
declare global {
|
|
4
3
|
interface NetworkType {
|
|
5
4
|
isWifiConnected: boolean;
|
|
@@ -60,7 +59,7 @@ declare global {
|
|
|
60
59
|
setAlwaysOnTop(): void;
|
|
61
60
|
quitApp(): void;
|
|
62
61
|
getSystemMemorySize(): number;
|
|
63
|
-
getSystemCpuInfo(): CpuInfo[];
|
|
62
|
+
getSystemCpuInfo(): import('os').CpuInfo[];
|
|
64
63
|
getNetworkType(): Promise<NetworkType>;
|
|
65
64
|
getAssetUrl(path: string): string;
|
|
66
65
|
getRendererProcessUsage(): Promise<{
|
|
@@ -76,11 +75,10 @@ declare global {
|
|
|
76
75
|
registerListenerReady(): void;
|
|
77
76
|
releaseSubAllWindowRefs(): void;
|
|
78
77
|
getMediaSourceIdList(): { title: string; mediaSourceId: string }[];
|
|
78
|
+
releaseAllWindows(): void;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
interface Window {
|
|
82
82
|
runtime: Runtime;
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
|
-
|
|
86
|
-
export {};
|
|
@@ -253,6 +253,8 @@ export declare const enUs: {
|
|
|
253
253
|
fmt_device_inspection_turn_on_camera: string;
|
|
254
254
|
fmt_device_label_inspection_switch_camera: string;
|
|
255
255
|
fmt_device_label_inspection_speaker_on: string;
|
|
256
|
+
fmt_device_label_speaker_follow_system: string;
|
|
257
|
+
fmt_device_label_speaker_default: string;
|
|
256
258
|
fmt_device_inspection_turn_on_speaker: string;
|
|
257
259
|
fmt_device_inspection_start_meeting: string;
|
|
258
260
|
fmt_device_label_inspection_audio_route_speaker: string;
|
|
@@ -317,7 +319,6 @@ export declare const enUs: {
|
|
|
317
319
|
fmt_uimanager_option_Sharedmono: string;
|
|
318
320
|
fmt_uimanager_option_Monochannel: string;
|
|
319
321
|
fmt_uimanager_option_Stereo: string;
|
|
320
|
-
fmt_uimanager_option_Improvefluency: string;
|
|
321
322
|
fmt_uimanager_option_Fluencypriority: string;
|
|
322
323
|
fmt_uimanager_option_Movebottom: string;
|
|
323
324
|
fmt_uimanager_option_Movetop: string;
|
|
@@ -801,6 +802,7 @@ export declare const enUs: {
|
|
|
801
802
|
fmt_internalsetting_tips_optimizevideo: string;
|
|
802
803
|
fmt_internalsetting_tips_reducevideo: string;
|
|
803
804
|
fmt_internalsetting_labels_currency: string;
|
|
805
|
+
fmt_internalsetting_labels_audiovisual: string;
|
|
804
806
|
fmt_internalsetting_labels_application: string;
|
|
805
807
|
fmt_internalsetting_labels_other: string;
|
|
806
808
|
fmt_internalsetting_labels_bandwidth: string;
|
|
@@ -990,4 +992,149 @@ export declare const enUs: {
|
|
|
990
992
|
fmt_SIP323_copywrite_phonenumber: string;
|
|
991
993
|
fmt_SIP323_options_detailedinfor: string;
|
|
992
994
|
fmt_SIP323_tips_alreadycopied: string;
|
|
995
|
+
fmt_waitingroom_setting_option_enable_waitingroom: string;
|
|
996
|
+
fmt_waitingroom_setting_option_close_waitingroom: string;
|
|
997
|
+
fmt_waitingroom_setting_popup_close_waitingroom: string;
|
|
998
|
+
fmt_waitingroom_setting_tips_choose: string;
|
|
999
|
+
fmt_waitingroom_setting_button_admit_all: string;
|
|
1000
|
+
fmt_waitingroom_setting_button_remove_all: string;
|
|
1001
|
+
fmt_waitingroom_setting_button_cancel: string;
|
|
1002
|
+
fmt_waitingroom_sidebar_move_to_waitingroom: string;
|
|
1003
|
+
fmt_waitingroom_sidebar_label_waiting: string;
|
|
1004
|
+
fmt_waitingroom_sidebar_label_search: string;
|
|
1005
|
+
fmt_waitingroom_sidebar_button_invite: string;
|
|
1006
|
+
fmt_waitingroom_sidebar_button_admit: string;
|
|
1007
|
+
fmt_waitingroom_sidebar_button_more: string;
|
|
1008
|
+
fmt_waitingroom_sidebar_button_private: string;
|
|
1009
|
+
fmt_waitingroom_sidebar_button_remove: string;
|
|
1010
|
+
fmt_waitingroom_sidebar_button_removeall: string;
|
|
1011
|
+
fmt_waitingroom_sidebar_button_admitall: string;
|
|
1012
|
+
fmt_waitingroom_sidebar_popup_removeall: string;
|
|
1013
|
+
fmt_waitingroom_sidebar_popup_label_remove: string;
|
|
1014
|
+
fmt_waitingroom_sidebar_popup_option_notagain: string;
|
|
1015
|
+
fmt_waitingroom_sidebar_popup_button_cancel: string;
|
|
1016
|
+
fmt_waitingroom_sidebar_popup_button_remove: string;
|
|
1017
|
+
fmt_waitingroom_sidebar_popup_popup_admit: string;
|
|
1018
|
+
fmt_waitingroom_sidebar_popup_label_admitall: string;
|
|
1019
|
+
fmt_waitingroom_sidebar_popup_button_admitall: string;
|
|
1020
|
+
fmt_waitingroom_attendie_popup_label_removed: string;
|
|
1021
|
+
fmt_waitingroom_attendie_popup_button_gotit: string;
|
|
1022
|
+
fmt_waitingroom_sidebar_chat_label_waiting: string;
|
|
1023
|
+
fmt_waitingroom_sidebar_chat_label_notsend: string;
|
|
1024
|
+
fmt_waitingroom_sidebar_chat_label_all_attendees: string;
|
|
1025
|
+
fmt_waitingroom_mainwindow_popup_label_waitingroom: string;
|
|
1026
|
+
fmt_waitingroom_mainwindow_popup_label_waiting: string;
|
|
1027
|
+
fmt_waitingroom_mainwindow_popup_button_view_detailed: string;
|
|
1028
|
+
fmt_waitingroom_mainwindow_popup_button_not_remind: string;
|
|
1029
|
+
fmt_waitingroom_attendie_popup_label_Leave: string;
|
|
1030
|
+
fmt_waitingroom_attendie_popup_label_click_leave: string;
|
|
1031
|
+
fmt_waitingroom_attendie_overview_label_waitingroom: string;
|
|
1032
|
+
fmt_waitingroom_attendie_overview_label_wait_moment: string;
|
|
1033
|
+
fmt_waitingroom_attendie_overview_label_attendees: string;
|
|
1034
|
+
fmt_waitingroom_attendie_overview_label_no_messages: string;
|
|
1035
|
+
fmt_waitingroom_mobile_setting_label_enable: string;
|
|
1036
|
+
fmt_waitingroom_mobile_setting_label_disable: string;
|
|
1037
|
+
fmt_waitingroom_mobile_setting_popup_label_close: string;
|
|
1038
|
+
fmt_waitingroom_mobile_setting_popup_label_choose: string;
|
|
1039
|
+
fmt_waitingroom_mobile_setting_popup_button_admit_all: string;
|
|
1040
|
+
fmt_waitingroom_mobile_setting_popup_button_remove_all: string;
|
|
1041
|
+
fmt_waitingroom_mobile_setting_popup_button_cancel: string;
|
|
1042
|
+
fmt_waitingroom_mobile_setting_tips_deactivate: string;
|
|
1043
|
+
fmt_waitingroom_mobile_setting_tips_disable: string;
|
|
1044
|
+
fmt_waitingroom_mobile_setting_button_move_into_waitingroom: string;
|
|
1045
|
+
fmt_waitingroom_mobile_memberlist_label_: string;
|
|
1046
|
+
fmt_waitingroom_mobile_memberlist_popup_label_search: string;
|
|
1047
|
+
fmt_waitingroom_mobile_memberlist_popup_moveout: string;
|
|
1048
|
+
fmt_waitingroom_mobile_memberlist_button_admit: string;
|
|
1049
|
+
fmt_waitingroom_mobile_memberlist_button_privatechat: string;
|
|
1050
|
+
fmt_waitingroom_mobile_memberlist_popup_label_remove: string;
|
|
1051
|
+
fmt_waitingroom_mobile_memberlist_popup_label_sure_remove: string;
|
|
1052
|
+
fmt_waitingroom_mobile_memberlist_options_not_allowed: string;
|
|
1053
|
+
fmt_waitingroom_mobile_memberlist_button_cancel: string;
|
|
1054
|
+
fmt_waitingroom_mobile_memberlist_button_remove: string;
|
|
1055
|
+
fmt_waitingroom_mobile_memberlist_popup_label_remove_all: string;
|
|
1056
|
+
fmt_waitingroom_mobile_memberlist_popup_label_sure_to_remove_all: string;
|
|
1057
|
+
fmt_waitingroom_mobile_memberlist_button_remove_all: string;
|
|
1058
|
+
fmt_waitingroom_mobile_memberlist_popup_label_admit_all: string;
|
|
1059
|
+
fmt_waitingroom_mobile_memberlist_popup_label_sure_to_admit_all: string;
|
|
1060
|
+
fmt_waitingroom_mobile_memberlist_tips_all_removed: string;
|
|
1061
|
+
fmt_waitingroom_mobile_memberlist_tips_removed: string;
|
|
1062
|
+
fmt_waitingroom_mobile_memberlist_tips_all_amitted: string;
|
|
1063
|
+
fmt_waitingroom_mobile_chat_label_send_to: string;
|
|
1064
|
+
fmt_waitingroom_mobile_chat_label_input: string;
|
|
1065
|
+
fmt_waitingroom_mobile_chat_label_private_chat: string;
|
|
1066
|
+
fmt_waitingroom_mobile_chat_label_all_waitingroom_member: string;
|
|
1067
|
+
fmt_waitingroom_mobile_chat_label_all_meeting_member: string;
|
|
1068
|
+
fmt_waitingroom_mobile_notice_label_waitingroom: string;
|
|
1069
|
+
fmt_waitingroom_mobile_notice_label_enabled: string;
|
|
1070
|
+
fmt_waitingroom_mobile_notice_popup_label_about_join: string;
|
|
1071
|
+
fmt_waitingroom_mobile_notice_popup_label_quick_join: string;
|
|
1072
|
+
fmt_waitingroom_mobile_notice_popup_button_join_now: string;
|
|
1073
|
+
fmt_waitingroom_mobile_notice_popup_label_waitinglist: string;
|
|
1074
|
+
fmt_waitingroom_mobile_notice_popup_button_dont_remind: string;
|
|
1075
|
+
fmt_waitingroom_mobile_notice_popup_button_view_detailed: string;
|
|
1076
|
+
fmt_ai_transcriptions_setting_label_source: string;
|
|
1077
|
+
fmt_ai_transcriptions_setting_label_live_language: string;
|
|
1078
|
+
fmt_ai_transcriptions_setting_label_translate_to: string;
|
|
1079
|
+
fmt_ai_transcriptions_setting_label_effects: string;
|
|
1080
|
+
fmt_ai_transcriptions_setting_option_bilingualism: string;
|
|
1081
|
+
fmt_ai_transcriptions_setting_label_translator: string;
|
|
1082
|
+
fmt_ai_transcriptions_setting_label_visable_range: string;
|
|
1083
|
+
fmt_ai_transcriptions_setting_option_noton: string;
|
|
1084
|
+
fmt_ai_transcriptions_setting_option_english_translation: string;
|
|
1085
|
+
fmt_ai_transcriptions_setting_option_translate_: string;
|
|
1086
|
+
fmt_ai_subtitles_setting_label_subtitle_setting: string;
|
|
1087
|
+
fmt_ai_subtitles_setting_label_fontsize: string;
|
|
1088
|
+
fmt_ai_subtitles_setting_label_sample_chi: string;
|
|
1089
|
+
fmt_ai_subtitles_setting_label_sample_eng: string;
|
|
1090
|
+
fmt_ai_subtitles_setting_label_translation_setting: string;
|
|
1091
|
+
fmt_ai_subtitles_setting_label_effect_range: string;
|
|
1092
|
+
fmt_ai_subtitles_setting_options_no_translation: string;
|
|
1093
|
+
fmt_ai_subtitles_setting_options_chinese: string;
|
|
1094
|
+
fmt_ai_subtitles_setting_options_english: string;
|
|
1095
|
+
fmt_ai_subtitles_setting_options_subltitle_bilingual: string;
|
|
1096
|
+
fmt_ai_subtitles_setting_options_translation_bilingual: string;
|
|
1097
|
+
fmt_ai_subtitles_setting_options_translation_restore_default: string;
|
|
1098
|
+
fmt_ai_subtitles_setting_options_view_translation: string;
|
|
1099
|
+
fmt_ai_subtitles_setting_label_subtitle: string;
|
|
1100
|
+
fmt_ai_subtitles_setting_label_source_language: string;
|
|
1101
|
+
fmt_ai_subtitles_setting_label_translate_to: string;
|
|
1102
|
+
fmt_ai_subtitles_setting_label_bilingual_display: string;
|
|
1103
|
+
fmt_ai_subtitles_setting_label_hot_words: string;
|
|
1104
|
+
fmt_ai_subtitles_setting_label_hot_words_add: string;
|
|
1105
|
+
fmt_ai_subtitles_setting_button_button: string;
|
|
1106
|
+
fmt_ai_transcriptions_toolbar_button_realtime_transcription: string;
|
|
1107
|
+
fmt_ai_transcriptions_toolbar_options_translator: string;
|
|
1108
|
+
fmt_ai_transcriptions_toolbar_options_enable_translation: string;
|
|
1109
|
+
fmt_ai_transcriptions_toolbar_options_settings: string;
|
|
1110
|
+
fmt_ai_transcriptions_toolbar_popup_valid: string;
|
|
1111
|
+
fmt_ai_transcriptions_sidebar_label_realtime_translation: string;
|
|
1112
|
+
fmt_ai_transcriptions_sidebar_label_search: string;
|
|
1113
|
+
fmt_ai_transcriptions_sidebar_tips_turnon: string;
|
|
1114
|
+
fmt_ai_transcriptions_sidebar_tips_stopped: string;
|
|
1115
|
+
fmt_ai_transcriptions_sidebar_button_stop_translation: string;
|
|
1116
|
+
fmt_ai_transcriptions_sidebar_button_start_translation: string;
|
|
1117
|
+
fmt_ai_summary_create_option_create_summary: string;
|
|
1118
|
+
fmt_ai_summary_create_labels_meeting_list: string;
|
|
1119
|
+
fmt_ai_summary_create_labels_valid_records: string;
|
|
1120
|
+
fmt_ai_summary_create_labels_meetingID: string;
|
|
1121
|
+
fmt_ai_summary_create_labels_meeting_time: string;
|
|
1122
|
+
fmt_ai_summary_create_labels_not_opened: string;
|
|
1123
|
+
fmt_ai_summary_detail_label_data_analysis: string;
|
|
1124
|
+
fmt_ai_summary_detail_label_meeting_summary: string;
|
|
1125
|
+
fmt_ai_summary_detail_label_transcription: string;
|
|
1126
|
+
fmt_ai_summary_detail_label_search: string;
|
|
1127
|
+
fmt_ai_summary_detail_button_transcription_management: string;
|
|
1128
|
+
fmt_ai_summary_detail_label_no_content: string;
|
|
1129
|
+
fmt_ai_summary_setting_label_AI: string;
|
|
1130
|
+
fmt_ai_summary_setting_label_LLM_choose: string;
|
|
1131
|
+
fmt_ai_summary_setting_label_llm_range: string;
|
|
1132
|
+
fmt_ai_summary_setting_option_tingwu: string;
|
|
1133
|
+
fmt_ai_summary_setting_option_zhipu: string;
|
|
1134
|
+
fmt_ai_summary_setting_option_moonshot: string;
|
|
1135
|
+
fmt_ai_summary_setting_option_openai: string;
|
|
1136
|
+
fmt_ai_summary_setting_label_agent: string;
|
|
1137
|
+
fmt_ai_summary_setting_option_meeting_assistant: string;
|
|
1138
|
+
fmt_ai_summary_setting_option_teacher: string;
|
|
1139
|
+
fmt_ai_summary_setting_option_sales_manager: string;
|
|
993
1140
|
};
|
package/lib/translations/enUS.js
CHANGED
|
@@ -7,14 +7,15 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
7
7
|
exports.enUs = void 0;
|
|
8
8
|
var enUs = exports.enUs = {
|
|
9
9
|
fmt_role_host: 'Host',
|
|
10
|
+
//****************** ls ******************
|
|
10
11
|
fmt_role_participant: 'Attendees',
|
|
11
12
|
fmt_role_cohost: 'Co host',
|
|
12
13
|
fmt_participants_label_participants: 'Member List',
|
|
13
14
|
fmt_participants_label_popUp: 'Eject',
|
|
14
15
|
fmt_participants_window_title: 'Attendees{reason1}',
|
|
15
16
|
fmt_participants_button_muteAll: 'All staff are muted',
|
|
16
|
-
fmt_participants_button_unmuteAll: '
|
|
17
|
-
fmt_participants_button_meetingManagement: '
|
|
17
|
+
fmt_participants_button_unmuteAll: 'Unmute all',
|
|
18
|
+
fmt_participants_button_meetingManagement: 'Settings',
|
|
18
19
|
fmt_participants_button_invite: 'Invitation',
|
|
19
20
|
fmt_participants_member_button_mute: 'Mute',
|
|
20
21
|
fmt_participants_member_button_unmute: 'Unmute',
|
|
@@ -41,7 +42,7 @@ var enUs = exports.enUs = {
|
|
|
41
42
|
fmt_attendies_options_putinwaitingroom: 'Put it in the waiting room',
|
|
42
43
|
fmt_attendies_button_remove: 'Remove',
|
|
43
44
|
fmt_participants_options_allunmute: 'Allow all members to self unmute',
|
|
44
|
-
fmt_participants_options_allmute: '
|
|
45
|
+
fmt_participants_options_allmute: 'Mute all',
|
|
45
46
|
fmt_modules_tips_mergevideo: 'Merge with video',
|
|
46
47
|
fmt_participant_label_Me: 'Me',
|
|
47
48
|
fmt_attendies_button_serach: 'Search',
|
|
@@ -263,6 +264,8 @@ var enUs = exports.enUs = {
|
|
|
263
264
|
fmt_device_inspection_turn_on_camera: 'Open Camera',
|
|
264
265
|
fmt_device_label_inspection_switch_camera: 'Flip over',
|
|
265
266
|
fmt_device_label_inspection_speaker_on: 'Speaker on',
|
|
267
|
+
fmt_device_label_speaker_follow_system: 'Follow System - {reason1}',
|
|
268
|
+
fmt_device_label_speaker_default: 'default ',
|
|
266
269
|
fmt_device_inspection_turn_on_speaker: 'Open speaker',
|
|
267
270
|
fmt_device_inspection_start_meeting: 'Join Meeting',
|
|
268
271
|
fmt_device_label_inspection_audio_route_speaker: 'Speaker',
|
|
@@ -327,7 +330,6 @@ var enUs = exports.enUs = {
|
|
|
327
330
|
fmt_uimanager_option_Sharedmono: 'Shared mono',
|
|
328
331
|
fmt_uimanager_option_Monochannel: 'Mono channel',
|
|
329
332
|
fmt_uimanager_option_Stereo: 'Stereo (high fidelity)',
|
|
330
|
-
fmt_uimanager_option_Improvefluency: 'Improve video fluency',
|
|
331
333
|
fmt_uimanager_option_Fluencypriority: 'Fluency first',
|
|
332
334
|
fmt_uimanager_option_Movebottom: 'Move to the bottom',
|
|
333
335
|
fmt_uimanager_option_Movetop: 'Move to the top',
|
|
@@ -349,7 +351,7 @@ var enUs = exports.enUs = {
|
|
|
349
351
|
fmt_chat_label_chat: 'Chat',
|
|
350
352
|
fmt_chat_window_title: 'Chat',
|
|
351
353
|
fmt_chat_setting_privilege: 'Attendees can chat with:',
|
|
352
|
-
fmt_chat_setting_privilege_list_no: '
|
|
354
|
+
fmt_chat_setting_privilege_list_no: 'Nobody',
|
|
353
355
|
fmt_chat_setting_privilege_list_everyone: 'All',
|
|
354
356
|
fmt_chat_window_position_popup: 'Independent pop-up',
|
|
355
357
|
fmt_chat_window_position_merge: 'Merge into the main window',
|
|
@@ -376,7 +378,7 @@ var enUs = exports.enUs = {
|
|
|
376
378
|
fmt_chat_options_Notapplicable: 'Not applicable',
|
|
377
379
|
fmt_chat_label_Chatmanagement: 'Chat management',
|
|
378
380
|
fmt_chat_button_MultipleChoice: 'Multiple Choice',
|
|
379
|
-
fmt_chat_tips_otherpartyleave: 'The
|
|
381
|
+
fmt_chat_tips_otherpartyleave: 'The attendie cannot receive messages. Please select another one to chat with.',
|
|
380
382
|
fmt_chat_options_onlyprivatechat: 'Private chat with the host and co host',
|
|
381
383
|
fmt_chat_tips_chatpermissionchange: 'The chat room permissions have changed to only host and co host can private chat ',
|
|
382
384
|
fmt_pairicipant_tips_cohostbeenrevoke: 'Your co host identity has been revoked',
|
|
@@ -821,6 +823,7 @@ var enUs = exports.enUs = {
|
|
|
821
823
|
fmt_internalsetting_tips_optimizevideo: 'After selecting, software based noise cancellation will optimize video quality',
|
|
822
824
|
fmt_internalsetting_tips_reducevideo: 'After selecting, hardware codecs will reduce the CPU consumption of video codecs',
|
|
823
825
|
fmt_internalsetting_labels_currency: 'Currency',
|
|
826
|
+
fmt_internalsetting_labels_audiovisual: 'audiovisual',
|
|
824
827
|
fmt_internalsetting_labels_application: 'This application',
|
|
825
828
|
fmt_internalsetting_labels_other: 'Other',
|
|
826
829
|
fmt_internalsetting_labels_bandwidth: 'Bandwidth',
|
|
@@ -1012,5 +1015,151 @@ var enUs = exports.enUs = {
|
|
|
1012
1015
|
fmt_pstn_status_raining: 'Ringing the bell',
|
|
1013
1016
|
fmt_SIP323_copywrite_phonenumber: 'Mobile phone number (required)',
|
|
1014
1017
|
fmt_SIP323_options_detailedinfor: 'Copy meeting detail',
|
|
1015
|
-
fmt_SIP323_tips_alreadycopied: 'Already copied on the clipboard'
|
|
1018
|
+
fmt_SIP323_tips_alreadycopied: 'Already copied on the clipboard',
|
|
1019
|
+
fmt_waitingroom_setting_option_enable_waitingroom: 'Enable Waiting Room ',
|
|
1020
|
+
fmt_waitingroom_setting_option_close_waitingroom: 'Disable Waiting Room',
|
|
1021
|
+
fmt_waitingroom_setting_popup_close_waitingroom: 'Closing the Waiting Room?',
|
|
1022
|
+
fmt_waitingroom_setting_tips_choose: '{reason1} members are still in the waiting room, Do you want to move them out of the meeting or into the conference room?',
|
|
1023
|
+
fmt_waitingroom_setting_button_admit_all: 'Admit all Waiting Room users',
|
|
1024
|
+
fmt_waitingroom_setting_button_remove_all: 'Remove all Waiting Room users',
|
|
1025
|
+
fmt_waitingroom_setting_button_cancel: 'Cancel',
|
|
1026
|
+
fmt_waitingroom_sidebar_move_to_waitingroom: 'Move out to the waiting room',
|
|
1027
|
+
fmt_waitingroom_sidebar_label_waiting: 'Waiting Room{reason1}',
|
|
1028
|
+
fmt_waitingroom_sidebar_label_search: 'Search',
|
|
1029
|
+
fmt_waitingroom_sidebar_button_invite: 'Invite',
|
|
1030
|
+
fmt_waitingroom_sidebar_button_admit: 'Admit',
|
|
1031
|
+
fmt_waitingroom_sidebar_button_more: 'More',
|
|
1032
|
+
fmt_waitingroom_sidebar_button_private: 'Private Chat',
|
|
1033
|
+
fmt_waitingroom_sidebar_button_remove: 'Remove',
|
|
1034
|
+
fmt_waitingroom_sidebar_button_removeall: 'Remove all',
|
|
1035
|
+
fmt_waitingroom_sidebar_button_admitall: 'Admit all',
|
|
1036
|
+
fmt_waitingroom_sidebar_popup_removeall: 'Remove waiting Attendee',
|
|
1037
|
+
fmt_waitingroom_sidebar_popup_label_remove: 'Are you sure you want to remove {reason1} from the waiting room?',
|
|
1038
|
+
fmt_waitingroom_sidebar_popup_option_notagain: 'Do not allow the user to join the meeting again ',
|
|
1039
|
+
fmt_waitingroom_sidebar_popup_button_cancel: 'Cancel',
|
|
1040
|
+
fmt_waitingroom_sidebar_popup_button_remove: 'Remove',
|
|
1041
|
+
fmt_waitingroom_sidebar_popup_popup_admit: 'Admit Waiting Attendee',
|
|
1042
|
+
fmt_waitingroom_sidebar_popup_label_admitall: 'Do you want to admit all attendees in the waiting room to the meeting?',
|
|
1043
|
+
fmt_waitingroom_sidebar_popup_button_admitall: 'Admit All ',
|
|
1044
|
+
fmt_waitingroom_attendie_popup_label_removed: 'You are removed from the meetin ,failed to join',
|
|
1045
|
+
fmt_waitingroom_attendie_popup_button_gotit: 'Got it ',
|
|
1046
|
+
fmt_waitingroom_sidebar_chat_label_waiting: 'Waiting Room{reason1}',
|
|
1047
|
+
fmt_waitingroom_sidebar_chat_label_notsend: 'Atteendees can not send messages while stay in the meeting room',
|
|
1048
|
+
fmt_waitingroom_sidebar_chat_label_all_attendees: 'All attendees in the waiting room',
|
|
1049
|
+
fmt_waitingroom_mainwindow_popup_label_waitingroom: 'Waiting room',
|
|
1050
|
+
fmt_waitingroom_mainwindow_popup_label_waiting: '{reason1} mans waiting',
|
|
1051
|
+
fmt_waitingroom_mainwindow_popup_button_view_detailed: 'View detailed ',
|
|
1052
|
+
fmt_waitingroom_mainwindow_popup_button_not_remind: 'Do not remind ',
|
|
1053
|
+
fmt_waitingroom_attendie_popup_label_Leave: 'Leave meeting',
|
|
1054
|
+
fmt_waitingroom_attendie_popup_label_click_leave: 'You are removed from the meeting, click the button to leave.',
|
|
1055
|
+
fmt_waitingroom_attendie_overview_label_waitingroom: 'Waiting Room',
|
|
1056
|
+
fmt_waitingroom_attendie_overview_label_wait_moment: 'The host has activated the waiting room,please wait a moment.',
|
|
1057
|
+
fmt_waitingroom_attendie_overview_label_attendees: 'Atendees in the waiting room',
|
|
1058
|
+
fmt_waitingroom_attendie_overview_label_no_messages: 'No messages by now ',
|
|
1059
|
+
fmt_waitingroom_mobile_setting_label_enable: 'Enable Waiting Room ',
|
|
1060
|
+
fmt_waitingroom_mobile_setting_label_disable: 'Disable Waiting Room',
|
|
1061
|
+
fmt_waitingroom_mobile_setting_popup_label_close: 'Closing the Waiting Room?',
|
|
1062
|
+
fmt_waitingroom_mobile_setting_popup_label_choose: '{reason1} members are still in the waiting room, Do you want to move them out of the meeting or into the conference room?',
|
|
1063
|
+
fmt_waitingroom_mobile_setting_popup_button_admit_all: 'Admit all Waiting Room users',
|
|
1064
|
+
fmt_waitingroom_mobile_setting_popup_button_remove_all: 'Remove all Waiting Room users',
|
|
1065
|
+
fmt_waitingroom_mobile_setting_popup_button_cancel: 'Cancel',
|
|
1066
|
+
fmt_waitingroom_mobile_setting_tips_deactivate: '{reason1} The Waiting Room has been deactivated',
|
|
1067
|
+
fmt_waitingroom_mobile_setting_tips_disable: "You've disabled the Waiting Room",
|
|
1068
|
+
fmt_waitingroom_mobile_setting_button_move_into_waitingroom: 'Move into the waiting room',
|
|
1069
|
+
fmt_waitingroom_mobile_memberlist_label_: 'Waiting Room',
|
|
1070
|
+
fmt_waitingroom_mobile_memberlist_popup_label_search: 'Search',
|
|
1071
|
+
fmt_waitingroom_mobile_memberlist_popup_moveout: 'Move out',
|
|
1072
|
+
fmt_waitingroom_mobile_memberlist_button_admit: 'Admit',
|
|
1073
|
+
fmt_waitingroom_mobile_memberlist_button_privatechat: 'Private chat',
|
|
1074
|
+
fmt_waitingroom_mobile_memberlist_popup_label_remove: 'Remove the waiting room member',
|
|
1075
|
+
fmt_waitingroom_mobile_memberlist_popup_label_sure_remove: 'Removing {reason1} from the Waiting Room?',
|
|
1076
|
+
fmt_waitingroom_mobile_memberlist_options_not_allowed: 'The user is not allowed to join the meeting again',
|
|
1077
|
+
fmt_waitingroom_mobile_memberlist_button_cancel: 'Cancel',
|
|
1078
|
+
fmt_waitingroom_mobile_memberlist_button_remove: 'Remove',
|
|
1079
|
+
fmt_waitingroom_mobile_memberlist_popup_label_remove_all: 'Remove all waiting room members?',
|
|
1080
|
+
fmt_waitingroom_mobile_memberlist_popup_label_sure_to_remove_all: 'Remove all waiting room members?',
|
|
1081
|
+
fmt_waitingroom_mobile_memberlist_button_remove_all: 'Remove all',
|
|
1082
|
+
fmt_waitingroom_mobile_memberlist_popup_label_admit_all: 'All members are admitted to the meeting ',
|
|
1083
|
+
fmt_waitingroom_mobile_memberlist_popup_label_sure_to_admit_all: 'Whether to allow all waiting room members to join the meeting',
|
|
1084
|
+
fmt_waitingroom_mobile_memberlist_tips_all_removed: 'All removed',
|
|
1085
|
+
fmt_waitingroom_mobile_memberlist_tips_removed: 'Removed',
|
|
1086
|
+
fmt_waitingroom_mobile_memberlist_tips_all_amitted: 'All admitted',
|
|
1087
|
+
fmt_waitingroom_mobile_chat_label_send_to: 'Send to',
|
|
1088
|
+
fmt_waitingroom_mobile_chat_label_input: 'Please input',
|
|
1089
|
+
fmt_waitingroom_mobile_chat_label_private_chat: 'Private Chat',
|
|
1090
|
+
fmt_waitingroom_mobile_chat_label_all_waitingroom_member: 'Everyone in the waiting room ',
|
|
1091
|
+
fmt_waitingroom_mobile_chat_label_all_meeting_member: 'Everyone in the meeting',
|
|
1092
|
+
fmt_waitingroom_mobile_notice_label_waitingroom: 'Waiting room',
|
|
1093
|
+
fmt_waitingroom_mobile_notice_label_enabled: 'The host has enabled the waiting room,please wait until the host invite you to the meeting soon',
|
|
1094
|
+
fmt_waitingroom_mobile_notice_popup_label_about_join: 'You are about to enter the conference room',
|
|
1095
|
+
fmt_waitingroom_mobile_notice_popup_label_quick_join: 'The meeting moderator has invited you to the meeting, click the button to quickly enter the meeting',
|
|
1096
|
+
fmt_waitingroom_mobile_notice_popup_button_join_now: 'Join now',
|
|
1097
|
+
fmt_waitingroom_mobile_notice_popup_label_waitinglist: 'There are {reason1} people waiting in the waiting room',
|
|
1098
|
+
fmt_waitingroom_mobile_notice_popup_button_dont_remind: 'No more reminds',
|
|
1099
|
+
fmt_waitingroom_mobile_notice_popup_button_view_detailed: 'View detailed',
|
|
1100
|
+
fmt_ai_transcriptions_setting_label_source: 'Source language',
|
|
1101
|
+
fmt_ai_transcriptions_setting_label_live_language: 'Live language ',
|
|
1102
|
+
fmt_ai_transcriptions_setting_label_translate_to: 'Translate to ',
|
|
1103
|
+
fmt_ai_transcriptions_setting_label_effects: 'It takes effect for transcriptions and transcriptions, the translated content will only be visible to you',
|
|
1104
|
+
fmt_ai_transcriptions_setting_option_bilingualism: 'Bilingualism is displayed at the same time',
|
|
1105
|
+
fmt_ai_transcriptions_setting_label_translator: 'Translator',
|
|
1106
|
+
fmt_ai_transcriptions_setting_label_visable_range: 'Real-time simultaneous interpretation, visible only to yourself',
|
|
1107
|
+
fmt_ai_transcriptions_setting_option_noton: 'Do not turn on',
|
|
1108
|
+
fmt_ai_transcriptions_setting_option_english_translation: 'English to Chines',
|
|
1109
|
+
fmt_ai_transcriptions_setting_option_translate_: 'Chinese to English',
|
|
1110
|
+
fmt_ai_subtitles_setting_label_subtitle_setting: 'Subtitle settings',
|
|
1111
|
+
fmt_ai_subtitles_setting_label_fontsize: 'Font size',
|
|
1112
|
+
fmt_ai_subtitles_setting_label_sample_chi: '字幕文字大小示例',
|
|
1113
|
+
fmt_ai_subtitles_setting_label_sample_eng: 'Example of subtitle text size',
|
|
1114
|
+
fmt_ai_subtitles_setting_label_translation_setting: 'Translation settings',
|
|
1115
|
+
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',
|
|
1116
|
+
fmt_ai_subtitles_setting_options_no_translation: 'No translation',
|
|
1117
|
+
fmt_ai_subtitles_setting_options_chinese: 'Chinese(Simplified)',
|
|
1118
|
+
fmt_ai_subtitles_setting_options_english: 'English',
|
|
1119
|
+
fmt_ai_subtitles_setting_options_subltitle_bilingual: 'Subtitles are bilingual at the same time',
|
|
1120
|
+
fmt_ai_subtitles_setting_options_translation_bilingual: 'The transcription shows bilingual at the same time',
|
|
1121
|
+
fmt_ai_subtitles_setting_options_translation_restore_default: 'Restore the default font size',
|
|
1122
|
+
fmt_ai_subtitles_setting_options_view_translation: 'View real-time transcriptions',
|
|
1123
|
+
fmt_ai_subtitles_setting_label_subtitle: 'Subtitle',
|
|
1124
|
+
fmt_ai_subtitles_setting_label_source_language: 'Source language',
|
|
1125
|
+
fmt_ai_subtitles_setting_label_translate_to: 'Translated to',
|
|
1126
|
+
fmt_ai_subtitles_setting_label_bilingual_display: 'Show bilingual',
|
|
1127
|
+
fmt_ai_subtitles_setting_label_hot_words: 'Personal hot words',
|
|
1128
|
+
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',
|
|
1129
|
+
fmt_ai_subtitles_setting_button_button: 'Button',
|
|
1130
|
+
fmt_ai_transcriptions_toolbar_button_realtime_transcription: 'Real-time transcription',
|
|
1131
|
+
fmt_ai_transcriptions_toolbar_options_translator: 'Enable Translator',
|
|
1132
|
+
fmt_ai_transcriptions_toolbar_options_enable_translation: 'Enable real-time transcription',
|
|
1133
|
+
fmt_ai_transcriptions_toolbar_options_settings: 'Transcription and translation settings',
|
|
1134
|
+
fmt_ai_transcriptions_toolbar_popup_valid: 'Subtitles are only valid for yourself、',
|
|
1135
|
+
fmt_ai_transcriptions_sidebar_label_realtime_translation: 'Real-time transcription',
|
|
1136
|
+
fmt_ai_transcriptions_sidebar_label_search: 'Search',
|
|
1137
|
+
fmt_ai_transcriptions_sidebar_tips_turnon: 'Turn on Translation Recognition',
|
|
1138
|
+
fmt_ai_transcriptions_sidebar_tips_stopped: 'Real-time transcription has been stopped',
|
|
1139
|
+
fmt_ai_transcriptions_sidebar_button_stop_translation: 'Stop transcribing',
|
|
1140
|
+
fmt_ai_transcriptions_sidebar_button_start_translation: 'Start transcribing',
|
|
1141
|
+
//****************** AI会议纪要 ******************
|
|
1142
|
+
fmt_ai_summary_create_option_create_summary: 'Create meeting summary for the meeting',
|
|
1143
|
+
fmt_ai_summary_create_labels_meeting_list: 'List of meetings',
|
|
1144
|
+
fmt_ai_summary_create_labels_valid_records: 'Only the last 2 days of meeting summaries are displayed',
|
|
1145
|
+
fmt_ai_summary_create_labels_meetingID: 'Meeting ID',
|
|
1146
|
+
fmt_ai_summary_create_labels_meeting_time: 'Meeting time',
|
|
1147
|
+
fmt_ai_summary_create_labels_not_opened: 'Meeting summary are not open',
|
|
1148
|
+
fmt_ai_summary_detail_label_data_analysis: 'Data analysis',
|
|
1149
|
+
fmt_ai_summary_detail_label_meeting_summary: 'Meeting summary',
|
|
1150
|
+
fmt_ai_summary_detail_label_transcription: 'Transcription',
|
|
1151
|
+
fmt_ai_summary_detail_label_search: 'Search',
|
|
1152
|
+
fmt_ai_summary_detail_button_transcription_management: 'Transcription management',
|
|
1153
|
+
fmt_ai_summary_detail_label_no_content: 'No content',
|
|
1154
|
+
fmt_ai_summary_setting_label_AI: 'AI ',
|
|
1155
|
+
fmt_ai_summary_setting_label_LLM_choose: 'LLM ',
|
|
1156
|
+
fmt_ai_summary_setting_label_llm_range: 'The AI model will be applied to functions such as meeting minutes and translation',
|
|
1157
|
+
fmt_ai_summary_setting_option_tingwu: 'TINGWU',
|
|
1158
|
+
fmt_ai_summary_setting_option_zhipu: 'ZHIPU-AI',
|
|
1159
|
+
fmt_ai_summary_setting_option_moonshot: 'Moonshot',
|
|
1160
|
+
fmt_ai_summary_setting_option_openai: 'OpenAI',
|
|
1161
|
+
fmt_ai_summary_setting_label_agent: 'Agent',
|
|
1162
|
+
fmt_ai_summary_setting_option_meeting_assistant: 'Meeting Assistant',
|
|
1163
|
+
fmt_ai_summary_setting_option_teacher: 'Teacher',
|
|
1164
|
+
fmt_ai_summary_setting_option_sales_manager: 'Sales Manager'
|
|
1016
1165
|
};
|