fcr-ui-scene 3.9.0 → 3.9.1-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/creator/provider-initializer.browser.js +2 -1
- package/lib/creator/provider-initializer.electron.js +11 -4
- package/lib/electron/injections.d.ts +1 -0
- package/lib/electron/injections.js +4 -1
- package/lib/electron/preload.js +1 -0
- package/lib/modules/action-bar/main-scene/store.base.d.ts +1 -0
- package/lib/modules/action-bar/main-scene/store.base.js +5 -0
- package/lib/modules/audio-stream/index.d.ts +2 -0
- package/lib/modules/audio-stream/index.js +33 -1
- package/lib/modules/chat/index.js +1 -1
- package/lib/modules/chat/store.d.ts +1 -1
- package/lib/modules/chat/store.js +4 -2
- package/lib/modules/components/device-control/store.base.d.ts +1 -0
- package/lib/modules/components/device-control/store.base.js +22 -3
- package/lib/modules/components/leave-meeting/index.js +3 -2
- package/lib/modules/components/leave-meeting/main-scene/store.d.ts +1 -0
- package/lib/modules/components/leave-meeting/main-scene/store.js +6 -1
- package/lib/modules/components/leave-meeting/store.base.d.ts +1 -0
- package/lib/modules/components/leave-meeting/store.base.js +1 -1
- package/lib/modules/components/leave-meeting/waiting-scene/store.d.ts +1 -0
- package/lib/modules/components/leave-meeting/waiting-scene/store.js +6 -1
- package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +7 -10
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +2 -2
- package/lib/modules/components/member-window/components/member-actions/index.js +0 -7
- package/lib/modules/components/member-window/components/member-actions/store.js +1 -1
- package/lib/modules/components/member-window/index.js +1 -1
- package/lib/modules/components/tab-frame/index.css +12 -1
- package/lib/modules/components/tab-frame/index.js +4 -1
- package/lib/modules/control-bar/components/share-state-nav/index.js +1 -3
- package/lib/modules/control-bar/mouse-event-bridge.d.ts +23 -0
- package/lib/modules/control-bar/mouse-event-bridge.js +87 -0
- package/lib/modules/control-bar/store.d.ts +1 -1
- package/lib/modules/control-bar/store.js +10 -27
- package/lib/modules/control-bar/type.d.ts +0 -1
- package/lib/modules/control-bar/view.js +9 -16
- package/lib/modules/dialog/dialogs/connection-gateway/tabs.js +3 -2
- package/lib/modules/dialog/dialogs/invite/index.js +6 -24
- package/lib/modules/invite/components/copy-info.css +72 -0
- package/lib/modules/invite/components/copy-info.d.ts +3 -0
- package/lib/modules/invite/components/copy-info.js +144 -0
- package/lib/modules/invite/components/pstn-invite.js +3 -15
- package/lib/modules/invite/components/voip-invite.js +10 -1
- package/lib/modules/invite/enums.d.ts +3 -1
- package/lib/modules/invite/enums.js +2 -0
- package/lib/modules/invite/store.d.ts +4 -1
- package/lib/modules/invite/store.js +37 -13
- package/lib/modules/invite/view.js +41 -20
- package/lib/modules/layout/store.base.d.ts +2 -1
- package/lib/modules/layout/store.base.js +20 -23
- package/lib/modules/participant/components/confirm-input/index.css +67 -1
- package/lib/modules/participant/components/confirm-input/index.js +16 -13
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +4 -0
- package/lib/modules/participant/store.base.d.ts +1 -0
- package/lib/modules/participant/store.base.js +34 -7
- package/lib/modules/pc-audio-connect/main-scene/store.d.ts +2 -0
- package/lib/modules/pc-audio-connect/main-scene/store.js +12 -2
- package/lib/modules/pc-audio-connect/view.js +4 -2
- package/lib/modules/phone-audio-connect/store.d.ts +6 -4
- package/lib/modules/phone-audio-connect/store.js +12 -1
- package/lib/modules/phone-audio-connect/view.js +6 -4
- package/lib/modules/secondary-window/index.js +2 -2
- package/lib/modules/secondary-window/store.d.ts +3 -0
- package/lib/modules/secondary-window/store.js +16 -1
- package/lib/modules/secondary-window/view.js +96 -72
- package/lib/modules/toast-manager/type.d.ts +2 -1
- package/lib/modules/toast-manager/type.js +4 -1
- package/lib/plugins/module-dev-plugin.js +4 -4
- package/lib/providers/ability-provider.d.ts +15 -0
- package/lib/providers/ability-provider.js +13 -1
- package/lib/providers/mouse-detect/provider.d.ts +2 -0
- package/lib/providers/mouse-detect/provider.empty.d.ts +14 -0
- package/lib/providers/mouse-detect/provider.empty.js +47 -0
- package/lib/providers/mouse-detect/provider.js +13 -4
- package/lib/providers/mouse-detect/type.d.ts +2 -0
- package/lib/providers/phone-audio-provider.d.ts +31 -5
- package/lib/providers/phone-audio-provider.js +83 -22
- package/lib/runtime.d.ts +1 -0
- package/lib/scenes/main-scene.js +2 -1
- package/lib/shared-data/chat-data.d.ts +19 -0
- package/lib/shared-data/chat-data.js +54 -7
- package/lib/shared-data/member-data.d.ts +9 -1
- package/lib/shared-data/member-data.js +46 -17
- package/lib/shared-data/video-window.js +8 -4
- package/lib/translations/enUS.d.ts +245 -1
- package/lib/translations/enUS.js +247 -3
- package/lib/translations/zhCN.d.ts +245 -1
- package/lib/translations/zhCN.js +246 -2
- package/lib/utilities/os.d.ts +1 -0
- package/lib/utilities/os.js +15 -0
- package/lib/utilities/renderer.d.ts +1 -0
- package/lib/utilities/renderer.js +7 -1
- package/lib-es/creator/provider-initializer.browser.js +2 -1
- package/lib-es/creator/provider-initializer.electron.js +9 -2
- package/lib-es/electron/injections.js +3 -0
- package/lib-es/electron/preload.js +2 -1
- package/lib-es/modules/action-bar/main-scene/store.base.js +5 -0
- package/lib-es/modules/audio-stream/index.js +33 -1
- package/lib-es/modules/chat/index.js +1 -1
- package/lib-es/modules/chat/store.js +4 -2
- package/lib-es/modules/components/device-control/store.base.js +22 -3
- package/lib-es/modules/components/leave-meeting/index.js +3 -2
- package/lib-es/modules/components/leave-meeting/main-scene/store.js +6 -1
- package/lib-es/modules/components/leave-meeting/store.base.js +1 -1
- package/lib-es/modules/components/leave-meeting/waiting-scene/store.js +6 -1
- package/lib-es/modules/components/member-window/components/member-actions/components/icon-status.js +7 -10
- package/lib-es/modules/components/member-window/components/member-actions/components/more-actions.js +2 -2
- package/lib-es/modules/components/member-window/components/member-actions/index.js +0 -7
- package/lib-es/modules/components/member-window/components/member-actions/store.js +1 -1
- package/lib-es/modules/components/member-window/index.js +1 -1
- package/lib-es/modules/components/tab-frame/index.css +12 -1
- package/lib-es/modules/components/tab-frame/index.js +4 -1
- package/lib-es/modules/control-bar/components/share-state-nav/index.js +1 -3
- package/lib-es/modules/control-bar/mouse-event-bridge.js +79 -0
- package/lib-es/modules/control-bar/store.js +11 -28
- package/lib-es/modules/control-bar/view.js +9 -16
- package/lib-es/modules/dialog/dialogs/connection-gateway/tabs.js +3 -2
- package/lib-es/modules/dialog/dialogs/invite/index.js +6 -24
- package/lib-es/modules/invite/components/copy-info.css +72 -0
- package/lib-es/modules/invite/components/copy-info.js +137 -0
- package/lib-es/modules/invite/components/pstn-invite.js +3 -15
- package/lib-es/modules/invite/components/voip-invite.js +10 -1
- package/lib-es/modules/invite/enums.js +2 -0
- package/lib-es/modules/invite/store.js +38 -14
- package/lib-es/modules/invite/view.js +43 -22
- package/lib-es/modules/layout/store.base.js +20 -23
- package/lib-es/modules/participant/components/confirm-input/index.css +67 -1
- package/lib-es/modules/participant/components/confirm-input/index.js +16 -13
- package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/index.css +4 -0
- package/lib-es/modules/participant/store.base.js +34 -7
- package/lib-es/modules/pc-audio-connect/main-scene/store.js +12 -2
- package/lib-es/modules/pc-audio-connect/view.js +4 -2
- package/lib-es/modules/phone-audio-connect/store.js +12 -1
- package/lib-es/modules/phone-audio-connect/view.js +6 -4
- package/lib-es/modules/secondary-window/index.js +2 -2
- package/lib-es/modules/secondary-window/store.js +16 -1
- package/lib-es/modules/secondary-window/view.js +97 -73
- package/lib-es/modules/toast-manager/type.js +4 -1
- package/lib-es/plugins/module-dev-plugin.js +4 -4
- package/lib-es/providers/ability-provider.js +13 -1
- package/lib-es/providers/mouse-detect/provider.empty.js +39 -0
- package/lib-es/providers/mouse-detect/provider.js +13 -4
- package/lib-es/providers/phone-audio-provider.js +109 -48
- package/lib-es/scenes/main-scene.js +3 -2
- package/lib-es/shared-data/chat-data.js +55 -8
- package/lib-es/shared-data/member-data.js +46 -17
- package/lib-es/shared-data/video-window.js +8 -4
- package/lib-es/translations/enUS.js +247 -3
- package/lib-es/translations/zhCN.js +246 -2
- package/lib-es/utilities/os.js +8 -0
- package/lib-es/utilities/renderer.js +7 -1
- package/lib-es/utilities/shared-storage.js +2 -2
- package/package.json +6 -6
- package/lib/modules/connection-gateway/components/computer/index.css +0 -12
- package/lib/modules/connection-gateway/components/computer/index.d.ts +0 -3
- package/lib/modules/connection-gateway/components/computer/index.js +0 -66
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.css +0 -36
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.d.ts +0 -10
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +0 -78
- package/lib/modules/connection-gateway/components/phone/components/calling/index.css +0 -72
- package/lib/modules/connection-gateway/components/phone/components/calling/index.d.ts +0 -7
- package/lib/modules/connection-gateway/components/phone/components/calling/index.js +0 -58
- package/lib/modules/connection-gateway/components/phone/components/remeber/index.css +0 -10
- package/lib/modules/connection-gateway/components/phone/components/remeber/index.d.ts +0 -5
- package/lib/modules/connection-gateway/components/phone/components/remeber/index.js +0 -24
- package/lib/modules/connection-gateway/components/phone/components/useing/index.css +0 -46
- package/lib/modules/connection-gateway/components/phone/components/useing/index.d.ts +0 -3
- package/lib/modules/connection-gateway/components/phone/components/useing/index.js +0 -36
- package/lib/modules/connection-gateway/components/phone/index.css +0 -49
- package/lib/modules/connection-gateway/components/phone/index.d.ts +0 -3
- package/lib/modules/connection-gateway/components/phone/index.js +0 -185
- package/lib/modules/connection-gateway/enums.d.ts +0 -4
- package/lib/modules/connection-gateway/enums.js +0 -12
- package/lib/modules/connection-gateway/index.css +0 -6
- package/lib/modules/connection-gateway/index.d.ts +0 -10
- package/lib/modules/connection-gateway/index.js +0 -78
- package/lib/modules/connection-gateway/store.d.ts +0 -68
- package/lib/modules/connection-gateway/store.js +0 -713
- package/lib/modules/connection-gateway/types.d.ts +0 -8
- package/lib/modules/connection-gateway/types.js +0 -6
- package/lib/modules/connection-gateway/view.d.ts +0 -1
- package/lib/modules/connection-gateway/view.js +0 -39
- package/lib-es/modules/connection-gateway/components/computer/index.css +0 -12
- package/lib-es/modules/connection-gateway/components/computer/index.js +0 -59
- package/lib-es/modules/connection-gateway/components/phone/components/callinfo/index.css +0 -36
- package/lib-es/modules/connection-gateway/components/phone/components/callinfo/index.js +0 -71
- package/lib-es/modules/connection-gateway/components/phone/components/calling/index.css +0 -72
- package/lib-es/modules/connection-gateway/components/phone/components/calling/index.js +0 -51
- package/lib-es/modules/connection-gateway/components/phone/components/remeber/index.css +0 -10
- package/lib-es/modules/connection-gateway/components/phone/components/remeber/index.js +0 -17
- package/lib-es/modules/connection-gateway/components/phone/components/useing/index.css +0 -46
- package/lib-es/modules/connection-gateway/components/phone/components/useing/index.js +0 -29
- package/lib-es/modules/connection-gateway/components/phone/index.css +0 -49
- package/lib-es/modules/connection-gateway/components/phone/index.js +0 -177
- package/lib-es/modules/connection-gateway/enums.js +0 -5
- package/lib-es/modules/connection-gateway/index.css +0 -6
- package/lib-es/modules/connection-gateway/index.js +0 -60
- package/lib-es/modules/connection-gateway/store.js +0 -707
- package/lib-es/modules/connection-gateway/types.js +0 -1
- package/lib-es/modules/connection-gateway/view.js +0 -31
package/lib/translations/enUS.js
CHANGED
|
@@ -16,7 +16,6 @@ var enUs = exports.enUs = {
|
|
|
16
16
|
fmt_participants_button_muteAll: 'All mute',
|
|
17
17
|
fmt_participants_button_unmuteAll: 'Unmute all',
|
|
18
18
|
fmt_participants_button_meetingManagement: 'Settings',
|
|
19
|
-
fmt_participants_button_meetingPermission: 'Meeting Permissions',
|
|
20
19
|
fmt_participants_button_invite: 'Invite',
|
|
21
20
|
fmt_participants_member_button_mute: 'Mute',
|
|
22
21
|
fmt_participants_member_button_unmute: 'Unmute',
|
|
@@ -448,7 +447,7 @@ var enUs = exports.enUs = {
|
|
|
448
447
|
fmt_chat_private_permission_changes: 'The host has changed permissions, please select again',
|
|
449
448
|
fmt_chat_status_call_in: 'Connecting via voice',
|
|
450
449
|
fmt_chat_room_chat_limit: 'Currently muted, unable to send messages',
|
|
451
|
-
fmt_chat_private_to_me: 'Me
|
|
450
|
+
fmt_chat_private_to_me: 'Me',
|
|
452
451
|
fmt_chat_enable_limit: 'Currently mutted',
|
|
453
452
|
fmt_chat_say_something: 'Say something',
|
|
454
453
|
fmt_chat_send_cohost: 'Host/Co-host',
|
|
@@ -1082,6 +1081,10 @@ var enUs = exports.enUs = {
|
|
|
1082
1081
|
fmt_record_record_stop_confirm: 'Confirm to stop recording',
|
|
1083
1082
|
fmt_record_toast_record_paused: 'Cloud recording has been paused',
|
|
1084
1083
|
fmt_record_toast_record_resumed: 'Cloud recording has been resumed',
|
|
1084
|
+
fmt_invitepage_label_by_invitation: 'By Invitation',
|
|
1085
|
+
fmt_invitepage_label_meeting_connector: 'Meeting Connector',
|
|
1086
|
+
fmt_invitepage_label_invite_link: 'Invite Link',
|
|
1087
|
+
fmt_invitepage_label_meeting_details: 'Meeting Details',
|
|
1085
1088
|
fmt_pstn_label_accessmethod: 'Select audio access method',
|
|
1086
1089
|
fmt_pstn_options_PCaudioconnet: 'Connect to PC audio',
|
|
1087
1090
|
fmt_pstn_options_phoneaudioconnet: 'Connect to phone audio',
|
|
@@ -1147,6 +1150,7 @@ var enUs = exports.enUs = {
|
|
|
1147
1150
|
fmt_SIP323_copywrite_phonenumber: 'Mobile phone number (required)',
|
|
1148
1151
|
fmt_SIP323_options_detailedinfor: 'Copy meeting detail',
|
|
1149
1152
|
fmt_SIP323_tips_alreadycopied: 'Already copied on the clipboard',
|
|
1153
|
+
fmt_SIP_tips_enter_correct_number: 'Please enter the correct meeting connector number',
|
|
1150
1154
|
fmt_localrecord_labels_record: 'Record',
|
|
1151
1155
|
fmt_localrecord_labels_savingto: 'Local Recording Saved in',
|
|
1152
1156
|
fmt_localrecord_button_savingto: 'Change',
|
|
@@ -2088,5 +2092,245 @@ var enUs = exports.enUs = {
|
|
|
2088
2092
|
fmt_echo_window_button_cancel: 'Cancel',
|
|
2089
2093
|
fmt_echo_window_button_disconnect: 'Disconnect',
|
|
2090
2094
|
fmt_mute_toast_yr_on_mute: "You're on mute, please unmute.",
|
|
2091
|
-
fmt_meeting_setting_options_enable_recording: 'Enable Cloud Recording'
|
|
2095
|
+
fmt_meeting_setting_options_enable_recording: 'Enable Cloud Recording',
|
|
2096
|
+
fmt_premeeting_subheading_scenario: 'business scenario',
|
|
2097
|
+
fmt_premeeting_scenario_setting_button_meeting: 'video conference',
|
|
2098
|
+
fmt_premeeting_scenario_setting_button_webinar: 'webinar',
|
|
2099
|
+
fmt_premeeting_setting_lock_meeting: 'lock meeting',
|
|
2100
|
+
fmt_premeeting_role_setting_role: 'role',
|
|
2101
|
+
fmt_premeeting_role_setting_role_host: 'host',
|
|
2102
|
+
fmt_premeeting_role_setting_role_co_host: 'co-host',
|
|
2103
|
+
fmt_premeeting_role_setting_role_guest: 'guest',
|
|
2104
|
+
fmt_premeeting_role_setting_role_audience: 'audience',
|
|
2105
|
+
fmt_premeeting_setting_allow_guests_unmute: 'allow guests to unmute themselves',
|
|
2106
|
+
fmt_premeeting_setting_allow_guests_turn_on_video: 'allow guests to turn on video',
|
|
2107
|
+
fmt_premeeting_setting_allow_guests_rename: 'allow guests to rename',
|
|
2108
|
+
fmt_premeeting_setting_label_allow_audience_raisehands: 'allow audience to raise hands',
|
|
2109
|
+
fmt_premeeting_setting_allow_audience_view_participants_number: 'allow audience to view total number of participants',
|
|
2110
|
+
fmt_premeeting_setting_allow_audience_rename: 'allow aaudience to rename',
|
|
2111
|
+
fmt_security_setting_label_allow_audience_raisehands: 'allow audience to raise hands',
|
|
2112
|
+
fmt_security_setting_label_allow_audience_viewparticipants: 'allow audience to view total number of participants',
|
|
2113
|
+
fmt_security_setting_label_allow_audience_rename: 'allow audience to rename themselves',
|
|
2114
|
+
fmt_security_setting_label_allow_audience_viewparticipants_off: 'with other xx audience members',
|
|
2115
|
+
fmt_security_setting_mute_guests_entry: 'mute guests on entry',
|
|
2116
|
+
fmt_security_setting_guests_video_entry_off: "turn off guests' video on entry",
|
|
2117
|
+
fmt_security_setting_allow_guests_unmute: 'allow guests to unmute themselves',
|
|
2118
|
+
fmt_security_setting_allow_guests_turn_on_video: 'allow guests to turn on video',
|
|
2119
|
+
fmt_security_setting_allow_guests_share_screen_whiteboard: 'allow guests to share screen and whiteboard',
|
|
2120
|
+
fmt_security_setting_allow_guests_interactive_annotations: 'allow guests to make interactive annotations',
|
|
2121
|
+
fmt_security_setting_allow_guests_rename: 'allow guests to rename themselves',
|
|
2122
|
+
fmt_premeeting_participant_list: 'participant',
|
|
2123
|
+
fmt_premeeting_participant_list_guest: 'guest',
|
|
2124
|
+
fmt_premeeting_participant_list_audience: 'audience',
|
|
2125
|
+
fmt_premeeting_participant_list_raising: 'xx audience members are raising hands',
|
|
2126
|
+
fmt_premeeting_participant_list_guest_demote_audience: 'demote to audience',
|
|
2127
|
+
fmt_premeeting_participant_list_guest_revoke_cohost: 'revoke co-host privileges',
|
|
2128
|
+
fmt_premeeting_participant_list_guest_demote_tip: 'successfully demoted xx to audience',
|
|
2129
|
+
fmt_premeeting_participant_list_guest_revoke_tip: 'the host has set you as audience',
|
|
2130
|
+
fmt_premeeting_participant_list_guest_disable_chatting_tip: "disable xx's chatting permission?",
|
|
2131
|
+
fmt_premeeting_participant_list_guest_block_messages: 'block all chat messages sent by xx? other users will not be able to view them after the operation',
|
|
2132
|
+
fmt_premeeting_participant_list_guest_block_messages_tip: 'you have been muted',
|
|
2133
|
+
fmt_premeeting_participant_upgraded_guest_tip: 'successfully upgraded "xxx" to guest',
|
|
2134
|
+
fmt_premeeting_participant_upgraded_host: 'set as "host"',
|
|
2135
|
+
fmt_premeeting_participant_upgraded_host_choose: 'set "xxx" as the meeting host?',
|
|
2136
|
+
fmt_premeeting_participant_upgraded_host_on: 'set as host',
|
|
2137
|
+
fmt_premeeting_participant_upgraded_host_on_cancel: 'cancel',
|
|
2138
|
+
fmt_premeeting_participant_upgraded_co_host: 'set as "co-host"',
|
|
2139
|
+
fmt_premeeting_participant_upgraded_co_host_tip: 'set "xxx" as the meeting co-host?',
|
|
2140
|
+
fmt_premeeting_participant_upgraded_co_host_on: 'set as co-host',
|
|
2141
|
+
fmt_premeeting_participant_upgraded_co_host_on_cancel: 'cancel',
|
|
2142
|
+
fmt_premeeting_participant_upgraded_co_host_limit: 'the number of user roles has reached the limit. cannot set as co-host',
|
|
2143
|
+
fmt_premeeting_participant_set_guest: 'set as guest',
|
|
2144
|
+
fmt_premeeting_participant_upgraded_guest_limit: 'the number of guest roles has reached the limit. cannot set as guest',
|
|
2145
|
+
fmt_premeeting_participant_set_co_host_tip: 'successfully set "xx" as co-host',
|
|
2146
|
+
fmt_premeeting_participant_set_guest_tip: 'successfully demoted "xx" to guest',
|
|
2147
|
+
fmt_premeeting_participant_set_audience_tip: 'successfully demoted "xx" to audience',
|
|
2148
|
+
fmt_premeeting_participant_cannot_set_audience_tip: 'this role cannot be demoted to audience',
|
|
2149
|
+
fmt_premeeting_participant_set_co_host_tip_myself: 'the host has set you as co-host',
|
|
2150
|
+
fmt_premeeting_participant_set_guest_tip_myself: 'the host has demoted you to guest',
|
|
2151
|
+
fmt_premeeting_participant_set_audience_tip_myself: 'the host has demoted you to audience',
|
|
2152
|
+
fmt_premeeting_participant_xx_now_host: 'xx is now host',
|
|
2153
|
+
fmt_premeeting_participant_xx_now_co_host: 'xx is now co-host',
|
|
2154
|
+
fmt_premeeting_participant_now_co_host_yourself: 'you are now co-host',
|
|
2155
|
+
fmt_premeeting_participant_xx_now_guest: 'xx is now guest',
|
|
2156
|
+
fmt_premeeting_participant_now_host_tip: '"xxx" is now the host',
|
|
2157
|
+
fmt_premeeting_participant_set_guest_tip_u: 'the host has set you as a guest',
|
|
2158
|
+
fmt_premeeting_participant_now_guest_tip_u: 'you are a guest of this meeting. you can turn on your microphone and camera, share your screen, and interact with the audience through public chat and other functions',
|
|
2159
|
+
fmt_premeeting_participant_now_guest_tip_u_ok: 'ok',
|
|
2160
|
+
fmt_premeeting_participant_now_cohost_tip_u: 'you have been set as a co-host',
|
|
2161
|
+
fmt_premeeting_participant_now_host_tip_u: 'you have been set as the host',
|
|
2162
|
+
fmt_premeeting_participant_revoke_host_tip_u: 'your host role has been revoked',
|
|
2163
|
+
fmt_premeeting_participant_revoke_cohost_tip_u: 'your co-host role has been revoked',
|
|
2164
|
+
fmt_premeeting_participant_now_audience_tip_u: 'the host has set you as an audience member',
|
|
2165
|
+
fmt_premeeting_participant_list_revoke_host_role: 'revoke host role',
|
|
2166
|
+
fmt_premeeting_participant_list_modify_nickname: 'modify in-meeting nickname',
|
|
2167
|
+
fmt_premeeting_participant_remove_title: 'remove from meeting',
|
|
2168
|
+
fmt_premeeting_participant_confirm_removal_tip: 'confirm removal of "xxx" from the meeting?',
|
|
2169
|
+
fmt_premeeting_participant_not_rejoin_on: 'the user is not allowed to rejoin this meeting',
|
|
2170
|
+
fmt_premeeting_participant_remove_button: 'remove from meeting',
|
|
2171
|
+
fmt_premeeting_participant_creator_cannot_removed: 'the meeting creator cannot be removed',
|
|
2172
|
+
fmt_premeeting_participant_prohibited_join_tip: 'you are prohibited from joining this meeting',
|
|
2173
|
+
fmt_premeeting_participant_disable_chatting_title: 'disable chatting',
|
|
2174
|
+
fmt_premeeting_participant_disable_chatting_tip: 'disable "xxx"\'s chatting permission?',
|
|
2175
|
+
fmt_premeeting_block_sb_messages_tip: 'block all chat messages sent by "xxx"? other users will not be able to view them after the operation',
|
|
2176
|
+
fmt_premeeting_participant_chat_permission_restored: 'chat permission has been restored for him',
|
|
2177
|
+
fmt_security_setting_lower_hand: 'lower hand',
|
|
2178
|
+
fmt_security_setting_set_spotlight_video: 'set as spotlight video',
|
|
2179
|
+
fmt_security_setting_cancel_spotlight_follow: 'cancel spotlight follow',
|
|
2180
|
+
fmt_security_setting_allow_local_recording: 'allow local video recording',
|
|
2181
|
+
fmt_security_setting_move_waiting_room: 'move to waiting room',
|
|
2182
|
+
fmt_security_setting_pricate_chat_host: 'private chat',
|
|
2183
|
+
fmt_security_setting_pin: 'pin',
|
|
2184
|
+
fmt_participants_setting_raise_hand: 'raise hand',
|
|
2185
|
+
fmt_participants_setting_raise_hand_tips: 'you have raised your hand, please wait for the host to respond',
|
|
2186
|
+
fmt_participants_setting_lower_hand: 'lower hand',
|
|
2187
|
+
fmt_participants_setting_lower_hand_tips: 'you have lowered your hand',
|
|
2188
|
+
fmt_participants_setting_raise_hand_counts_tips: 'xx and another x people are raising their hands',
|
|
2189
|
+
fmt_participants_setting_raise_hand_disabled_red_tips: 'the host has disabled the raise hand function',
|
|
2190
|
+
fmt_participants_setting_raise_hand_disabled_tips: 'the host has disabled the raise hand function',
|
|
2191
|
+
fmt_participants_setting_hands_lowered_tips: 'your hand has been lowered',
|
|
2192
|
+
fmt_participants_setting_raise_hand_number_limit_tips: 'the number of raised hands has reached the limit, please try again later',
|
|
2193
|
+
fmt_participants_setting_danmaku_raise_hand_counts_tips: 'xx and another x people are raising their hands',
|
|
2194
|
+
fmt_participants_list_raise_hand_counts_tips: 'x participants are raising their hands',
|
|
2195
|
+
fmt_participants_list_privilege_allow_chatting: 'allow chatting',
|
|
2196
|
+
fmt_participants_list_privilege_private_chat: 'private chat',
|
|
2197
|
+
fmt_participants_list_modify_in_meeting_nickname: 'modify in-meeting nickname',
|
|
2198
|
+
fmt_chat_setting_guest_chat_scope: 'guest chat scope',
|
|
2199
|
+
fmt_chat_setting_guest_chat_allow_public_private: 'allow guests to send public messages and private chats with other guests',
|
|
2200
|
+
fmt_chat_setting_guest_chat_allow_public: 'allow guests to send public messages only',
|
|
2201
|
+
fmt_chat_setting_guest_chat_allow_host_only: 'guests can only send private messages to the host',
|
|
2202
|
+
fmt_chat_setting_guest_chat_disable: 'disable chat for all guests',
|
|
2203
|
+
fmt_chat_setting_audience_chat_scope: 'audience chat scope',
|
|
2204
|
+
fmt_chat_setting_audience_chat_allow_public: 'allow audience to send public messages only',
|
|
2205
|
+
fmt_chat_setting_audience_chat_allow_host_only: 'audience can only send private messages to the host',
|
|
2206
|
+
fmt_chat_setting_audience_chat_disable: 'disable chat for all audience',
|
|
2207
|
+
fmt_audio_settings_select_audio_button: 'select audio',
|
|
2208
|
+
fmt_audio_settings_disconnect_audio_icon: 'disconnect audio',
|
|
2209
|
+
fmt_audio_settings_select_audio_icon: 'select audio',
|
|
2210
|
+
fmt_audio_settings_connect_audio_tips: 'to hear other participants, please connect audio to join the meeting',
|
|
2211
|
+
fmt_audio_settings_select_phone_audio: 'use phone audio',
|
|
2212
|
+
fmt_audio_settings_select_phone_audio_cancel: 'cancel',
|
|
2213
|
+
fmt_audio_settings_select_speaker: 'speaker',
|
|
2214
|
+
fmt_audio_settings_select_receiver: 'receiver',
|
|
2215
|
+
fmt_audio_settings_select_mute: 'mute',
|
|
2216
|
+
fmt_audio_settings_select_cancel: 'cancel',
|
|
2217
|
+
fmt_bottom_bar_audience_raise_hand: 'raise hand',
|
|
2218
|
+
fmt_bottom_bar_audience_raise_hand_tip: 'you have raised your hand, please wait for the host to respond',
|
|
2219
|
+
fmt_bottom_bar_audience_lower_hand: 'lower hand',
|
|
2220
|
+
fmt_v_chat_words_select_copy: 'copy',
|
|
2221
|
+
fmt_v_chat_words_select_multi_select: 'multi-select',
|
|
2222
|
+
fmt_v_chat_words_select_private_chat: 'private chat',
|
|
2223
|
+
fmt_v_chat_words_select_allow_chatting: 'allow chatting',
|
|
2224
|
+
fmt_v_chat_words_select_disable_chatting: 'disable chatting',
|
|
2225
|
+
fmt_v_chat_words_setting_mute_chat_tip: 'You have muted the chat room',
|
|
2226
|
+
fmt_v_chat_words_setting_enable_chat_tip: 'You have enabled the chat room',
|
|
2227
|
+
fmt_v_webinar_chat_settings: 'chat settings',
|
|
2228
|
+
fmt_v_webinar_chat_setting_guest_chat_scope: 'guest chat scope',
|
|
2229
|
+
fmt_v_webinar_chat_setting_guest_chat_allow_public_private: 'allow guests to send public messages and private chats with other guests',
|
|
2230
|
+
fmt_v_webinar_chat_setting_guest_chat_allow_public: 'allow guests to send public messages only',
|
|
2231
|
+
fmt_v_webinar_chat_setting_guest_chat_allow_host_only: 'guests can only send private messages to the host',
|
|
2232
|
+
fmt_v_webinar_chat_setting_guest_chat_disable: 'disable chat for all guests',
|
|
2233
|
+
fmt_v_webinar_chat_setting_audience_chat_scope: 'audience chat scope',
|
|
2234
|
+
fmt_v_webinar_chat_setting_audience_chat_allow_public: 'allow audience to send public messages only',
|
|
2235
|
+
fmt_v_webinar_chat_setting_audience_chat_allow_host_only: 'audience can only send private messages to the host',
|
|
2236
|
+
fmt_v_webinar_chat_setting_audience_chat_disable: 'disable chat for all audience',
|
|
2237
|
+
fmt_v_webinar_chat_setting_show_message_bubbles: 'show message bubbles',
|
|
2238
|
+
fmt_v_app_private_chat_setting_send_to: 'send to',
|
|
2239
|
+
fmt_v_app_private_chat_setting_footer_allow_free: 'allow free chat',
|
|
2240
|
+
fmt_v_app_private_chat_setting_footer_allow_private_host: 'allow private chat with host and co-hosts only',
|
|
2241
|
+
fmt_v_app_private_waiting_room_subtitle: 'waiting room',
|
|
2242
|
+
fmt_v_app_private_chat_privately_xx: 'you can chat privately with xx',
|
|
2243
|
+
fmt_v_app_private_chat_prohibited_tip: 'private chat prohibited by host',
|
|
2244
|
+
fmt_v_app_private_retract_host_permissions: 'retract host permissions',
|
|
2245
|
+
fmt_v_app_private_group_chat_prohibited_tip: 'group chat prohibited by host',
|
|
2246
|
+
fmt_v_app_private_xx_left_meeting: 'xx has just left the meeting',
|
|
2247
|
+
fmt_v_app_private_connecting_meeting: 'connecting',
|
|
2248
|
+
fmt_v_app_private_select_another_chat_recipient_tip: 'xx may have left the meeting and cannot receive messages. please select another chat recipient',
|
|
2249
|
+
fmt_v_private_chat_private_chat: 'private chat',
|
|
2250
|
+
fmt_v_private_chat_select_host_tip: 'please select the host or co-host',
|
|
2251
|
+
fmt_v_private_chat_select_user_tip: 'please select the user you want to chat with',
|
|
2252
|
+
fmt_v_private_chat_select_again_tip: 'the host has changed the permissions, please select again',
|
|
2253
|
+
fmt_v_multiple_selection_private_chat: 'private chat',
|
|
2254
|
+
fmt_v_multiple_selection_multiple_selection: 'multiple selection',
|
|
2255
|
+
fmt_v_multiple_selection_copy: 'copy',
|
|
2256
|
+
fmt_v_multiple_selection_maximum_copy_tip: 'maximum 50 items',
|
|
2257
|
+
fmt_v_chat_disable_chatting_title: 'disable chatting',
|
|
2258
|
+
fmt_v_chat_disable_chatting_tip: 'disable "xxx"\'s chatting permission?',
|
|
2259
|
+
fmt_v_chat_block_sb_messages_tip: 'block all chat messages sent by "xxx"? other users will not be able to view them after the operation',
|
|
2260
|
+
fmt_v_chat_block_sb_messages_tip_cancel: 'cancel',
|
|
2261
|
+
fmt_v_chat_block_sb_messages_tip_ok: 'ok',
|
|
2262
|
+
fmt_v_chat_block_you_muted_tip: 'you have been muted',
|
|
2263
|
+
fmt_v_chat_chat_permission_restored: 'chat permission has been restored for him',
|
|
2264
|
+
fmt_v_app_new_private_chat_private_chat: 'private chat',
|
|
2265
|
+
fmt_v_app_new_private_chat_select_host_tip: 'please select the host or co-host',
|
|
2266
|
+
fmt_v_app_new_private_chat_select_user_tip: 'please select the user you want to chat with',
|
|
2267
|
+
fmt_v_app_new_private_chat_select_again_tip: 'the host has changed the permissions, please select again',
|
|
2268
|
+
fmt_v_app_new_private_chat_select_copy: 'copy',
|
|
2269
|
+
fmt_v_app_new_private_chat_select_multi_select: 'multi-select',
|
|
2270
|
+
fmt_v_app_new_private_chat_select_private_chat: 'private chat',
|
|
2271
|
+
fmt_v_private_chat_word_count_exceed_tip: 'word count exceeded. please delete some text before sending',
|
|
2272
|
+
fmt_v_private_chat_select_another_chat_recipient_tip: 'xx may have left the meeting and cannot receive messages. please select another chat recipient',
|
|
2273
|
+
fmt_v_app_multiple_selection_private_chat: 'private chat',
|
|
2274
|
+
fmt_v_app_multiple_selection_multiple_selection: 'multiple selection',
|
|
2275
|
+
fmt_v_app_multiple_selection_copy: 'copy',
|
|
2276
|
+
fmt_v_app_multiple_selection_copy_clipboard: 'copy to clipboard',
|
|
2277
|
+
fmt_v_app_multiple_selection_maximum_copy_tip: 'copy to clipboard (max 50 items)',
|
|
2278
|
+
fmt_v_app_multiple_selection_copied_tip: 'copied to clipboard',
|
|
2279
|
+
fmt_v_security_web_webinar_security_settings: 'meeting security settings',
|
|
2280
|
+
fmt_v_security_web_webinar_security_lock_room: 'lock the meeting room',
|
|
2281
|
+
fmt_v_security_web_webinar_security_watermark: 'watermark',
|
|
2282
|
+
fmt_v_security_web_webinar_security_single_row: 'single row',
|
|
2283
|
+
fmt_v_security_web_webinar_security_multiple_rows: 'multiple rows',
|
|
2284
|
+
fmt_v_security_web_webinar_security_allow_guests_attendees_rename: 'allow guests and attendees to rename themselves',
|
|
2285
|
+
fmt_v_security_web_webinar_security_allow_guests: 'allow guests',
|
|
2286
|
+
fmt_v_security_web_webinar_security_chat_subheading: 'chat',
|
|
2287
|
+
fmt_v_security_web_webinar_security_guest_chat_scope: 'guest chat scope',
|
|
2288
|
+
fmt_v_security_web_webinar_security_allow_public_private_chat: 'allow guests to send public messages and private chats with other guests',
|
|
2289
|
+
fmt_v_security_web_webinar_security_allow_public_chat: 'allow guests to send public messages only',
|
|
2290
|
+
fmt_v_security_web_webinar_security_private_chat_host_only: 'guests can only send private messages to the host',
|
|
2291
|
+
fmt_v_security_web_webinar_security_disable_chat: 'disable chat for all guests',
|
|
2292
|
+
fmt_v_security_web_webinar_security_screen_sharing: 'screen sharing',
|
|
2293
|
+
fmt_v_security_web_webinar_security_interactive_annotation: 'participant interactive annotation',
|
|
2294
|
+
fmt_v_security_web_webinar_security_unmute_themselves: 'unmute themselves',
|
|
2295
|
+
fmt_v_security_web_webinar_security_turn_on_video: 'turn on video',
|
|
2296
|
+
fmt_v_security_web_webinar_security_rename_themselves: 'rename themselves',
|
|
2297
|
+
fmt_v_security_web_webinar_security_live_transcription_on_off: 'enable and disable live transcription',
|
|
2298
|
+
fmt_v_security_web_webinar_security_use_subtitle: 'use subtitle function',
|
|
2299
|
+
fmt_v_security_web_webinar_security_change_language: 'change audio source language',
|
|
2300
|
+
fmt_v_security_web_webinar_security_allow_attendees: 'allow attendees',
|
|
2301
|
+
fmt_v_security_web_webinar_security_chat_select: 'chat',
|
|
2302
|
+
fmt_v_security_web_webinar_security_attendee_chat_scope: 'attendee chat scope',
|
|
2303
|
+
fmt_v_security_web_webinar_security_attendee_chat_public: 'public chat only',
|
|
2304
|
+
fmt_v_security_web_webinar_security_attendee_chat_host: 'private chat with host only',
|
|
2305
|
+
fmt_v_security_web_webinar_security_attendee_disable_chat: 'disable chat',
|
|
2306
|
+
fmt_v_security_web_webinar_security_raise_hand: 'raise hand',
|
|
2307
|
+
fmt_v_security_web_webinar_security_view_total_number: 'view total number of participants',
|
|
2308
|
+
fmt_premeeting_participant_upgraded_host_app: 'set as "host"',
|
|
2309
|
+
fmt_premeeting_participant_upgraded_host_choose_app: 'set "xxx" as the meeting host?',
|
|
2310
|
+
fmt_premeeting_participant_upgraded_host_on_app: 'set as host',
|
|
2311
|
+
fmt_premeeting_participant_upgraded_host_on_app_cancel: 'cancel',
|
|
2312
|
+
fmt_premeeting_participant_upgraded_co_host_app: 'set as "co-host"',
|
|
2313
|
+
fmt_premeeting_participant_upgraded_co_host_tip_app: 'set "xxx" as the meeting co-host?',
|
|
2314
|
+
fmt_premeeting_participant_upgraded_co_host_on_app: 'set as co-host',
|
|
2315
|
+
fmt_premeeting_participant_upgraded_co_host_on_app_cancel: 'cancel',
|
|
2316
|
+
fmt_premeeting_participant_upgraded_co_host_limit_app: 'the number of user roles has reached the limit. cannot set as co-host',
|
|
2317
|
+
fmt_premeeting_participant_upgraded_guest_limit_app: 'the number of guest roles has reached the limit. cannot set as guest',
|
|
2318
|
+
fmt_premeeting_participant_revoke_co_host_tip_app: "successfully revoked xx's co-host status",
|
|
2319
|
+
fmt_premeeting_participant_set_co_host_tip_app: 'successfully set "xx" as co-host',
|
|
2320
|
+
fmt_premeeting_participant_set_guest_tip_app: 'successfully demoted "xx" to guest',
|
|
2321
|
+
fmt_premeeting_participant_set_audience_tip_app: 'successfully demoted "xx" to audience',
|
|
2322
|
+
fmt_premeeting_participant_cannot_set_audience_tip_app: 'this role cannot be demoted to audience',
|
|
2323
|
+
fmt_premeeting_participant_set_co_host_tip_myself_app: 'the host has set you as co-host',
|
|
2324
|
+
fmt_premeeting_participant_set_guest_tip_myself_app: 'the host has demoted you to guest',
|
|
2325
|
+
fmt_premeeting_participant_set_audience_tip_myself_app: 'the host has demoted you to audience',
|
|
2326
|
+
fmt_premeeting_participant_xx_now_host_app: 'xx is now host',
|
|
2327
|
+
fmt_premeeting_participant_you_now_host_app: 'you have been set as host',
|
|
2328
|
+
fmt_premeeting_participant_xx_now_host_app_other: 'xx is now host',
|
|
2329
|
+
fmt_premeeting_participant_xx_now_co_host_app: 'xx is now co-host',
|
|
2330
|
+
fmt_premeeting_participant_now_co_host_yourself_app: 'you are now co-host',
|
|
2331
|
+
fmt_premeeting_participant_xx_now_guest_app: 'xx is now guest',
|
|
2332
|
+
fmt_premeeting_participant_set_guest_tip_u_app: 'the host has set you as a guest',
|
|
2333
|
+
fmt_premeeting_participant_now_guest_tip_u_app: 'you are a guest of this meeting. you can turn on your microphone and camera, share your screen, and interact with the audience through public chat and other functions',
|
|
2334
|
+
fmt_premeeting_participant_now_guest_tip_u_ok_app: 'ok',
|
|
2335
|
+
fmt_participants_button_meetingPermission: 'Meeting Permissions'
|
|
2092
2336
|
};
|
|
@@ -8,7 +8,6 @@ export declare const zhCn: {
|
|
|
8
8
|
fmt_participants_button_muteAll: string;
|
|
9
9
|
fmt_participants_button_unmuteAll: string;
|
|
10
10
|
fmt_participants_button_meetingManagement: string;
|
|
11
|
-
fmt_participants_button_meetingPermission: string;
|
|
12
11
|
fmt_participants_button_invite: string;
|
|
13
12
|
fmt_participants_member_button_mute: string;
|
|
14
13
|
fmt_participants_member_button_unmute: string;
|
|
@@ -1057,6 +1056,10 @@ export declare const zhCn: {
|
|
|
1057
1056
|
fmt_record_record_stop_confirm: string;
|
|
1058
1057
|
fmt_record_toast_record_paused: string;
|
|
1059
1058
|
fmt_record_toast_record_resumed: string;
|
|
1059
|
+
fmt_invitepage_label_by_invitation: string;
|
|
1060
|
+
fmt_invitepage_label_meeting_connector: string;
|
|
1061
|
+
fmt_invitepage_label_invite_link: string;
|
|
1062
|
+
fmt_invitepage_label_meeting_details: string;
|
|
1060
1063
|
fmt_pstn_label_accessmethod: string;
|
|
1061
1064
|
fmt_pstn_options_PCaudioconnet: string;
|
|
1062
1065
|
fmt_pstn_options_phoneaudioconnet: string;
|
|
@@ -1122,6 +1125,7 @@ export declare const zhCn: {
|
|
|
1122
1125
|
fmt_SIP323_copywrite_phonenumber: string;
|
|
1123
1126
|
fmt_SIP323_options_detailedinfor: string;
|
|
1124
1127
|
fmt_SIP323_tips_alreadycopied: string;
|
|
1128
|
+
fmt_SIP_tips_enter_correct_number: string;
|
|
1125
1129
|
fmt_localrecord_labels_record: string;
|
|
1126
1130
|
fmt_localrecord_labels_savingto: string;
|
|
1127
1131
|
fmt_localrecord_button_savingto: string;
|
|
@@ -2041,4 +2045,244 @@ export declare const zhCn: {
|
|
|
2041
2045
|
fmt_echo_window_button_disconnect: string;
|
|
2042
2046
|
fmt_mute_toast_yr_on_mute: string;
|
|
2043
2047
|
fmt_meeting_setting_options_enable_recording: string;
|
|
2048
|
+
fmt_premeeting_subheading_scenario: string;
|
|
2049
|
+
fmt_premeeting_scenario_setting_button_meeting: string;
|
|
2050
|
+
fmt_premeeting_scenario_setting_button_webinar: string;
|
|
2051
|
+
fmt_premeeting_setting_lock_meeting: string;
|
|
2052
|
+
fmt_premeeting_role_setting_role: string;
|
|
2053
|
+
fmt_premeeting_role_setting_role_host: string;
|
|
2054
|
+
fmt_premeeting_role_setting_role_co_host: string;
|
|
2055
|
+
fmt_premeeting_role_setting_role_guest: string;
|
|
2056
|
+
fmt_premeeting_role_setting_role_audience: string;
|
|
2057
|
+
fmt_premeeting_setting_allow_guests_unmute: string;
|
|
2058
|
+
fmt_premeeting_setting_allow_guests_turn_on_video: string;
|
|
2059
|
+
fmt_premeeting_setting_allow_guests_rename: string;
|
|
2060
|
+
fmt_premeeting_setting_label_allow_audience_raisehands: string;
|
|
2061
|
+
fmt_premeeting_setting_allow_audience_view_participants_number: string;
|
|
2062
|
+
fmt_premeeting_setting_allow_audience_rename: string;
|
|
2063
|
+
fmt_security_setting_label_allow_audience_raisehands: string;
|
|
2064
|
+
fmt_security_setting_label_allow_audience_viewparticipants: string;
|
|
2065
|
+
fmt_security_setting_label_allow_audience_rename: string;
|
|
2066
|
+
fmt_security_setting_label_allow_audience_viewparticipants_off: string;
|
|
2067
|
+
fmt_security_setting_mute_guests_entry: string;
|
|
2068
|
+
fmt_security_setting_guests_video_entry_off: string;
|
|
2069
|
+
fmt_security_setting_allow_guests_unmute: string;
|
|
2070
|
+
fmt_security_setting_allow_guests_turn_on_video: string;
|
|
2071
|
+
fmt_security_setting_allow_guests_share_screen_whiteboard: string;
|
|
2072
|
+
fmt_security_setting_allow_guests_interactive_annotations: string;
|
|
2073
|
+
fmt_security_setting_allow_guests_rename: string;
|
|
2074
|
+
fmt_premeeting_participant_list: string;
|
|
2075
|
+
fmt_premeeting_participant_list_guest: string;
|
|
2076
|
+
fmt_premeeting_participant_list_audience: string;
|
|
2077
|
+
fmt_premeeting_participant_list_raising: string;
|
|
2078
|
+
fmt_premeeting_participant_list_guest_demote_audience: string;
|
|
2079
|
+
fmt_premeeting_participant_list_guest_revoke_cohost: string;
|
|
2080
|
+
fmt_premeeting_participant_list_guest_demote_tip: string;
|
|
2081
|
+
fmt_premeeting_participant_list_guest_revoke_tip: string;
|
|
2082
|
+
fmt_premeeting_participant_list_guest_disable_chatting_tip: string;
|
|
2083
|
+
fmt_premeeting_participant_list_guest_block_messages: string;
|
|
2084
|
+
fmt_premeeting_participant_list_guest_block_messages_tip: string;
|
|
2085
|
+
fmt_premeeting_participant_upgraded_guest_tip: string;
|
|
2086
|
+
fmt_premeeting_participant_upgraded_host: string;
|
|
2087
|
+
fmt_premeeting_participant_upgraded_host_choose: string;
|
|
2088
|
+
fmt_premeeting_participant_upgraded_host_on: string;
|
|
2089
|
+
fmt_premeeting_participant_upgraded_host_on_cancel: string;
|
|
2090
|
+
fmt_premeeting_participant_upgraded_co_host: string;
|
|
2091
|
+
fmt_premeeting_participant_upgraded_co_host_tip: string;
|
|
2092
|
+
fmt_premeeting_participant_upgraded_co_host_on: string;
|
|
2093
|
+
fmt_premeeting_participant_upgraded_co_host_on_cancel: string;
|
|
2094
|
+
fmt_premeeting_participant_upgraded_co_host_limit: string;
|
|
2095
|
+
fmt_premeeting_participant_set_guest: string;
|
|
2096
|
+
fmt_premeeting_participant_upgraded_guest_limit: string;
|
|
2097
|
+
fmt_premeeting_participant_set_co_host_tip: string;
|
|
2098
|
+
fmt_premeeting_participant_set_guest_tip: string;
|
|
2099
|
+
fmt_premeeting_participant_set_audience_tip: string;
|
|
2100
|
+
fmt_premeeting_participant_cannot_set_audience_tip: string;
|
|
2101
|
+
fmt_premeeting_participant_set_co_host_tip_myself: string;
|
|
2102
|
+
fmt_premeeting_participant_set_guest_tip_myself: string;
|
|
2103
|
+
fmt_premeeting_participant_set_audience_tip_myself: string;
|
|
2104
|
+
fmt_premeeting_participant_xx_now_host: string;
|
|
2105
|
+
fmt_premeeting_participant_xx_now_co_host: string;
|
|
2106
|
+
fmt_premeeting_participant_now_co_host_yourself: string;
|
|
2107
|
+
fmt_premeeting_participant_xx_now_guest: string;
|
|
2108
|
+
fmt_premeeting_participant_now_host_tip: string;
|
|
2109
|
+
fmt_premeeting_participant_set_guest_tip_u: string;
|
|
2110
|
+
fmt_premeeting_participant_now_guest_tip_u: string;
|
|
2111
|
+
fmt_premeeting_participant_now_guest_tip_u_ok: string;
|
|
2112
|
+
fmt_premeeting_participant_now_cohost_tip_u: string;
|
|
2113
|
+
fmt_premeeting_participant_now_host_tip_u: string;
|
|
2114
|
+
fmt_premeeting_participant_revoke_host_tip_u: string;
|
|
2115
|
+
fmt_premeeting_participant_revoke_cohost_tip_u: string;
|
|
2116
|
+
fmt_premeeting_participant_now_audience_tip_u: string;
|
|
2117
|
+
fmt_premeeting_participant_list_revoke_host_role: string;
|
|
2118
|
+
fmt_premeeting_participant_list_modify_nickname: string;
|
|
2119
|
+
fmt_premeeting_participant_remove_title: string;
|
|
2120
|
+
fmt_premeeting_participant_confirm_removal_tip: string;
|
|
2121
|
+
fmt_premeeting_participant_not_rejoin_on: string;
|
|
2122
|
+
fmt_premeeting_participant_remove_button: string;
|
|
2123
|
+
fmt_premeeting_participant_creator_cannot_removed: string;
|
|
2124
|
+
fmt_premeeting_participant_prohibited_join_tip: string;
|
|
2125
|
+
fmt_premeeting_participant_disable_chatting_title: string;
|
|
2126
|
+
fmt_premeeting_participant_disable_chatting_tip: string;
|
|
2127
|
+
fmt_premeeting_block_sb_messages_tip: string;
|
|
2128
|
+
fmt_premeeting_participant_chat_permission_restored: string;
|
|
2129
|
+
fmt_security_setting_lower_hand: string;
|
|
2130
|
+
fmt_security_setting_set_spotlight_video: string;
|
|
2131
|
+
fmt_security_setting_cancel_spotlight_follow: string;
|
|
2132
|
+
fmt_security_setting_allow_local_recording: string;
|
|
2133
|
+
fmt_security_setting_move_waiting_room: string;
|
|
2134
|
+
fmt_security_setting_pricate_chat_host: string;
|
|
2135
|
+
fmt_security_setting_pin: string;
|
|
2136
|
+
fmt_participants_setting_raise_hand: string;
|
|
2137
|
+
fmt_participants_setting_raise_hand_tips: string;
|
|
2138
|
+
fmt_participants_setting_lower_hand: string;
|
|
2139
|
+
fmt_participants_setting_lower_hand_tips: string;
|
|
2140
|
+
fmt_participants_setting_raise_hand_counts_tips: string;
|
|
2141
|
+
fmt_participants_setting_raise_hand_disabled_red_tips: string;
|
|
2142
|
+
fmt_participants_setting_raise_hand_disabled_tips: string;
|
|
2143
|
+
fmt_participants_setting_hands_lowered_tips: string;
|
|
2144
|
+
fmt_participants_setting_raise_hand_number_limit_tips: string;
|
|
2145
|
+
fmt_participants_setting_danmaku_raise_hand_counts_tips: string;
|
|
2146
|
+
fmt_participants_list_raise_hand_counts_tips: string;
|
|
2147
|
+
fmt_participants_list_privilege_allow_chatting: string;
|
|
2148
|
+
fmt_participants_list_privilege_private_chat: string;
|
|
2149
|
+
fmt_participants_list_modify_in_meeting_nickname: string;
|
|
2150
|
+
fmt_chat_setting_guest_chat_scope: string;
|
|
2151
|
+
fmt_chat_setting_guest_chat_allow_public_private: string;
|
|
2152
|
+
fmt_chat_setting_guest_chat_allow_public: string;
|
|
2153
|
+
fmt_chat_setting_guest_chat_allow_host_only: string;
|
|
2154
|
+
fmt_chat_setting_guest_chat_disable: string;
|
|
2155
|
+
fmt_chat_setting_audience_chat_scope: string;
|
|
2156
|
+
fmt_chat_setting_audience_chat_allow_public: string;
|
|
2157
|
+
fmt_chat_setting_audience_chat_allow_host_only: string;
|
|
2158
|
+
fmt_chat_setting_audience_chat_disable: string;
|
|
2159
|
+
fmt_audio_settings_select_audio_button: string;
|
|
2160
|
+
fmt_audio_settings_disconnect_audio_icon: string;
|
|
2161
|
+
fmt_audio_settings_select_audio_icon: string;
|
|
2162
|
+
fmt_audio_settings_connect_audio_tips: string;
|
|
2163
|
+
fmt_audio_settings_select_phone_audio: string;
|
|
2164
|
+
fmt_audio_settings_select_phone_audio_cancel: string;
|
|
2165
|
+
fmt_audio_settings_select_speaker: string;
|
|
2166
|
+
fmt_audio_settings_select_receiver: string;
|
|
2167
|
+
fmt_audio_settings_select_mute: string;
|
|
2168
|
+
fmt_audio_settings_select_cancel: string;
|
|
2169
|
+
fmt_bottom_bar_audience_raise_hand: string;
|
|
2170
|
+
fmt_bottom_bar_audience_raise_hand_tip: string;
|
|
2171
|
+
fmt_bottom_bar_audience_lower_hand: string;
|
|
2172
|
+
fmt_v_chat_words_select_copy: string;
|
|
2173
|
+
fmt_v_chat_words_select_multi_select: string;
|
|
2174
|
+
fmt_v_chat_words_select_private_chat: string;
|
|
2175
|
+
fmt_v_chat_words_select_allow_chatting: string;
|
|
2176
|
+
fmt_v_chat_words_select_disable_chatting: string;
|
|
2177
|
+
fmt_v_chat_words_setting_mute_chat_tip: string;
|
|
2178
|
+
fmt_v_chat_words_setting_enable_chat_tip: string;
|
|
2179
|
+
fmt_v_webinar_chat_settings: string;
|
|
2180
|
+
fmt_v_webinar_chat_setting_guest_chat_scope: string;
|
|
2181
|
+
fmt_v_webinar_chat_setting_guest_chat_allow_public_private: string;
|
|
2182
|
+
fmt_v_webinar_chat_setting_guest_chat_allow_public: string;
|
|
2183
|
+
fmt_v_webinar_chat_setting_guest_chat_allow_host_only: string;
|
|
2184
|
+
fmt_v_webinar_chat_setting_guest_chat_disable: string;
|
|
2185
|
+
fmt_v_webinar_chat_setting_audience_chat_scope: string;
|
|
2186
|
+
fmt_v_webinar_chat_setting_audience_chat_allow_public: string;
|
|
2187
|
+
fmt_v_webinar_chat_setting_audience_chat_allow_host_only: string;
|
|
2188
|
+
fmt_v_webinar_chat_setting_audience_chat_disable: string;
|
|
2189
|
+
fmt_v_webinar_chat_setting_show_message_bubbles: string;
|
|
2190
|
+
fmt_v_app_private_chat_setting_send_to: string;
|
|
2191
|
+
fmt_v_app_private_chat_setting_footer_allow_free: string;
|
|
2192
|
+
fmt_v_app_private_chat_setting_footer_allow_private_host: string;
|
|
2193
|
+
fmt_v_app_private_waiting_room_subtitle: string;
|
|
2194
|
+
fmt_v_app_private_chat_privately_xx: string;
|
|
2195
|
+
fmt_v_app_private_chat_prohibited_tip: string;
|
|
2196
|
+
fmt_v_app_private_retract_host_permissions: string;
|
|
2197
|
+
fmt_v_app_private_group_chat_prohibited_tip: string;
|
|
2198
|
+
fmt_v_app_private_xx_left_meeting: string;
|
|
2199
|
+
fmt_v_app_private_connecting_meeting: string;
|
|
2200
|
+
fmt_v_app_private_select_another_chat_recipient_tip: string;
|
|
2201
|
+
fmt_v_private_chat_private_chat: string;
|
|
2202
|
+
fmt_v_private_chat_select_host_tip: string;
|
|
2203
|
+
fmt_v_private_chat_select_user_tip: string;
|
|
2204
|
+
fmt_v_private_chat_select_again_tip: string;
|
|
2205
|
+
fmt_v_multiple_selection_private_chat: string;
|
|
2206
|
+
fmt_v_multiple_selection_multiple_selection: string;
|
|
2207
|
+
fmt_v_multiple_selection_copy: string;
|
|
2208
|
+
fmt_v_multiple_selection_maximum_copy_tip: string;
|
|
2209
|
+
fmt_v_chat_disable_chatting_title: string;
|
|
2210
|
+
fmt_v_chat_disable_chatting_tip: string;
|
|
2211
|
+
fmt_v_chat_block_sb_messages_tip: string;
|
|
2212
|
+
fmt_v_chat_block_sb_messages_tip_cancel: string;
|
|
2213
|
+
fmt_v_chat_block_sb_messages_tip_ok: string;
|
|
2214
|
+
fmt_v_chat_block_you_muted_tip: string;
|
|
2215
|
+
fmt_v_chat_chat_permission_restored: string;
|
|
2216
|
+
fmt_v_app_new_private_chat_private_chat: string;
|
|
2217
|
+
fmt_v_app_new_private_chat_select_host_tip: string;
|
|
2218
|
+
fmt_v_app_new_private_chat_select_user_tip: string;
|
|
2219
|
+
fmt_v_app_new_private_chat_select_again_tip: string;
|
|
2220
|
+
fmt_v_app_new_private_chat_select_copy: string;
|
|
2221
|
+
fmt_v_app_new_private_chat_select_multi_select: string;
|
|
2222
|
+
fmt_v_app_new_private_chat_select_private_chat: string;
|
|
2223
|
+
fmt_v_private_chat_word_count_exceed_tip: string;
|
|
2224
|
+
fmt_v_private_chat_select_another_chat_recipient_tip: string;
|
|
2225
|
+
fmt_v_app_multiple_selection_private_chat: string;
|
|
2226
|
+
fmt_v_app_multiple_selection_multiple_selection: string;
|
|
2227
|
+
fmt_v_app_multiple_selection_copy: string;
|
|
2228
|
+
fmt_v_app_multiple_selection_copy_clipboard: string;
|
|
2229
|
+
fmt_v_app_multiple_selection_maximum_copy_tip: string;
|
|
2230
|
+
fmt_v_app_multiple_selection_copied_tip: string;
|
|
2231
|
+
fmt_v_security_web_webinar_security_settings: string;
|
|
2232
|
+
fmt_v_security_web_webinar_security_lock_room: string;
|
|
2233
|
+
fmt_v_security_web_webinar_security_watermark: string;
|
|
2234
|
+
fmt_v_security_web_webinar_security_single_row: string;
|
|
2235
|
+
fmt_v_security_web_webinar_security_multiple_rows: string;
|
|
2236
|
+
fmt_v_security_web_webinar_security_allow_guests_attendees_rename: string;
|
|
2237
|
+
fmt_v_security_web_webinar_security_allow_guests: string;
|
|
2238
|
+
fmt_v_security_web_webinar_security_chat_subheading: string;
|
|
2239
|
+
fmt_v_security_web_webinar_security_guest_chat_scope: string;
|
|
2240
|
+
fmt_v_security_web_webinar_security_allow_public_private_chat: string;
|
|
2241
|
+
fmt_v_security_web_webinar_security_allow_public_chat: string;
|
|
2242
|
+
fmt_v_security_web_webinar_security_private_chat_host_only: string;
|
|
2243
|
+
fmt_v_security_web_webinar_security_disable_chat: string;
|
|
2244
|
+
fmt_v_security_web_webinar_security_screen_sharing: string;
|
|
2245
|
+
fmt_v_security_web_webinar_security_interactive_annotation: string;
|
|
2246
|
+
fmt_v_security_web_webinar_security_unmute_themselves: string;
|
|
2247
|
+
fmt_v_security_web_webinar_security_turn_on_video: string;
|
|
2248
|
+
fmt_v_security_web_webinar_security_rename_themselves: string;
|
|
2249
|
+
fmt_v_security_web_webinar_security_live_transcription_on_off: string;
|
|
2250
|
+
fmt_v_security_web_webinar_security_use_subtitle: string;
|
|
2251
|
+
fmt_v_security_web_webinar_security_change_language: string;
|
|
2252
|
+
fmt_v_security_web_webinar_security_allow_attendees: string;
|
|
2253
|
+
fmt_v_security_web_webinar_security_chat_select: string;
|
|
2254
|
+
fmt_v_security_web_webinar_security_attendee_chat_scope: string;
|
|
2255
|
+
fmt_v_security_web_webinar_security_attendee_chat_public: string;
|
|
2256
|
+
fmt_v_security_web_webinar_security_attendee_chat_host: string;
|
|
2257
|
+
fmt_v_security_web_webinar_security_attendee_disable_chat: string;
|
|
2258
|
+
fmt_v_security_web_webinar_security_raise_hand: string;
|
|
2259
|
+
fmt_v_security_web_webinar_security_view_total_number: string;
|
|
2260
|
+
fmt_premeeting_participant_upgraded_host_app: string;
|
|
2261
|
+
fmt_premeeting_participant_upgraded_host_choose_app: string;
|
|
2262
|
+
fmt_premeeting_participant_upgraded_host_on_app: string;
|
|
2263
|
+
fmt_premeeting_participant_upgraded_host_on_app_cancel: string;
|
|
2264
|
+
fmt_premeeting_participant_upgraded_co_host_app: string;
|
|
2265
|
+
fmt_premeeting_participant_upgraded_co_host_tip_app: string;
|
|
2266
|
+
fmt_premeeting_participant_upgraded_co_host_on_app: string;
|
|
2267
|
+
fmt_premeeting_participant_upgraded_co_host_on_app_cancel: string;
|
|
2268
|
+
fmt_premeeting_participant_upgraded_co_host_limit_app: string;
|
|
2269
|
+
fmt_premeeting_participant_upgraded_guest_limit_app: string;
|
|
2270
|
+
fmt_premeeting_participant_revoke_co_host_tip_app: string;
|
|
2271
|
+
fmt_premeeting_participant_set_co_host_tip_app: string;
|
|
2272
|
+
fmt_premeeting_participant_set_guest_tip_app: string;
|
|
2273
|
+
fmt_premeeting_participant_set_audience_tip_app: string;
|
|
2274
|
+
fmt_premeeting_participant_cannot_set_audience_tip_app: string;
|
|
2275
|
+
fmt_premeeting_participant_set_co_host_tip_myself_app: string;
|
|
2276
|
+
fmt_premeeting_participant_set_guest_tip_myself_app: string;
|
|
2277
|
+
fmt_premeeting_participant_set_audience_tip_myself_app: string;
|
|
2278
|
+
fmt_premeeting_participant_xx_now_host_app: string;
|
|
2279
|
+
fmt_premeeting_participant_you_now_host_app: string;
|
|
2280
|
+
fmt_premeeting_participant_xx_now_host_app_other: string;
|
|
2281
|
+
fmt_premeeting_participant_xx_now_co_host_app: string;
|
|
2282
|
+
fmt_premeeting_participant_now_co_host_yourself_app: string;
|
|
2283
|
+
fmt_premeeting_participant_xx_now_guest_app: string;
|
|
2284
|
+
fmt_premeeting_participant_set_guest_tip_u_app: string;
|
|
2285
|
+
fmt_premeeting_participant_now_guest_tip_u_app: string;
|
|
2286
|
+
fmt_premeeting_participant_now_guest_tip_u_ok_app: string;
|
|
2287
|
+
fmt_participants_button_meetingPermission: string;
|
|
2044
2288
|
};
|