@placetime/corptime-conference 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +132 -0
- package/android/build.gradle +156 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +3 -0
- package/android/src/main/java/org/jitsi/meet/sdk/AndroidSettingsModule.java +56 -0
- package/android/src/main/java/org/jitsi/meet/sdk/AppInfoModule.java +150 -0
- package/android/src/main/java/org/jitsi/meet/sdk/AudioDeviceHandlerConnectionService.java +185 -0
- package/android/src/main/java/org/jitsi/meet/sdk/AudioDeviceHandlerGeneric.java +248 -0
- package/android/src/main/java/org/jitsi/meet/sdk/AudioModeModule.java +529 -0
- package/android/src/main/java/org/jitsi/meet/sdk/ConnectionService.java +452 -0
- package/android/src/main/java/org/jitsi/meet/sdk/JMOngoingConferenceModule.java +117 -0
- package/android/src/main/java/org/jitsi/meet/sdk/JMOngoingConferenceService.java +107 -0
- package/android/src/main/java/org/jitsi/meet/sdk/JitsiMeetReactNativePackage.java +39 -0
- package/android/src/main/java/org/jitsi/meet/sdk/LocaleDetector.java +58 -0
- package/android/src/main/java/org/jitsi/meet/sdk/LogBridgeModule.java +73 -0
- package/android/src/main/java/org/jitsi/meet/sdk/PictureInPictureModule.java +171 -0
- package/android/src/main/java/org/jitsi/meet/sdk/ProximityModule.java +107 -0
- package/android/src/main/java/org/jitsi/meet/sdk/RNConnectionService.java +255 -0
- package/android/src/main/java/org/jitsi/meet/sdk/RNOngoingNotification.java +108 -0
- package/android/src/main/java/org/jitsi/meet/sdk/log/log/JitsiMeetBaseLogHandler.java +49 -0
- package/android/src/main/java/org/jitsi/meet/sdk/log/log/JitsiMeetDefaultLogHandler.java +39 -0
- package/android/src/main/java/org/jitsi/meet/sdk/log/log/JitsiMeetLogger.java +107 -0
- package/android/src/main/java/org/jitsi/meet/sdk/log/net/NAT64AddrInfo.java +238 -0
- package/android/src/main/java/org/jitsi/meet/sdk/log/net/NAT64AddrInfoModule.java +123 -0
- package/android/src/main/res/drawable-hdpi/ic_notification.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_notification.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_notification.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_notification.png +0 -0
- package/android/src/main/res/drawable-xxxhdpi/ic_notification.png +0 -0
- package/android/src/main/res/values/colors.xml +5 -0
- package/android/src/main/res/values/strings.xml +12 -0
- package/android/src/main/res/values/styles.xml +6 -0
- package/images/GIPHY_icon.png +0 -0
- package/images/GIPHY_logo.png +0 -0
- package/images/app-store-badge.png +0 -0
- package/images/apple-touch-icon.png +0 -0
- package/images/avatar.png +0 -0
- package/images/btn_google_signin_dark_normal.png +0 -0
- package/images/calendar.svg +21 -0
- package/images/chromeLogo.svg +9 -0
- package/images/downloadLocalRecording.png +0 -0
- package/images/dropboxLogo_square.png +0 -0
- package/images/f-droid-badge.png +0 -0
- package/images/favicon.svg +4 -0
- package/images/flags.png +0 -0
- package/images/flags@2x.png +0 -0
- package/images/google-play-badge.png +0 -0
- package/images/googleLogo.svg +11 -0
- package/images/icon-cloud.png +0 -0
- package/images/icon-info.png +0 -0
- package/images/icon-users.png +0 -0
- package/images/jitsilogo.png +0 -0
- package/images/logo-deep-linking-mobile.png +0 -0
- package/images/logo-deep-linking.png +0 -0
- package/images/microsoftLogo.svg +1 -0
- package/images/share-audio.gif +0 -0
- package/images/virtual-background/background-1.jpg +0 -0
- package/images/virtual-background/background-2.jpg +0 -0
- package/images/virtual-background/background-3.jpg +0 -0
- package/images/virtual-background/background-4.jpg +0 -0
- package/images/virtual-background/background-5.jpg +0 -0
- package/images/virtual-background/background-6.jpg +0 -0
- package/images/virtual-background/background-7.jpg +0 -0
- package/images/watermark.svg +5 -0
- package/images/welcome-background.png +0 -0
- package/index.tsx +182 -0
- package/ios/sdk.xcodeproj/project.pbxproj +1042 -0
- package/ios/sdk.xcodeproj/xcshareddata/xcschemes/JitsiMeetSDK.xcscheme +76 -0
- package/ios/sdk.xcodeproj/xcshareddata/xcschemes/JitsiMeetSDKLite.xcscheme +67 -0
- package/ios/src/AppInfo.m +102 -0
- package/ios/src/AudioMode.m +430 -0
- package/ios/src/InfoPlistUtil.h +23 -0
- package/ios/src/InfoPlistUtil.m +52 -0
- package/ios/src/JitsiAudioSession+Private.h +24 -0
- package/ios/src/JitsiAudioSession.h +26 -0
- package/ios/src/JitsiAudioSession.m +34 -0
- package/ios/src/LocaleDetector.m +40 -0
- package/ios/src/POSIX.m +110 -0
- package/ios/src/Proximity.m +44 -0
- package/ios/src/callkit/CallKit.m +347 -0
- package/ios/src/callkit/JMCallKitEmitter.h +35 -0
- package/ios/src/callkit/JMCallKitEmitter.m +117 -0
- package/ios/src/callkit/JMCallKitListener.h +34 -0
- package/ios/src/callkit/JMCallKitProxy.h +87 -0
- package/ios/src/callkit/JMCallKitProxy.m +284 -0
- package/ios/src/dropbox/Dropbox.h +27 -0
- package/ios/src/dropbox/Dropbox.m +180 -0
- package/jitsi-meet-rnsdk.podspec +35 -0
- package/lang/languages.json +61 -0
- package/lang/main-af.json +710 -0
- package/lang/main-ar.json +1357 -0
- package/lang/main-be.json +790 -0
- package/lang/main-bg.json +1685 -0
- package/lang/main-ca.json +1367 -0
- package/lang/main-cs.json +1582 -0
- package/lang/main-da.json +770 -0
- package/lang/main-de.json +1614 -0
- package/lang/main-dsb.json +1372 -0
- package/lang/main-el.json +1421 -0
- package/lang/main-eo.json +1527 -0
- package/lang/main-es-US.json +1196 -0
- package/lang/main-es.json +1468 -0
- package/lang/main-et.json +775 -0
- package/lang/main-eu.json +1037 -0
- package/lang/main-fa.json +1480 -0
- package/lang/main-fi.json +726 -0
- package/lang/main-fr-CA.json +1685 -0
- package/lang/main-fr.json +1685 -0
- package/lang/main-gl.json +755 -0
- package/lang/main-he.json +789 -0
- package/lang/main-hi.json +977 -0
- package/lang/main-hr.json +1364 -0
- package/lang/main-hsb.json +1317 -0
- package/lang/main-hu.json +1098 -0
- package/lang/main-hy.json +705 -0
- package/lang/main-id.json +1549 -0
- package/lang/main-is.json +1527 -0
- package/lang/main-it.json +1700 -0
- package/lang/main-ja.json +1258 -0
- package/lang/main-kab.json +1166 -0
- package/lang/main-ko.json +1581 -0
- package/lang/main-lt.json +776 -0
- package/lang/main-lv.json +1667 -0
- package/lang/main-ml.json +935 -0
- package/lang/main-mn.json +1441 -0
- package/lang/main-mr.json +786 -0
- package/lang/main-nb.json +1583 -0
- package/lang/main-nl.json +1111 -0
- package/lang/main-no.json +1583 -0
- package/lang/main-oc.json +1589 -0
- package/lang/main-pl.json +1456 -0
- package/lang/main-pt-BR.json +1524 -0
- package/lang/main-pt.json +1671 -0
- package/lang/main-ro.json +763 -0
- package/lang/main-ru.json +1542 -0
- package/lang/main-sc.json +1685 -0
- package/lang/main-sk.json +917 -0
- package/lang/main-sl.json +1167 -0
- package/lang/main-sq.json +1581 -0
- package/lang/main-sr.json +763 -0
- package/lang/main-sv.json +1583 -0
- package/lang/main-te.json +994 -0
- package/lang/main-tr.json +1572 -0
- package/lang/main-uk.json +1432 -0
- package/lang/main-vi.json +1538 -0
- package/lang/main-zh-CN.json +1631 -0
- package/lang/main-zh-TW.json +1631 -0
- package/lang/main.json +1690 -0
- package/lang/readme.md +55 -0
- package/lang/translation-languages.json +112 -0
- package/lang/update-translation.js +38 -0
- package/modules/API/.eslintrc.js +3 -0
- package/modules/API/API.js +2351 -0
- package/modules/API/constants.js +31 -0
- package/modules/API/external/external_api.js +1508 -0
- package/modules/API/external/functions.js +139 -0
- package/modules/API/external/index.js +3 -0
- package/modules/API/index.js +2 -0
- package/modules/UI/UI.js +234 -0
- package/modules/UI/UIErrors.js +17 -0
- package/modules/UI/audio_levels/AudioLevels.js +66 -0
- package/modules/UI/etherpad/Etherpad.js +186 -0
- package/modules/UI/util/UIUtil.js +59 -0
- package/modules/UI/videolayout/Filmstrip.js +34 -0
- package/modules/UI/videolayout/LargeContainer.js +67 -0
- package/modules/UI/videolayout/LargeVideoManager.js +780 -0
- package/modules/UI/videolayout/VideoContainer.js +676 -0
- package/modules/UI/videolayout/VideoLayout.js +317 -0
- package/modules/devices/mediaDeviceHelper.js +295 -0
- package/modules/recorder/Recorder.js +44 -0
- package/modules/translation/translation.js +62 -0
- package/modules/transport/.eslintrc.js +3 -0
- package/modules/transport/index.js +52 -0
- package/modules/util/TaskQueue.js +71 -0
- package/modules/util/helpers.js +26 -0
- package/package.json +97 -0
- package/prepare_sdk.js +202 -0
- package/react/.eslintrc-react-native.js +11 -0
- package/react/.eslintrc.js +28 -0
- package/react/bootstrap.native.js +7 -0
- package/react/features/always-on-top/AlwaysOnTop.tsx +281 -0
- package/react/features/always-on-top/AudioMuteButton.tsx +180 -0
- package/react/features/always-on-top/HangupButton.tsx +60 -0
- package/react/features/always-on-top/Toolbar.tsx +137 -0
- package/react/features/always-on-top/ToolbarButton.tsx +69 -0
- package/react/features/always-on-top/VideoMuteButton.tsx +180 -0
- package/react/features/always-on-top/index.tsx +13 -0
- package/react/features/analytics/AnalyticsEvents.ts +983 -0
- package/react/features/analytics/actionTypes.ts +29 -0
- package/react/features/analytics/actions.ts +25 -0
- package/react/features/analytics/functions.ts +339 -0
- package/react/features/analytics/handlers/AbstractHandler.ts +115 -0
- package/react/features/analytics/handlers/AmplitudeHandler.ts +91 -0
- package/react/features/analytics/handlers/MatomoHandler.ts +170 -0
- package/react/features/analytics/handlers/amplitude/deviceIDStorageUtils.js +0 -0
- package/react/features/analytics/handlers/amplitude/fixDeviceID.native.ts +33 -0
- package/react/features/analytics/handlers/amplitude/fixDeviceID.web.ts +46 -0
- package/react/features/analytics/handlers/amplitude/lib.native.ts +15 -0
- package/react/features/analytics/handlers/amplitude/lib.web.ts +38 -0
- package/react/features/analytics/logger.ts +3 -0
- package/react/features/analytics/middleware.ts +216 -0
- package/react/features/analytics/reducer.ts +88 -0
- package/react/features/app/actions.any.ts +160 -0
- package/react/features/app/actions.native.ts +230 -0
- package/react/features/app/actions.web.ts +207 -0
- package/react/features/app/components/AbstractApp.ts +89 -0
- package/react/features/app/components/App.native.tsx +312 -0
- package/react/features/app/components/App.web.tsx +67 -0
- package/react/features/app/functions.any.ts +25 -0
- package/react/features/app/functions.native.ts +40 -0
- package/react/features/app/functions.web.ts +59 -0
- package/react/features/app/getRouteToRender.native.ts +18 -0
- package/react/features/app/getRouteToRender.web.ts +148 -0
- package/react/features/app/logger.ts +3 -0
- package/react/features/app/middleware.ts +180 -0
- package/react/features/app/middlewares.any.ts +57 -0
- package/react/features/app/middlewares.native.ts +17 -0
- package/react/features/app/middlewares.web.ts +28 -0
- package/react/features/app/reducer.native.ts +28 -0
- package/react/features/app/reducers.any.ts +58 -0
- package/react/features/app/reducers.native.ts +9 -0
- package/react/features/app/reducers.web.ts +22 -0
- package/react/features/app/types.ts +180 -0
- package/react/features/audio-level-indicator/components/AudioLevelIndicator.tsx +83 -0
- package/react/features/authentication/actionTypes.ts +106 -0
- package/react/features/authentication/actions.any.ts +257 -0
- package/react/features/authentication/actions.native.ts +90 -0
- package/react/features/authentication/actions.web.ts +78 -0
- package/react/features/authentication/components/index.native.ts +2 -0
- package/react/features/authentication/components/index.web.ts +2 -0
- package/react/features/authentication/components/native/LoginDialog.tsx +318 -0
- package/react/features/authentication/components/native/WaitForOwnerDialog.tsx +116 -0
- package/react/features/authentication/components/web/LoginDialog.tsx +299 -0
- package/react/features/authentication/components/web/LoginQuestionDialog.tsx +38 -0
- package/react/features/authentication/components/web/WaitForOwnerDialog.tsx +119 -0
- package/react/features/authentication/functions.any.ts +86 -0
- package/react/features/authentication/functions.native.ts +78 -0
- package/react/features/authentication/functions.web.ts +122 -0
- package/react/features/authentication/logger.ts +3 -0
- package/react/features/authentication/middleware.ts +344 -0
- package/react/features/authentication/reducer.ts +110 -0
- package/react/features/av-moderation/actionTypes.ts +144 -0
- package/react/features/av-moderation/actions.ts +386 -0
- package/react/features/av-moderation/constants.ts +51 -0
- package/react/features/av-moderation/functions.ts +182 -0
- package/react/features/av-moderation/middleware.ts +317 -0
- package/react/features/av-moderation/reducer.ts +399 -0
- package/react/features/av-moderation/sounds.ts +6 -0
- package/react/features/base/app/actionTypes.ts +33 -0
- package/react/features/base/app/actions.ts +69 -0
- package/react/features/base/app/components/BaseApp.tsx +283 -0
- package/react/features/base/app/functions.ts +28 -0
- package/react/features/base/app/logger.ts +3 -0
- package/react/features/base/app/middleware.web.ts +54 -0
- package/react/features/base/app/reducer.ts +34 -0
- package/react/features/base/app/types.ts +3 -0
- package/react/features/base/audio-only/actionTypes.ts +10 -0
- package/react/features/base/audio-only/actions.ts +51 -0
- package/react/features/base/audio-only/logger.ts +3 -0
- package/react/features/base/audio-only/reducer.ts +25 -0
- package/react/features/base/avatar/components/Avatar.tsx +295 -0
- package/react/features/base/avatar/components/index.native.ts +1 -0
- package/react/features/base/avatar/components/index.web.ts +1 -0
- package/react/features/base/avatar/components/native/StatelessAvatar.tsx +200 -0
- package/react/features/base/avatar/components/native/styles.ts +82 -0
- package/react/features/base/avatar/components/styles.ts +5 -0
- package/react/features/base/avatar/components/web/StatelessAvatar.tsx +220 -0
- package/react/features/base/avatar/constants.ts +4 -0
- package/react/features/base/avatar/functions.ts +95 -0
- package/react/features/base/avatar/types.ts +32 -0
- package/react/features/base/buttons/CopyButton.web.tsx +244 -0
- package/react/features/base/color-scheme/ColorSchemeRegistry.ts +162 -0
- package/react/features/base/color-scheme/defaultScheme.ts +30 -0
- package/react/features/base/color-scheme/functions.ts +11 -0
- package/react/features/base/components/themes/participantsPaneTheme.json +5 -0
- package/react/features/base/conference/actionTypes.ts +369 -0
- package/react/features/base/conference/actions.any.ts +1126 -0
- package/react/features/base/conference/actions.native.ts +29 -0
- package/react/features/base/conference/actions.web.ts +25 -0
- package/react/features/base/conference/constants.ts +47 -0
- package/react/features/base/conference/functions.ts +657 -0
- package/react/features/base/conference/logger.ts +3 -0
- package/react/features/base/conference/middleware.any.ts +830 -0
- package/react/features/base/conference/middleware.native.ts +50 -0
- package/react/features/base/conference/middleware.web.ts +223 -0
- package/react/features/base/conference/reducer.ts +709 -0
- package/react/features/base/config/actionTypes.ts +61 -0
- package/react/features/base/config/actions.ts +185 -0
- package/react/features/base/config/configType.ts +670 -0
- package/react/features/base/config/configWhitelist.ts +254 -0
- package/react/features/base/config/constants.ts +43 -0
- package/react/features/base/config/extraConfigWhitelist.ts +4 -0
- package/react/features/base/config/extraInterfaceConfigWhitelist.ts +4 -0
- package/react/features/base/config/functions.any.ts +465 -0
- package/react/features/base/config/functions.native.ts +53 -0
- package/react/features/base/config/functions.web.ts +87 -0
- package/react/features/base/config/getRoomName.ts +15 -0
- package/react/features/base/config/interfaceConfigWhitelist.ts +57 -0
- package/react/features/base/config/isEmbeddedConfigWhitelist.ts +10 -0
- package/react/features/base/config/isEmbeddedInterfaceConfigWhitelist.ts +6 -0
- package/react/features/base/config/logger.ts +3 -0
- package/react/features/base/config/middleware.ts +225 -0
- package/react/features/base/config/reducer.ts +603 -0
- package/react/features/base/connection/actionTypes.ts +84 -0
- package/react/features/base/connection/actions.any.ts +448 -0
- package/react/features/base/connection/actions.native.ts +62 -0
- package/react/features/base/connection/actions.web.ts +90 -0
- package/react/features/base/connection/constants.ts +17 -0
- package/react/features/base/connection/functions.ts +101 -0
- package/react/features/base/connection/logger.ts +3 -0
- package/react/features/base/connection/middleware.web.ts +30 -0
- package/react/features/base/connection/reducer.ts +269 -0
- package/react/features/base/connection/types.ts +113 -0
- package/react/features/base/connection/utils.ts +49 -0
- package/react/features/base/devices/actionTypes.ts +96 -0
- package/react/features/base/devices/actions.web.ts +356 -0
- package/react/features/base/devices/constants.ts +11 -0
- package/react/features/base/devices/functions.any.ts +19 -0
- package/react/features/base/devices/functions.native.ts +1 -0
- package/react/features/base/devices/functions.web.ts +383 -0
- package/react/features/base/devices/logger.ts +3 -0
- package/react/features/base/devices/middleware.web.ts +349 -0
- package/react/features/base/devices/reducer.web.ts +88 -0
- package/react/features/base/devices/types.ts +17 -0
- package/react/features/base/dialog/actionTypes.ts +41 -0
- package/react/features/base/dialog/actions.ts +126 -0
- package/react/features/base/dialog/components/AbstractDialogContainer.ts +72 -0
- package/react/features/base/dialog/components/functions.native.tsx +57 -0
- package/react/features/base/dialog/components/native/AbstractDialog.ts +168 -0
- package/react/features/base/dialog/components/native/AlertDialog.tsx +56 -0
- package/react/features/base/dialog/components/native/BottomSheet.tsx +150 -0
- package/react/features/base/dialog/components/native/BottomSheetContainer.tsx +22 -0
- package/react/features/base/dialog/components/native/ConfirmDialog.tsx +172 -0
- package/react/features/base/dialog/components/native/DialogContainer.tsx +58 -0
- package/react/features/base/dialog/components/native/InputDialog.tsx +170 -0
- package/react/features/base/dialog/components/native/PageReloadDialog.tsx +221 -0
- package/react/features/base/dialog/components/native/styles.ts +265 -0
- package/react/features/base/dialog/components/web/AbstractDialogTab.ts +58 -0
- package/react/features/base/dialog/constants.ts +83 -0
- package/react/features/base/dialog/functions.ts +45 -0
- package/react/features/base/dialog/logger.ts +3 -0
- package/react/features/base/dialog/reducer.ts +63 -0
- package/react/features/base/environment/checkChromeExtensionsInstalled.native.ts +10 -0
- package/react/features/base/environment/checkChromeExtensionsInstalled.web.ts +26 -0
- package/react/features/base/environment/environment.ts +122 -0
- package/react/features/base/environment/utils.ts +32 -0
- package/react/features/base/flags/actionTypes.ts +10 -0
- package/react/features/base/flags/actions.ts +27 -0
- package/react/features/base/flags/constants.ts +286 -0
- package/react/features/base/flags/functions.ts +31 -0
- package/react/features/base/flags/reducer.ts +35 -0
- package/react/features/base/i18n/BuiltinLanguages.native.ts +189 -0
- package/react/features/base/i18n/BuiltinLanguages.web.ts +0 -0
- package/react/features/base/i18n/actionTypes.ts +9 -0
- package/react/features/base/i18n/configLanguageDetector.ts +28 -0
- package/react/features/base/i18n/dateUtil.ts +150 -0
- package/react/features/base/i18n/functions.tsx +45 -0
- package/react/features/base/i18n/i18next.ts +147 -0
- package/react/features/base/i18n/languageDetector.native.ts +43 -0
- package/react/features/base/i18n/languageDetector.web.ts +39 -0
- package/react/features/base/i18n/logger.ts +3 -0
- package/react/features/base/i18n/middleware.ts +49 -0
- package/react/features/base/icons/components/Icon.tsx +209 -0
- package/react/features/base/icons/components/SvgXmlIcon.native.tsx +17 -0
- package/react/features/base/icons/components/SvgXmlIcon.web.tsx +26 -0
- package/react/features/base/icons/components/types.native.ts +5 -0
- package/react/features/base/icons/components/types.web.ts +5 -0
- package/react/features/base/icons/components/withBranding.tsx +32 -0
- package/react/features/base/icons/svg/account-record.svg +5 -0
- package/react/features/base/icons/svg/add-user.svg +5 -0
- package/react/features/base/icons/svg/arrow-back.svg +5 -0
- package/react/features/base/icons/svg/arrow-down-large.svg +3 -0
- package/react/features/base/icons/svg/arrow-down.svg +3 -0
- package/react/features/base/icons/svg/arrow-left.svg +3 -0
- package/react/features/base/icons/svg/arrow-right.svg +3 -0
- package/react/features/base/icons/svg/arrow-up-large.svg +3 -0
- package/react/features/base/icons/svg/arrow-up.svg +3 -0
- package/react/features/base/icons/svg/bell.svg +3 -0
- package/react/features/base/icons/svg/bluetooth.svg +3 -0
- package/react/features/base/icons/svg/calendar.svg +3 -0
- package/react/features/base/icons/svg/camera-refresh.svg +3 -0
- package/react/features/base/icons/svg/car.svg +3 -0
- package/react/features/base/icons/svg/chat-unread.svg +5 -0
- package/react/features/base/icons/svg/check.svg +3 -0
- package/react/features/base/icons/svg/close-circle.svg +4 -0
- package/react/features/base/icons/svg/close-large.svg +3 -0
- package/react/features/base/icons/svg/cloud-upload.svg +4 -0
- package/react/features/base/icons/svg/code.svg +5 -0
- package/react/features/base/icons/svg/connection.svg +3 -0
- package/react/features/base/icons/svg/constants.ts +222 -0
- package/react/features/base/icons/svg/contact-record.svg +4 -0
- package/react/features/base/icons/svg/copy.svg +4 -0
- package/react/features/base/icons/svg/dots-horizontal.svg +5 -0
- package/react/features/base/icons/svg/download.svg +4 -0
- package/react/features/base/icons/svg/e2ee.svg +3 -0
- package/react/features/base/icons/svg/edit.svg +3 -0
- package/react/features/base/icons/svg/emotions-angry.svg +10 -0
- package/react/features/base/icons/svg/emotions-disgusted.svg +10 -0
- package/react/features/base/icons/svg/emotions-fearful.svg +10 -0
- package/react/features/base/icons/svg/emotions-happy.svg +10 -0
- package/react/features/base/icons/svg/emotions-neutral.svg +10 -0
- package/react/features/base/icons/svg/emotions-sad.svg +10 -0
- package/react/features/base/icons/svg/emotions-surprised.svg +10 -0
- package/react/features/base/icons/svg/enlarge.svg +5 -0
- package/react/features/base/icons/svg/enter-fullscreen.svg +6 -0
- package/react/features/base/icons/svg/envelope.svg +3 -0
- package/react/features/base/icons/svg/exclamation-solid.svg +3 -0
- package/react/features/base/icons/svg/exclamation-triangle.svg +3 -0
- package/react/features/base/icons/svg/exit-fullscreen.svg +6 -0
- package/react/features/base/icons/svg/face-smile.svg +6 -0
- package/react/features/base/icons/svg/favorite-solid.svg +3 -0
- package/react/features/base/icons/svg/favorite.svg +3 -0
- package/react/features/base/icons/svg/feedback.svg +3 -0
- package/react/features/base/icons/svg/gear.svg +4 -0
- package/react/features/base/icons/svg/google.svg +3 -0
- package/react/features/base/icons/svg/hangup.svg +3 -0
- package/react/features/base/icons/svg/headset.svg +5 -0
- package/react/features/base/icons/svg/help.svg +3 -0
- package/react/features/base/icons/svg/highlight.svg +3 -0
- package/react/features/base/icons/svg/icon-ring-group.svg +3 -0
- package/react/features/base/icons/svg/image.svg +4 -0
- package/react/features/base/icons/svg/index.ts +233 -0
- package/react/features/base/icons/svg/info-circle.svg +5 -0
- package/react/features/base/icons/svg/info.svg +3 -0
- package/react/features/base/icons/svg/lead-record.svg +5 -0
- package/react/features/base/icons/svg/message.svg +6 -0
- package/react/features/base/icons/svg/meter.svg +10 -0
- package/react/features/base/icons/svg/mic-slash.svg +5 -0
- package/react/features/base/icons/svg/mic.svg +4 -0
- package/react/features/base/icons/svg/moderator.svg +3 -0
- package/react/features/base/icons/svg/ninja.svg +5 -0
- package/react/features/base/icons/svg/noise-suppression-off.svg +4 -0
- package/react/features/base/icons/svg/noise-suppression-on.svg +3 -0
- package/react/features/base/icons/svg/office365.svg +3 -0
- package/react/features/base/icons/svg/opportunity-record.svg +5 -0
- package/react/features/base/icons/svg/performance.svg +4 -0
- package/react/features/base/icons/svg/phone-ringing.svg +5 -0
- package/react/features/base/icons/svg/pin.svg +3 -0
- package/react/features/base/icons/svg/pinned.svg +3 -0
- package/react/features/base/icons/svg/play.svg +3 -0
- package/react/features/base/icons/svg/plus.svg +3 -0
- package/react/features/base/icons/svg/raise-hand.svg +4 -0
- package/react/features/base/icons/svg/record.svg +3 -0
- package/react/features/base/icons/svg/reply.svg +3 -0
- package/react/features/base/icons/svg/restore.svg +5 -0
- package/react/features/base/icons/svg/screenshare.svg +4 -0
- package/react/features/base/icons/svg/search.svg +3 -0
- package/react/features/base/icons/svg/security-off.svg +4 -0
- package/react/features/base/icons/svg/security-on.svg +4 -0
- package/react/features/base/icons/svg/send.svg +3 -0
- package/react/features/base/icons/svg/share-doc.svg +5 -0
- package/react/features/base/icons/svg/share.svg +3 -0
- package/react/features/base/icons/svg/shortcuts.svg +6 -0
- package/react/features/base/icons/svg/sip.svg +3 -0
- package/react/features/base/icons/svg/sites.svg +3 -0
- package/react/features/base/icons/svg/start-remote-control.svg +5 -0
- package/react/features/base/icons/svg/stop-remote-control.svg +5 -0
- package/react/features/base/icons/svg/stop.svg +4 -0
- package/react/features/base/icons/svg/subtitles.svg +5 -0
- package/react/features/base/icons/svg/tile-view.svg +6 -0
- package/react/features/base/icons/svg/trash.svg +1 -0
- package/react/features/base/icons/svg/user-deleted.svg +3 -0
- package/react/features/base/icons/svg/user.svg +4 -0
- package/react/features/base/icons/svg/users.svg +6 -0
- package/react/features/base/icons/svg/video-off.svg +4 -0
- package/react/features/base/icons/svg/video.svg +3 -0
- package/react/features/base/icons/svg/visibility-off.svg +5 -0
- package/react/features/base/icons/svg/visibility.svg +5 -0
- package/react/features/base/icons/svg/volume-off.svg +4 -0
- package/react/features/base/icons/svg/volume-up.svg +5 -0
- package/react/features/base/icons/svg/warning-circle.svg +3 -0
- package/react/features/base/icons/svg/warning.svg +1 -0
- package/react/features/base/icons/svg/whiteboard-hide.svg +4 -0
- package/react/features/base/icons/svg/whiteboard.svg +5 -0
- package/react/features/base/icons/svg/wifi-1.svg +5 -0
- package/react/features/base/icons/svg/wifi-2.svg +5 -0
- package/react/features/base/icons/svg/wifi-3.svg +5 -0
- package/react/features/base/icons/svg/yahoo.svg +3 -0
- package/react/features/base/jitsi-local-storage/logger.ts +3 -0
- package/react/features/base/jitsi-local-storage/setup.web.ts +86 -0
- package/react/features/base/jwt/actionTypes.ts +30 -0
- package/react/features/base/jwt/actions.ts +49 -0
- package/react/features/base/jwt/constants.ts +45 -0
- package/react/features/base/jwt/functions.ts +241 -0
- package/react/features/base/jwt/logger.ts +3 -0
- package/react/features/base/jwt/middleware.ts +323 -0
- package/react/features/base/jwt/reducer.ts +73 -0
- package/react/features/base/known-domains/actionTypes.ts +10 -0
- package/react/features/base/known-domains/actions.ts +20 -0
- package/react/features/base/known-domains/middleware.ts +55 -0
- package/react/features/base/known-domains/reducer.ts +62 -0
- package/react/features/base/label/components/native/ExpandedLabel.tsx +102 -0
- package/react/features/base/label/components/native/Label.tsx +179 -0
- package/react/features/base/label/components/native/styles.ts +68 -0
- package/react/features/base/label/components/web/ExpandedLabel.ts +0 -0
- package/react/features/base/label/components/web/Label.tsx +134 -0
- package/react/features/base/label/constants.ts +5 -0
- package/react/features/base/lastn/actionTypes.ts +9 -0
- package/react/features/base/lastn/actions.ts +17 -0
- package/react/features/base/lastn/functions.ts +24 -0
- package/react/features/base/lastn/logger.ts +3 -0
- package/react/features/base/lastn/middleware.ts +92 -0
- package/react/features/base/lastn/reducer.ts +22 -0
- package/react/features/base/lib-jitsi-meet/_.native.ts +7 -0
- package/react/features/base/lib-jitsi-meet/_.web.ts +3 -0
- package/react/features/base/lib-jitsi-meet/actionTypes.ts +48 -0
- package/react/features/base/lib-jitsi-meet/actions.ts +84 -0
- package/react/features/base/lib-jitsi-meet/functions.any.ts +99 -0
- package/react/features/base/lib-jitsi-meet/functions.native.ts +75 -0
- package/react/features/base/lib-jitsi-meet/functions.web.ts +14 -0
- package/react/features/base/lib-jitsi-meet/index.ts +24 -0
- package/react/features/base/lib-jitsi-meet/logger.ts +3 -0
- package/react/features/base/lib-jitsi-meet/middleware.ts +74 -0
- package/react/features/base/lib-jitsi-meet/reducer.ts +45 -0
- package/react/features/base/logging/ExternalApiLogTransport.ts +18 -0
- package/react/features/base/logging/JitsiMeetInMemoryLogStorage.ts +59 -0
- package/react/features/base/logging/JitsiMeetLogStorage.ts +69 -0
- package/react/features/base/logging/LogTransport.native.ts +68 -0
- package/react/features/base/logging/LogTransport.web.ts +1 -0
- package/react/features/base/logging/actionTypes.ts +21 -0
- package/react/features/base/logging/actions.ts +35 -0
- package/react/features/base/logging/functions.ts +44 -0
- package/react/features/base/logging/middleware.ts +302 -0
- package/react/features/base/logging/reducer.ts +115 -0
- package/react/features/base/logging/types.ts +9 -0
- package/react/features/base/media/actionTypes.ts +126 -0
- package/react/features/base/media/actions.ts +291 -0
- package/react/features/base/media/components/AbstractAudio.ts +126 -0
- package/react/features/base/media/components/AbstractVideoTrack.tsx +150 -0
- package/react/features/base/media/components/index.native.ts +2 -0
- package/react/features/base/media/components/index.web.ts +2 -0
- package/react/features/base/media/components/native/Audio.ts +114 -0
- package/react/features/base/media/components/native/Video.tsx +134 -0
- package/react/features/base/media/components/native/VideoTrack.tsx +30 -0
- package/react/features/base/media/components/native/VideoTransform.tsx +730 -0
- package/react/features/base/media/components/native/styles.ts +35 -0
- package/react/features/base/media/components/web/Audio.tsx +111 -0
- package/react/features/base/media/components/web/AudioTrack.tsx +314 -0
- package/react/features/base/media/components/web/Video.tsx +391 -0
- package/react/features/base/media/components/web/VideoTrack.tsx +197 -0
- package/react/features/base/media/constants.ts +74 -0
- package/react/features/base/media/functions.ts +156 -0
- package/react/features/base/media/logger.ts +3 -0
- package/react/features/base/media/middleware.any.ts +339 -0
- package/react/features/base/media/middleware.native.ts +1 -0
- package/react/features/base/media/middleware.web.ts +44 -0
- package/react/features/base/media/reducer.ts +379 -0
- package/react/features/base/media/subscriber.ts +18 -0
- package/react/features/base/media/types.ts +4 -0
- package/react/features/base/modal/components/JitsiKeyboardAvoidingView.tsx +106 -0
- package/react/features/base/modal/components/JitsiScreen.tsx +94 -0
- package/react/features/base/modal/components/functions.native.ts +32 -0
- package/react/features/base/modal/components/styles.ts +11 -0
- package/react/features/base/net-info/NetworkInfoService.native.ts +70 -0
- package/react/features/base/net-info/NetworkInfoService.web.ts +60 -0
- package/react/features/base/net-info/actionTypes.ts +13 -0
- package/react/features/base/net-info/actions.ts +39 -0
- package/react/features/base/net-info/constants.ts +6 -0
- package/react/features/base/net-info/events.ts +1 -0
- package/react/features/base/net-info/logger.ts +3 -0
- package/react/features/base/net-info/middleware.ts +64 -0
- package/react/features/base/net-info/reducer.ts +40 -0
- package/react/features/base/net-info/selectors.ts +13 -0
- package/react/features/base/net-info/types.ts +37 -0
- package/react/features/base/participants/actionTypes.ts +248 -0
- package/react/features/base/participants/actions.ts +689 -0
- package/react/features/base/participants/components/ParticipantView.native.tsx +300 -0
- package/react/features/base/participants/components/styles.ts +46 -0
- package/react/features/base/participants/constants.ts +82 -0
- package/react/features/base/participants/functions.ts +859 -0
- package/react/features/base/participants/logger.ts +3 -0
- package/react/features/base/participants/middleware.ts +986 -0
- package/react/features/base/participants/preloadImage.native.ts +26 -0
- package/react/features/base/participants/preloadImage.web.ts +46 -0
- package/react/features/base/participants/reducer.ts +694 -0
- package/react/features/base/participants/sounds.ts +11 -0
- package/react/features/base/participants/subscriber.ts +168 -0
- package/react/features/base/participants/types.ts +92 -0
- package/react/features/base/popover/components/Popover.native.ts +0 -0
- package/react/features/base/popover/components/Popover.web.tsx +554 -0
- package/react/features/base/popover/functions.web.ts +153 -0
- package/react/features/base/premeeting/actionTypes.ts +15 -0
- package/react/features/base/premeeting/actions.web.ts +67 -0
- package/react/features/base/premeeting/components/web/ActionButton.tsx +242 -0
- package/react/features/base/premeeting/components/web/ConnectionStatus.tsx +236 -0
- package/react/features/base/premeeting/components/web/PreMeetingScreen.tsx +315 -0
- package/react/features/base/premeeting/components/web/Preview.tsx +99 -0
- package/react/features/base/premeeting/components/web/RecordingWarning.tsx +38 -0
- package/react/features/base/premeeting/components/web/UnsafeRoomWarning.tsx +53 -0
- package/react/features/base/premeeting/constants.ts +8 -0
- package/react/features/base/premeeting/functions.ts +271 -0
- package/react/features/base/premeeting/logger.ts +3 -0
- package/react/features/base/premeeting/reducer.web.ts +42 -0
- package/react/features/base/premeeting/types.ts +25 -0
- package/react/features/base/react/Platform.native.ts +4 -0
- package/react/features/base/react/Platform.web.ts +48 -0
- package/react/features/base/react/components/AbstractContainer.ts +120 -0
- package/react/features/base/react/components/AbstractPage.ts +22 -0
- package/react/features/base/react/components/index.native.ts +2 -0
- package/react/features/base/react/components/index.web.ts +2 -0
- package/react/features/base/react/components/native/AvatarListItem.tsx +164 -0
- package/react/features/base/react/components/native/BaseIndicator.tsx +58 -0
- package/react/features/base/react/components/native/Container.tsx +86 -0
- package/react/features/base/react/components/native/Image.tsx +39 -0
- package/react/features/base/react/components/native/Link.tsx +88 -0
- package/react/features/base/react/components/native/Linkify.tsx +79 -0
- package/react/features/base/react/components/native/LoadingIndicator.tsx +55 -0
- package/react/features/base/react/components/native/Modal.tsx +32 -0
- package/react/features/base/react/components/native/NavigateSectionList.tsx +260 -0
- package/react/features/base/react/components/native/NavigateSectionListEmptyComponent.tsx +40 -0
- package/react/features/base/react/components/native/NavigateSectionListItem.tsx +123 -0
- package/react/features/base/react/components/native/NavigateSectionListSectionHeader.tsx +41 -0
- package/react/features/base/react/components/native/Pressable.tsx +44 -0
- package/react/features/base/react/components/native/SectionList.tsx +92 -0
- package/react/features/base/react/components/native/SlidingView.tsx +293 -0
- package/react/features/base/react/components/native/Text.ts +1 -0
- package/react/features/base/react/components/native/TintedView.tsx +65 -0
- package/react/features/base/react/components/native/headerstyles.ts +86 -0
- package/react/features/base/react/components/native/indicatorStyles.ts +19 -0
- package/react/features/base/react/components/native/slidingviewstyles.ts +29 -0
- package/react/features/base/react/components/native/styles.ts +154 -0
- package/react/features/base/react/components/web/BaseIndicator.tsx +119 -0
- package/react/features/base/react/components/web/Container.ts +20 -0
- package/react/features/base/react/components/web/Image.ts +19 -0
- package/react/features/base/react/components/web/InlineDialogFailure.tsx +88 -0
- package/react/features/base/react/components/web/Linkify.tsx +51 -0
- package/react/features/base/react/components/web/LoadingIndicator.ts +1 -0
- package/react/features/base/react/components/web/MeetingsList.tsx +278 -0
- package/react/features/base/react/components/web/Message.tsx +131 -0
- package/react/features/base/react/components/web/MultiSelectAutocomplete.tsx +321 -0
- package/react/features/base/react/components/web/NavigateSectionListEmptyComponent.ts +0 -0
- package/react/features/base/react/components/web/NavigateSectionListItem.tsx +88 -0
- package/react/features/base/react/components/web/NavigateSectionListSectionHeader.tsx +34 -0
- package/react/features/base/react/components/web/SectionList.tsx +97 -0
- package/react/features/base/react/components/web/Text.ts +27 -0
- package/react/features/base/react/components/web/Watermarks.tsx +265 -0
- package/react/features/base/react/constants.ts +5 -0
- package/react/features/base/react/functions.ts +65 -0
- package/react/features/base/react/logger.ts +3 -0
- package/react/features/base/react/types.ts +106 -0
- package/react/features/base/redux/MiddlewareRegistry.ts +53 -0
- package/react/features/base/redux/PersistenceRegistry.ts +244 -0
- package/react/features/base/redux/README.md +44 -0
- package/react/features/base/redux/ReducerRegistry.ts +62 -0
- package/react/features/base/redux/StateListenerRegistry.ts +186 -0
- package/react/features/base/redux/functions.ts +145 -0
- package/react/features/base/redux/logger.ts +3 -0
- package/react/features/base/redux/middleware.ts +43 -0
- package/react/features/base/responsive-ui/actionTypes.ts +66 -0
- package/react/features/base/responsive-ui/actions.ts +163 -0
- package/react/features/base/responsive-ui/components/DimensionsDetector.native.tsx +64 -0
- package/react/features/base/responsive-ui/components/DimensionsDetector.web.ts +0 -0
- package/react/features/base/responsive-ui/constants.ts +28 -0
- package/react/features/base/responsive-ui/functions.ts +21 -0
- package/react/features/base/responsive-ui/middleware.native.ts +29 -0
- package/react/features/base/responsive-ui/middleware.web.ts +82 -0
- package/react/features/base/responsive-ui/reducer.ts +80 -0
- package/react/features/base/settings/actionTypes.ts +23 -0
- package/react/features/base/settings/actions.ts +32 -0
- package/react/features/base/settings/components/native/SettingsButton.tsx +47 -0
- package/react/features/base/settings/constants.ts +4 -0
- package/react/features/base/settings/functions.any.ts +126 -0
- package/react/features/base/settings/functions.native.ts +34 -0
- package/react/features/base/settings/functions.web.ts +216 -0
- package/react/features/base/settings/logger.ts +3 -0
- package/react/features/base/settings/middleware.any.ts +117 -0
- package/react/features/base/settings/middleware.native.ts +96 -0
- package/react/features/base/settings/middleware.web.ts +85 -0
- package/react/features/base/settings/reducer.ts +174 -0
- package/react/features/base/sounds/actionTypes.ts +64 -0
- package/react/features/base/sounds/actions.ts +155 -0
- package/react/features/base/sounds/components/SoundCollection.ts +154 -0
- package/react/features/base/sounds/functions.android.ts +9 -0
- package/react/features/base/sounds/functions.any.ts +11 -0
- package/react/features/base/sounds/functions.ios.ts +12 -0
- package/react/features/base/sounds/functions.web.ts +27 -0
- package/react/features/base/sounds/logger.ts +3 -0
- package/react/features/base/sounds/middleware.any.ts +129 -0
- package/react/features/base/sounds/middleware.native.ts +1 -0
- package/react/features/base/sounds/middleware.web.ts +23 -0
- package/react/features/base/sounds/reducer.ts +144 -0
- package/react/features/base/styles/components/styles/BoxModel.ts +15 -0
- package/react/features/base/styles/components/styles/ColorPalette.ts +34 -0
- package/react/features/base/styles/functions.any.ts +273 -0
- package/react/features/base/styles/functions.native.ts +16 -0
- package/react/features/base/styles/functions.web.ts +24 -0
- package/react/features/base/testing/actionTypes.ts +9 -0
- package/react/features/base/testing/actions.ts +28 -0
- package/react/features/base/testing/components/AbstractTestHint.ts +62 -0
- package/react/features/base/testing/components/TestConnectionInfo.tsx +222 -0
- package/react/features/base/testing/components/TestHint.android.tsx +46 -0
- package/react/features/base/testing/components/TestHint.ios.tsx +34 -0
- package/react/features/base/testing/components/TestHint.web.ts +3 -0
- package/react/features/base/testing/functions.ts +144 -0
- package/react/features/base/testing/logger.ts +3 -0
- package/react/features/base/testing/middleware.ts +123 -0
- package/react/features/base/testing/reducer.ts +47 -0
- package/react/features/base/toolbox/components/AbstractButton.tsx +408 -0
- package/react/features/base/toolbox/components/AbstractHangupButton.ts +32 -0
- package/react/features/base/toolbox/components/AbstractToolboxItem.tsx +229 -0
- package/react/features/base/toolbox/components/BaseAudioMuteButton.ts +60 -0
- package/react/features/base/toolbox/components/BaseVideoMuteButton.ts +59 -0
- package/react/features/base/toolbox/components/ToolboxItem.native.tsx +83 -0
- package/react/features/base/toolbox/components/ToolboxItem.web.tsx +161 -0
- package/react/features/base/toolbox/components/web/ToolboxButtonWithIcon.tsx +162 -0
- package/react/features/base/toolbox/components/web/ToolboxButtonWithPopup.tsx +122 -0
- package/react/features/base/tooltip/actionTypes.ts +19 -0
- package/react/features/base/tooltip/actions.tsx +31 -0
- package/react/features/base/tooltip/components/Tooltip.tsx +157 -0
- package/react/features/base/tooltip/reducer.ts +50 -0
- package/react/features/base/tracks/actionTypes.ts +118 -0
- package/react/features/base/tracks/actions.any.ts +828 -0
- package/react/features/base/tracks/actions.native.ts +68 -0
- package/react/features/base/tracks/actions.web.ts +563 -0
- package/react/features/base/tracks/components/web/AllowToggleCameraDialog.tsx +44 -0
- package/react/features/base/tracks/constants.ts +5 -0
- package/react/features/base/tracks/functions.any.ts +523 -0
- package/react/features/base/tracks/functions.native.ts +44 -0
- package/react/features/base/tracks/functions.web.ts +253 -0
- package/react/features/base/tracks/loadEffects.native.ts +9 -0
- package/react/features/base/tracks/loadEffects.web.ts +41 -0
- package/react/features/base/tracks/logger.ts +3 -0
- package/react/features/base/tracks/middleware.any.ts +200 -0
- package/react/features/base/tracks/middleware.native.ts +76 -0
- package/react/features/base/tracks/middleware.web.ts +269 -0
- package/react/features/base/tracks/reducer.ts +140 -0
- package/react/features/base/tracks/subscriber.ts +40 -0
- package/react/features/base/tracks/types.ts +90 -0
- package/react/features/base/ui/Tokens.ts +241 -0
- package/react/features/base/ui/components/BaseTheme.native.ts +12 -0
- package/react/features/base/ui/components/BaseTheme.web.ts +11 -0
- package/react/features/base/ui/components/GlobalStyles.web.tsx +23 -0
- package/react/features/base/ui/components/JitsiThemeProvider.native.tsx +22 -0
- package/react/features/base/ui/components/JitsiThemeProvider.web.tsx +50 -0
- package/react/features/base/ui/components/native/Button.tsx +120 -0
- package/react/features/base/ui/components/native/IconButton.tsx +71 -0
- package/react/features/base/ui/components/native/Input.tsx +197 -0
- package/react/features/base/ui/components/native/Switch.tsx +60 -0
- package/react/features/base/ui/components/native/buttonStyles.ts +76 -0
- package/react/features/base/ui/components/native/inputStyles.ts +87 -0
- package/react/features/base/ui/components/native/switchStyles.ts +5 -0
- package/react/features/base/ui/components/types.ts +113 -0
- package/react/features/base/ui/components/updateTheme.native.ts +9 -0
- package/react/features/base/ui/components/variables.ts +6 -0
- package/react/features/base/ui/components/web/BaseDialog.tsx +217 -0
- package/react/features/base/ui/components/web/Button.tsx +223 -0
- package/react/features/base/ui/components/web/Checkbox.tsx +185 -0
- package/react/features/base/ui/components/web/ClickableIcon.tsx +61 -0
- package/react/features/base/ui/components/web/ContextMenu.tsx +412 -0
- package/react/features/base/ui/components/web/ContextMenuItem.tsx +272 -0
- package/react/features/base/ui/components/web/ContextMenuItemGroup.tsx +68 -0
- package/react/features/base/ui/components/web/Dialog.tsx +177 -0
- package/react/features/base/ui/components/web/DialogContainer.tsx +96 -0
- package/react/features/base/ui/components/web/DialogTransition.tsx +39 -0
- package/react/features/base/ui/components/web/DialogWithTabs.tsx +418 -0
- package/react/features/base/ui/components/web/HiddenDescription.tsx +29 -0
- package/react/features/base/ui/components/web/Input.tsx +290 -0
- package/react/features/base/ui/components/web/ListItem.tsx +294 -0
- package/react/features/base/ui/components/web/MultiSelect.tsx +179 -0
- package/react/features/base/ui/components/web/Select.tsx +198 -0
- package/react/features/base/ui/components/web/Spinner.tsx +79 -0
- package/react/features/base/ui/components/web/Switch.tsx +138 -0
- package/react/features/base/ui/components/web/Tabs.tsx +167 -0
- package/react/features/base/ui/components/web/TextWithOverflow.tsx +74 -0
- package/react/features/base/ui/constants.any.ts +31 -0
- package/react/features/base/ui/constants.native.ts +1 -0
- package/react/features/base/ui/constants.web.ts +275 -0
- package/react/features/base/ui/functions.any.ts +25 -0
- package/react/features/base/ui/functions.native.ts +51 -0
- package/react/features/base/ui/functions.web.ts +121 -0
- package/react/features/base/ui/hooks/useContextMenu.web.ts +77 -0
- package/react/features/base/ui/jitsiTokens.json +14 -0
- package/react/features/base/ui/tokens.json +211 -0
- package/react/features/base/ui/types.ts +81 -0
- package/react/features/base/ui/utils.ts +42 -0
- package/react/features/base/user-interaction/actionTypes.ts +9 -0
- package/react/features/base/user-interaction/middleware.ts +86 -0
- package/react/features/base/user-interaction/reducer.ts +29 -0
- package/react/features/base/util/contants.ts +1 -0
- package/react/features/base/util/copyText.native.ts +18 -0
- package/react/features/base/util/copyText.web.ts +18 -0
- package/react/features/base/util/downloadJSON.web.ts +35 -0
- package/react/features/base/util/embedUtils.native.ts +26 -0
- package/react/features/base/util/embedUtils.web.ts +12 -0
- package/react/features/base/util/getUnsafeRoomText.native.ts +32 -0
- package/react/features/base/util/getUnsafeRoomText.web.ts +20 -0
- package/react/features/base/util/helpers.ts +182 -0
- package/react/features/base/util/hooks.ts +12 -0
- package/react/features/base/util/httpUtils.ts +81 -0
- package/react/features/base/util/isInsecureRoomName.ts +56 -0
- package/react/features/base/util/loadScript.native.ts +62 -0
- package/react/features/base/util/loadScript.web.ts +18 -0
- package/react/features/base/util/logger.ts +3 -0
- package/react/features/base/util/math.ts +37 -0
- package/react/features/base/util/messageGrouping.ts +79 -0
- package/react/features/base/util/openURLInBrowser.native.ts +16 -0
- package/react/features/base/util/openURLInBrowser.web.ts +12 -0
- package/react/features/base/util/parseURLParams.ts +80 -0
- package/react/features/base/util/spot.ts +16 -0
- package/react/features/base/util/strings.native.ts +23 -0
- package/react/features/base/util/strings.web.ts +20 -0
- package/react/features/base/util/timeoutPromise.ts +34 -0
- package/react/features/base/util/uri.ts +724 -0
- package/react/features/breakout-rooms/actionTypes.ts +15 -0
- package/react/features/breakout-rooms/actions.ts +322 -0
- package/react/features/breakout-rooms/components/native/AddBreakoutRoomButton.tsx +33 -0
- package/react/features/breakout-rooms/components/native/AutoAssignButton.tsx +33 -0
- package/react/features/breakout-rooms/components/native/BreakoutRoomContextMenu.tsx +125 -0
- package/react/features/breakout-rooms/components/native/BreakoutRoomNamePrompt.tsx +35 -0
- package/react/features/breakout-rooms/components/native/BreakoutRoomParticipantItem.tsx +43 -0
- package/react/features/breakout-rooms/components/native/BreakoutRooms.tsx +67 -0
- package/react/features/breakout-rooms/components/native/BreakoutRoomsButton.tsx +53 -0
- package/react/features/breakout-rooms/components/native/CollapsibleRoom.tsx +66 -0
- package/react/features/breakout-rooms/components/native/LeaveBreakoutRoomButton.tsx +36 -0
- package/react/features/breakout-rooms/components/native/styles.ts +76 -0
- package/react/features/breakout-rooms/constants.ts +9 -0
- package/react/features/breakout-rooms/functions.ts +216 -0
- package/react/features/breakout-rooms/logger.ts +3 -0
- package/react/features/breakout-rooms/middleware.ts +107 -0
- package/react/features/breakout-rooms/reducer.ts +46 -0
- package/react/features/breakout-rooms/types.ts +36 -0
- package/react/features/calendar-sync/actionTypes.ts +98 -0
- package/react/features/calendar-sync/actions.any.ts +60 -0
- package/react/features/calendar-sync/actions.native.ts +45 -0
- package/react/features/calendar-sync/actions.web.ts +292 -0
- package/react/features/calendar-sync/components/AddMeetingUrlButton.native.ts +21 -0
- package/react/features/calendar-sync/components/AddMeetingUrlButton.web.tsx +101 -0
- package/react/features/calendar-sync/components/CalendarList.native.tsx +143 -0
- package/react/features/calendar-sync/components/CalendarList.web.tsx +269 -0
- package/react/features/calendar-sync/components/CalendarListContent.native.tsx +249 -0
- package/react/features/calendar-sync/components/CalendarListContent.web.tsx +163 -0
- package/react/features/calendar-sync/components/JoinButton.native.ts +21 -0
- package/react/features/calendar-sync/components/JoinButton.web.tsx +96 -0
- package/react/features/calendar-sync/components/MicrosoftSignInButton.native.ts +0 -0
- package/react/features/calendar-sync/components/MicrosoftSignInButton.web.tsx +52 -0
- package/react/features/calendar-sync/components/UpdateCalendarEventDialog.native.tsx +65 -0
- package/react/features/calendar-sync/components/UpdateCalendarEventDialog.web.ts +0 -0
- package/react/features/calendar-sync/components/styles.ts +182 -0
- package/react/features/calendar-sync/constants.ts +35 -0
- package/react/features/calendar-sync/functions.any.ts +205 -0
- package/react/features/calendar-sync/functions.native.ts +151 -0
- package/react/features/calendar-sync/functions.web.ts +114 -0
- package/react/features/calendar-sync/logger.ts +3 -0
- package/react/features/calendar-sync/middleware.ts +75 -0
- package/react/features/calendar-sync/reducer.tsx +108 -0
- package/react/features/calendar-sync/web/googleCalendar.ts +72 -0
- package/react/features/calendar-sync/web/microsoftCalendar.ts +606 -0
- package/react/features/chat/actionTypes.ts +174 -0
- package/react/features/chat/actions.any.ts +359 -0
- package/react/features/chat/actions.native.ts +30 -0
- package/react/features/chat/actions.web.ts +97 -0
- package/react/features/chat/components/AbstractChatPrivacyDialog.tsx +131 -0
- package/react/features/chat/components/AbstractMessageContainer.ts +65 -0
- package/react/features/chat/components/AbstractMessageRecipient.ts +99 -0
- package/react/features/chat/components/index.native.ts +2 -0
- package/react/features/chat/components/index.web.ts +1 -0
- package/react/features/chat/components/native/Chat.tsx +158 -0
- package/react/features/chat/components/native/ChatButton.ts +78 -0
- package/react/features/chat/components/native/ChatInputBar.tsx +209 -0
- package/react/features/chat/components/native/ChatMessage.tsx +245 -0
- package/react/features/chat/components/native/ChatMessageGroup.tsx +81 -0
- package/react/features/chat/components/native/ChatPrivacyDialog.tsx +30 -0
- package/react/features/chat/components/native/GifMessage.tsx +28 -0
- package/react/features/chat/components/native/MessageContainer.tsx +117 -0
- package/react/features/chat/components/native/MessageRecipient.tsx +163 -0
- package/react/features/chat/components/native/PrivateMessageButton.tsx +110 -0
- package/react/features/chat/components/native/styles.ts +272 -0
- package/react/features/chat/components/web/Chat.tsx +623 -0
- package/react/features/chat/components/web/ChatButton.tsx +98 -0
- package/react/features/chat/components/web/ChatCounter.tsx +74 -0
- package/react/features/chat/components/web/ChatHeader.tsx +88 -0
- package/react/features/chat/components/web/ChatInput.tsx +356 -0
- package/react/features/chat/components/web/ChatMessage.tsx +448 -0
- package/react/features/chat/components/web/ChatMessageGroup.tsx +85 -0
- package/react/features/chat/components/web/ChatPrivacyDialog.tsx +34 -0
- package/react/features/chat/components/web/ClosedCaptionsTab.tsx +182 -0
- package/react/features/chat/components/web/DisplayNameForm.tsx +157 -0
- package/react/features/chat/components/web/EmojiSelector.tsx +60 -0
- package/react/features/chat/components/web/GifMessage.tsx +40 -0
- package/react/features/chat/components/web/KeyboardAvoider.tsx +54 -0
- package/react/features/chat/components/web/MessageContainer.tsx +337 -0
- package/react/features/chat/components/web/MessageMenu.tsx +179 -0
- package/react/features/chat/components/web/MessageRecipient.tsx +99 -0
- package/react/features/chat/components/web/NewMessagesButton.tsx +89 -0
- package/react/features/chat/components/web/PrivateMessageButton.tsx +74 -0
- package/react/features/chat/components/web/ReactButton.tsx +87 -0
- package/react/features/chat/components/web/SmileysPanel.tsx +120 -0
- package/react/features/chat/components/web/SubtitleMessage.tsx +96 -0
- package/react/features/chat/components/web/SubtitlesGroup.tsx +76 -0
- package/react/features/chat/components/web/SubtitlesMessagesContainer.tsx +154 -0
- package/react/features/chat/constants.ts +59 -0
- package/react/features/chat/functions.ts +295 -0
- package/react/features/chat/middleware.ts +780 -0
- package/react/features/chat/reducer.ts +298 -0
- package/react/features/chat/smileys.ts +22 -0
- package/react/features/chat/sounds.ts +7 -0
- package/react/features/chat/subscriber.native.ts +0 -0
- package/react/features/chat/subscriber.web.ts +73 -0
- package/react/features/chat/types.ts +83 -0
- package/react/features/chrome-extension-banner/components/ChromeExtensionBanner.native.ts +0 -0
- package/react/features/chrome-extension-banner/components/ChromeExtensionBanner.web.tsx +352 -0
- package/react/features/chrome-extension-banner/logger.ts +3 -0
- package/react/features/conference/actionTypes.ts +8 -0
- package/react/features/conference/actions.native.ts +78 -0
- package/react/features/conference/actions.web.ts +91 -0
- package/react/features/conference/components/AbstractConference.ts +80 -0
- package/react/features/conference/components/AbstractInsecureRoomNameLabel.tsx +58 -0
- package/react/features/conference/components/ConferenceTimer.tsx +107 -0
- package/react/features/conference/components/constants.ts +15 -0
- package/react/features/conference/components/functions.any.ts +22 -0
- package/react/features/conference/components/functions.native.ts +32 -0
- package/react/features/conference/components/functions.web.ts +12 -0
- package/react/features/conference/components/index.native.ts +1 -0
- package/react/features/conference/components/index.web.ts +1 -0
- package/react/features/conference/components/native/AlwaysOnLabels.tsx +68 -0
- package/react/features/conference/components/native/Conference.tsx +603 -0
- package/react/features/conference/components/native/ConferenceTimerDisplay.tsx +21 -0
- package/react/features/conference/components/native/ExpandedLabelPopup.tsx +36 -0
- package/react/features/conference/components/native/InsecureRoomNameExpandedLabel.tsx +51 -0
- package/react/features/conference/components/native/InsecureRoomNameLabel.tsx +29 -0
- package/react/features/conference/components/native/Labels.tsx +54 -0
- package/react/features/conference/components/native/LonelyMeetingExperience.tsx +159 -0
- package/react/features/conference/components/native/RaisedHandsCountExpandedLabel.ts +24 -0
- package/react/features/conference/components/native/RaisedHandsCountLabel.tsx +25 -0
- package/react/features/conference/components/native/TitleBar.tsx +157 -0
- package/react/features/conference/components/native/carmode/AudioIcon.tsx +17 -0
- package/react/features/conference/components/native/carmode/CarMode.tsx +76 -0
- package/react/features/conference/components/native/carmode/CarModeFooter.tsx +30 -0
- package/react/features/conference/components/native/carmode/EndMeetingButton.tsx +39 -0
- package/react/features/conference/components/native/carmode/EndMeetingIcon.tsx +17 -0
- package/react/features/conference/components/native/carmode/MicrophoneButton.tsx +91 -0
- package/react/features/conference/components/native/carmode/SoundDeviceButton.tsx +36 -0
- package/react/features/conference/components/native/carmode/TitleBar.tsx +86 -0
- package/react/features/conference/components/native/carmode/styles.ts +173 -0
- package/react/features/conference/components/native/constants.ts +66 -0
- package/react/features/conference/components/native/styles.ts +212 -0
- package/react/features/conference/components/web/Conference.tsx +497 -0
- package/react/features/conference/components/web/ConferenceInfo.tsx +226 -0
- package/react/features/conference/components/web/ConferenceInfoContainer.tsx +31 -0
- package/react/features/conference/components/web/ConferenceTimerDisplay.tsx +36 -0
- package/react/features/conference/components/web/InsecureRoomNameLabel.tsx +34 -0
- package/react/features/conference/components/web/LeaveReasonDialog.web.tsx +62 -0
- package/react/features/conference/components/web/Notice.tsx +43 -0
- package/react/features/conference/components/web/RaisedHandsCountLabel.tsx +45 -0
- package/react/features/conference/components/web/SpeakerStatsLabel.tsx +51 -0
- package/react/features/conference/components/web/SubjectText.tsx +54 -0
- package/react/features/conference/components/web/ToggleTopPanelLabel.tsx +28 -0
- package/react/features/conference/constants.ts +12 -0
- package/react/features/conference/extraConstants.ts +5 -0
- package/react/features/conference/functions.any.ts +38 -0
- package/react/features/conference/functions.native.ts +1 -0
- package/react/features/conference/functions.web.ts +33 -0
- package/react/features/conference/logger.ts +3 -0
- package/react/features/conference/middleware.any.ts +350 -0
- package/react/features/conference/middleware.native.ts +28 -0
- package/react/features/conference/middleware.web.ts +46 -0
- package/react/features/connection-indicator/actions.web.ts +19 -0
- package/react/features/connection-indicator/components/AbstractConnectionIndicator.ts +225 -0
- package/react/features/connection-indicator/components/native/ConnectionIndicator.tsx +206 -0
- package/react/features/connection-indicator/components/native/styles.ts +29 -0
- package/react/features/connection-indicator/components/web/BandwidthSettingsDialog.tsx +142 -0
- package/react/features/connection-indicator/components/web/ConnectionIndicator.tsx +405 -0
- package/react/features/connection-indicator/components/web/ConnectionIndicatorContent.tsx +376 -0
- package/react/features/connection-indicator/components/web/ConnectionIndicatorIcon.tsx +111 -0
- package/react/features/connection-indicator/functions.ts +38 -0
- package/react/features/connection-indicator/middleware.ts +23 -0
- package/react/features/connection-indicator/statsEmitter.ts +201 -0
- package/react/features/connection-stats/components/ConnectionStatsTable.tsx +834 -0
- package/react/features/deep-linking/actionTypes.ts +18 -0
- package/react/features/deep-linking/actions.ts +33 -0
- package/react/features/deep-linking/components/DeepLinkingDesktopPage.native.ts +1 -0
- package/react/features/deep-linking/components/DeepLinkingDesktopPage.web.tsx +177 -0
- package/react/features/deep-linking/components/DeepLinkingMobilePage.native.ts +1 -0
- package/react/features/deep-linking/components/DeepLinkingMobilePage.web.tsx +219 -0
- package/react/features/deep-linking/components/NoMobileApp.native.ts +1 -0
- package/react/features/deep-linking/components/NoMobileApp.web.tsx +77 -0
- package/react/features/deep-linking/constants.ts +6 -0
- package/react/features/deep-linking/functions.web.ts +96 -0
- package/react/features/deep-linking/middleware.web.ts +20 -0
- package/react/features/deep-linking/openDesktopApp.web.ts +29 -0
- package/react/features/deep-linking/reducer.ts +20 -0
- package/react/features/desktop-picker/actions.ts +25 -0
- package/react/features/desktop-picker/components/DesktopPicker.tsx +426 -0
- package/react/features/desktop-picker/components/DesktopPickerPane.tsx +131 -0
- package/react/features/desktop-picker/components/DesktopSourcePreview.tsx +145 -0
- package/react/features/desktop-picker/constants.ts +9 -0
- package/react/features/desktop-picker/functions.ts +52 -0
- package/react/features/desktop-picker/logger.ts +3 -0
- package/react/features/device-selection/actions.web.ts +122 -0
- package/react/features/device-selection/components/AudioDevicesSelection.web.tsx +473 -0
- package/react/features/device-selection/components/AudioInputPreview.web.tsx +102 -0
- package/react/features/device-selection/components/AudioOutputPreview.web.tsx +136 -0
- package/react/features/device-selection/components/DeviceHidContainer.web.tsx +107 -0
- package/react/features/device-selection/components/DeviceSelector.native.ts +0 -0
- package/react/features/device-selection/components/DeviceSelector.web.tsx +154 -0
- package/react/features/device-selection/components/VideoDeviceSelection.web.tsx +384 -0
- package/react/features/device-selection/components/VideoInputPreview.web.tsx +74 -0
- package/react/features/device-selection/functions.web.ts +287 -0
- package/react/features/device-selection/logger.ts +3 -0
- package/react/features/device-selection/middleware.ts +24 -0
- package/react/features/display-name/actions.ts +21 -0
- package/react/features/display-name/components/index.native.ts +1 -0
- package/react/features/display-name/components/index.web.ts +1 -0
- package/react/features/display-name/components/native/DisplayNameLabel.tsx +82 -0
- package/react/features/display-name/components/native/DisplayNamePrompt.tsx +44 -0
- package/react/features/display-name/components/native/styles.ts +20 -0
- package/react/features/display-name/components/web/DisplayName.tsx +158 -0
- package/react/features/display-name/components/web/DisplayNameBadge.tsx +41 -0
- package/react/features/display-name/components/web/DisplayNamePrompt.tsx +125 -0
- package/react/features/display-name/components/web/StageParticipantNameLabel.tsx +118 -0
- package/react/features/display-name/components/web/styles.ts +123 -0
- package/react/features/display-name/functions.ts +78 -0
- package/react/features/display-name/middleware.ts +25 -0
- package/react/features/display-name/types.ts +25 -0
- package/react/features/dropbox/actionTypes.ts +9 -0
- package/react/features/dropbox/actions.ts +56 -0
- package/react/features/dropbox/functions.any.ts +48 -0
- package/react/features/dropbox/functions.native.ts +74 -0
- package/react/features/dropbox/functions.web.ts +152 -0
- package/react/features/dropbox/logger.ts +3 -0
- package/react/features/dropbox/reducer.ts +34 -0
- package/react/features/dynamic-branding/actionTypes.ts +19 -0
- package/react/features/dynamic-branding/actions.any.ts +78 -0
- package/react/features/dynamic-branding/actions.native.ts +56 -0
- package/react/features/dynamic-branding/components/native/BrandingImageBackground.tsx +76 -0
- package/react/features/dynamic-branding/components/native/styles.ts +15 -0
- package/react/features/dynamic-branding/functions.any.ts +96 -0
- package/react/features/dynamic-branding/functions.native.ts +9 -0
- package/react/features/dynamic-branding/functions.web.ts +127 -0
- package/react/features/dynamic-branding/logger.ts +3 -0
- package/react/features/dynamic-branding/middleware.any.ts +103 -0
- package/react/features/dynamic-branding/middleware.native.ts +35 -0
- package/react/features/dynamic-branding/middleware.web.ts +27 -0
- package/react/features/dynamic-branding/reducer.ts +290 -0
- package/react/features/e2ee/actionTypes.ts +30 -0
- package/react/features/e2ee/actions.ts +85 -0
- package/react/features/e2ee/components/E2EELabel.tsx +59 -0
- package/react/features/e2ee/components/E2EESection.tsx +174 -0
- package/react/features/e2ee/components/ParticipantVerificationDialog.tsx +123 -0
- package/react/features/e2ee/constants.ts +53 -0
- package/react/features/e2ee/functions.ts +120 -0
- package/react/features/e2ee/logger.ts +3 -0
- package/react/features/e2ee/middleware.ts +215 -0
- package/react/features/e2ee/reducer.ts +44 -0
- package/react/features/e2ee/sounds.ts +13 -0
- package/react/features/embed-meeting/components/EmbedMeetingButton.ts +50 -0
- package/react/features/embed-meeting/components/EmbedMeetingDialog.tsx +81 -0
- package/react/features/embed-meeting/hooks.ts +25 -0
- package/react/features/etherpad/actionTypes.ts +27 -0
- package/react/features/etherpad/actions.ts +51 -0
- package/react/features/etherpad/components/SharedDocumentButton.native.ts +63 -0
- package/react/features/etherpad/components/SharedDocumentButton.web.ts +81 -0
- package/react/features/etherpad/components/native/SharedDocument.tsx +101 -0
- package/react/features/etherpad/components/native/styles.ts +26 -0
- package/react/features/etherpad/functions.ts +33 -0
- package/react/features/etherpad/hooks.ts +24 -0
- package/react/features/etherpad/middleware.ts +73 -0
- package/react/features/etherpad/reducer.ts +48 -0
- package/react/features/external-api/middleware.ts +278 -0
- package/react/features/external-api/subscriber.ts +73 -0
- package/react/features/face-landmarks/FaceLandmarksDetector.ts +355 -0
- package/react/features/face-landmarks/FaceLandmarksHelper.ts +250 -0
- package/react/features/face-landmarks/actionTypes.ts +40 -0
- package/react/features/face-landmarks/actions.ts +48 -0
- package/react/features/face-landmarks/constants.ts +83 -0
- package/react/features/face-landmarks/faceLandmarksWorker.ts +26 -0
- package/react/features/face-landmarks/functions.ts +163 -0
- package/react/features/face-landmarks/logger.ts +3 -0
- package/react/features/face-landmarks/middleware.ts +130 -0
- package/react/features/face-landmarks/reducer.ts +61 -0
- package/react/features/face-landmarks/types.ts +39 -0
- package/react/features/feedback/actionTypes.ts +29 -0
- package/react/features/feedback/actions.web.ts +197 -0
- package/react/features/feedback/components/FeedbackButton.native.ts +0 -0
- package/react/features/feedback/components/FeedbackButton.web.ts +57 -0
- package/react/features/feedback/components/FeedbackDialog.native.ts +3 -0
- package/react/features/feedback/components/FeedbackDialog.web.tsx +330 -0
- package/react/features/feedback/functions.web.ts +70 -0
- package/react/features/feedback/hooks.web.ts +23 -0
- package/react/features/feedback/logger.ts +3 -0
- package/react/features/feedback/reducer.ts +51 -0
- package/react/features/file-sharing/actionTypes.ts +70 -0
- package/react/features/file-sharing/actions.ts +77 -0
- package/react/features/file-sharing/components/web/FileSharing.tsx +460 -0
- package/react/features/file-sharing/constants.ts +4 -0
- package/react/features/file-sharing/functions.any.ts +157 -0
- package/react/features/file-sharing/logger.ts +3 -0
- package/react/features/file-sharing/middleware.web.ts +295 -0
- package/react/features/file-sharing/reducer.ts +68 -0
- package/react/features/file-sharing/types.ts +12 -0
- package/react/features/file-sharing/utils.ts +27 -0
- package/react/features/filmstrip/actionTypes.ts +231 -0
- package/react/features/filmstrip/actions.any.ts +75 -0
- package/react/features/filmstrip/actions.native.ts +85 -0
- package/react/features/filmstrip/actions.web.ts +591 -0
- package/react/features/filmstrip/components/native/AudioMutedIndicator.tsx +20 -0
- package/react/features/filmstrip/components/native/Filmstrip.tsx +337 -0
- package/react/features/filmstrip/components/native/LocalThumbnail.tsx +19 -0
- package/react/features/filmstrip/components/native/ModeratorIndicator.tsx +13 -0
- package/react/features/filmstrip/components/native/PinnedIndicator.tsx +15 -0
- package/react/features/filmstrip/components/native/RaisedHandIndicator.tsx +78 -0
- package/react/features/filmstrip/components/native/ScreenShareIndicator.tsx +15 -0
- package/react/features/filmstrip/components/native/Thumbnail.tsx +444 -0
- package/react/features/filmstrip/components/native/TileView.tsx +299 -0
- package/react/features/filmstrip/components/native/styles.ts +182 -0
- package/react/features/filmstrip/components/web/AudioMutedIndicator.tsx +33 -0
- package/react/features/filmstrip/components/web/AudioTracksContainer.tsx +69 -0
- package/react/features/filmstrip/components/web/Filmstrip.tsx +1151 -0
- package/react/features/filmstrip/components/web/MainFilmstrip.tsx +209 -0
- package/react/features/filmstrip/components/web/ModeratorIndicator.tsx +31 -0
- package/react/features/filmstrip/components/web/PinnedIndicator.tsx +81 -0
- package/react/features/filmstrip/components/web/RaisedHandIndicator.tsx +78 -0
- package/react/features/filmstrip/components/web/ScreenShareIndicator.tsx +30 -0
- package/react/features/filmstrip/components/web/ScreenshareFilmstrip.tsx +132 -0
- package/react/features/filmstrip/components/web/StageFilmstrip.tsx +160 -0
- package/react/features/filmstrip/components/web/StatusIndicators.tsx +123 -0
- package/react/features/filmstrip/components/web/Thumbnail.tsx +1397 -0
- package/react/features/filmstrip/components/web/ThumbnailAudioIndicator.tsx +46 -0
- package/react/features/filmstrip/components/web/ThumbnailBottomIndicators.tsx +96 -0
- package/react/features/filmstrip/components/web/ThumbnailTopIndicators.tsx +158 -0
- package/react/features/filmstrip/components/web/ThumbnailWrapper.tsx +292 -0
- package/react/features/filmstrip/components/web/VideoMenuTriggerButton.tsx +76 -0
- package/react/features/filmstrip/components/web/VirtualScreenshareParticipant.tsx +183 -0
- package/react/features/filmstrip/constants.ts +300 -0
- package/react/features/filmstrip/functions.any.ts +110 -0
- package/react/features/filmstrip/functions.native.ts +289 -0
- package/react/features/filmstrip/functions.web.ts +832 -0
- package/react/features/filmstrip/logger.ts +3 -0
- package/react/features/filmstrip/middleware.native.ts +37 -0
- package/react/features/filmstrip/middleware.web.ts +346 -0
- package/react/features/filmstrip/reducer.ts +418 -0
- package/react/features/filmstrip/subscriber.any.ts +35 -0
- package/react/features/filmstrip/subscriber.native.ts +42 -0
- package/react/features/filmstrip/subscriber.web.ts +237 -0
- package/react/features/follow-me/actionTypes.ts +43 -0
- package/react/features/follow-me/actions.ts +73 -0
- package/react/features/follow-me/constants.ts +6 -0
- package/react/features/follow-me/functions.ts +28 -0
- package/react/features/follow-me/logger.ts +3 -0
- package/react/features/follow-me/middleware.ts +238 -0
- package/react/features/follow-me/reducer.ts +54 -0
- package/react/features/follow-me/subscriber.ts +141 -0
- package/react/features/gifs/actionTypes.ts +46 -0
- package/react/features/gifs/actions.ts +74 -0
- package/react/features/gifs/components/native/GifsMenu.tsx +63 -0
- package/react/features/gifs/components/native/GifsMenuFooter.tsx +27 -0
- package/react/features/gifs/components/native/styles.ts +36 -0
- package/react/features/gifs/components/web/GifsMenu.tsx +253 -0
- package/react/features/gifs/components/web/GifsMenuButton.tsx +41 -0
- package/react/features/gifs/constants.ts +14 -0
- package/react/features/gifs/function.any.ts +150 -0
- package/react/features/gifs/functions.native.ts +1 -0
- package/react/features/gifs/functions.web.ts +13 -0
- package/react/features/gifs/middleware.any.ts +61 -0
- package/react/features/gifs/middleware.native.ts +3 -0
- package/react/features/gifs/middleware.web.ts +2 -0
- package/react/features/gifs/reducer.ts +75 -0
- package/react/features/gifs/subscriber.native.ts +20 -0
- package/react/features/google-api/actionTypes.ts +19 -0
- package/react/features/google-api/actions.ts +226 -0
- package/react/features/google-api/components/GoogleSignInButton.native.tsx +81 -0
- package/react/features/google-api/components/GoogleSignInButton.web.tsx +61 -0
- package/react/features/google-api/components/styles.ts +39 -0
- package/react/features/google-api/constants.ts +76 -0
- package/react/features/google-api/googleApi.native.js +191 -0
- package/react/features/google-api/googleApi.web.js +461 -0
- package/react/features/google-api/logger.ts +3 -0
- package/react/features/google-api/reducer.ts +45 -0
- package/react/features/invite/_utils.ts +83 -0
- package/react/features/invite/actionTypes.ts +72 -0
- package/react/features/invite/actions.any.ts +297 -0
- package/react/features/invite/actions.native.ts +25 -0
- package/react/features/invite/actions.web.ts +1 -0
- package/react/features/invite/components/add-people-dialog/AbstractAddPeopleDialog.tsx +323 -0
- package/react/features/invite/components/add-people-dialog/native/AddPeopleDialog.tsx +585 -0
- package/react/features/invite/components/add-people-dialog/native/styles.ts +120 -0
- package/react/features/invite/components/add-people-dialog/web/AddPeopleDialog.tsx +238 -0
- package/react/features/invite/components/add-people-dialog/web/CopyMeetingLinkSection.tsx +50 -0
- package/react/features/invite/components/add-people-dialog/web/DialInLimit.tsx +55 -0
- package/react/features/invite/components/add-people-dialog/web/DialInNumber.tsx +138 -0
- package/react/features/invite/components/add-people-dialog/web/DialInSection.tsx +71 -0
- package/react/features/invite/components/add-people-dialog/web/InviteButton.ts +33 -0
- package/react/features/invite/components/add-people-dialog/web/InviteByEmailSection.tsx +204 -0
- package/react/features/invite/components/add-people-dialog/web/InviteContactsForm.tsx +517 -0
- package/react/features/invite/components/add-people-dialog/web/InviteContactsSection.tsx +23 -0
- package/react/features/invite/components/add-people-dialog/web/LiveStreamSection.tsx +110 -0
- package/react/features/invite/components/callee-info/CalleeInfo.tsx +167 -0
- package/react/features/invite/components/callee-info/CalleeInfoContainer.tsx +64 -0
- package/react/features/invite/components/callee-info/styles.native.ts +50 -0
- package/react/features/invite/components/callee-info/styles.web.ts +1 -0
- package/react/features/invite/components/dial-in-info-page/DialInInfoApp.native.ts +0 -0
- package/react/features/invite/components/dial-in-info-page/DialInInfoApp.web.tsx +41 -0
- package/react/features/invite/components/dial-in-info-page/NoRoomError.native.ts +0 -0
- package/react/features/invite/components/dial-in-info-page/NoRoomError.web.tsx +26 -0
- package/react/features/invite/components/dial-in-summary/native/DialInSummary.tsx +137 -0
- package/react/features/invite/components/dial-in-summary/native/DialInSummaryErrorDialog.tsx +26 -0
- package/react/features/invite/components/dial-in-summary/native/styles.ts +25 -0
- package/react/features/invite/components/dial-in-summary/web/ConferenceID.tsx +78 -0
- package/react/features/invite/components/dial-in-summary/web/DialInSummary.tsx +312 -0
- package/react/features/invite/components/dial-in-summary/web/DialInSummaryApp.tsx +71 -0
- package/react/features/invite/components/dial-in-summary/web/NumbersList.tsx +210 -0
- package/react/features/invite/constants.ts +60 -0
- package/react/features/invite/functions.ts +985 -0
- package/react/features/invite/logger.ts +3 -0
- package/react/features/invite/middleware.any.ts +206 -0
- package/react/features/invite/middleware.native.ts +0 -0
- package/react/features/invite/middleware.web.ts +66 -0
- package/react/features/invite/reducer.ts +107 -0
- package/react/features/invite/sounds.ts +44 -0
- package/react/features/invite/types.ts +20 -0
- package/react/features/jaas/actionTypes.ts +4 -0
- package/react/features/jaas/actions.any.ts +46 -0
- package/react/features/jaas/actions.native.ts +11 -0
- package/react/features/jaas/actions.web.ts +25 -0
- package/react/features/jaas/components/web/PremiumFeatureDialog.tsx +56 -0
- package/react/features/jaas/constants.ts +17 -0
- package/react/features/jaas/functions.ts +170 -0
- package/react/features/jaas/logger.ts +3 -0
- package/react/features/jaas/middleware.any.ts +39 -0
- package/react/features/jaas/middleware.native.ts +0 -0
- package/react/features/jaas/middleware.web.ts +47 -0
- package/react/features/jaas/reducer.ts +32 -0
- package/react/features/keyboard-shortcuts/actionTypes.ts +24 -0
- package/react/features/keyboard-shortcuts/actions.ts +240 -0
- package/react/features/keyboard-shortcuts/components/KeyboardShortcutsButton.ts +49 -0
- package/react/features/keyboard-shortcuts/functions.ts +31 -0
- package/react/features/keyboard-shortcuts/hooks.ts +25 -0
- package/react/features/keyboard-shortcuts/logger.ts +3 -0
- package/react/features/keyboard-shortcuts/middleware.ts +52 -0
- package/react/features/keyboard-shortcuts/reducer.ts +72 -0
- package/react/features/keyboard-shortcuts/types.ts +23 -0
- package/react/features/keyboard-shortcuts/utils.ts +79 -0
- package/react/features/large-video/actionTypes.ts +43 -0
- package/react/features/large-video/actions.any.ts +197 -0
- package/react/features/large-video/actions.native.ts +1 -0
- package/react/features/large-video/actions.web.ts +102 -0
- package/react/features/large-video/components/LargeVideo.native.tsx +266 -0
- package/react/features/large-video/components/LargeVideo.web.tsx +406 -0
- package/react/features/large-video/components/LargeVideoBackground.native.ts +0 -0
- package/react/features/large-video/components/LargeVideoBackground.web.tsx +260 -0
- package/react/features/large-video/components/ScreenSharePlaceholder.web.tsx +100 -0
- package/react/features/large-video/components/styles.ts +4 -0
- package/react/features/large-video/functions.ts +30 -0
- package/react/features/large-video/logger.ts +3 -0
- package/react/features/large-video/middleware.ts +74 -0
- package/react/features/large-video/reducer.ts +64 -0
- package/react/features/large-video/subscriber.any.ts +26 -0
- package/react/features/large-video/subscriber.native.ts +1 -0
- package/react/features/large-video/subscriber.web.ts +39 -0
- package/react/features/lobby/actionTypes.ts +39 -0
- package/react/features/lobby/actions.any.ts +429 -0
- package/react/features/lobby/actions.native.ts +23 -0
- package/react/features/lobby/actions.web.ts +18 -0
- package/react/features/lobby/components/AbstractLobbyScreen.tsx +484 -0
- package/react/features/lobby/components/native/LobbyChatScreen.tsx +44 -0
- package/react/features/lobby/components/native/LobbyScreen.tsx +323 -0
- package/react/features/lobby/components/native/styles.ts +58 -0
- package/react/features/lobby/components/web/LobbyScreen.tsx +319 -0
- package/react/features/lobby/components/web/LobbySection.tsx +122 -0
- package/react/features/lobby/constants.ts +25 -0
- package/react/features/lobby/functions.ts +105 -0
- package/react/features/lobby/logger.ts +3 -0
- package/react/features/lobby/middleware.ts +436 -0
- package/react/features/lobby/reducer.ts +166 -0
- package/react/features/lobby/sounds.ts +5 -0
- package/react/features/lobby/types.ts +5 -0
- package/react/features/mobile/audio-mode/actionTypes.ts +23 -0
- package/react/features/mobile/audio-mode/components/AudioDeviceToggleButton.ts +30 -0
- package/react/features/mobile/audio-mode/components/AudioRoutePickerDialog.tsx +329 -0
- package/react/features/mobile/audio-mode/components/styles.ts +46 -0
- package/react/features/mobile/audio-mode/logger.ts +3 -0
- package/react/features/mobile/audio-mode/middleware.ts +185 -0
- package/react/features/mobile/audio-mode/reducer.ts +36 -0
- package/react/features/mobile/background/actionTypes.ts +26 -0
- package/react/features/mobile/background/actions.ts +39 -0
- package/react/features/mobile/background/logger.ts +3 -0
- package/react/features/mobile/background/middleware.native.ts +83 -0
- package/react/features/mobile/background/reducer.ts +37 -0
- package/react/features/mobile/call-integration/CallKit.ts +66 -0
- package/react/features/mobile/call-integration/CallKitIcon.png +0 -0
- package/react/features/mobile/call-integration/ConnectionService.ts +33 -0
- package/react/features/mobile/call-integration/actionTypes.ts +13 -0
- package/react/features/mobile/call-integration/functions.ts +20 -0
- package/react/features/mobile/call-integration/middleware.ts +520 -0
- package/react/features/mobile/call-integration/reducer.ts +21 -0
- package/react/features/mobile/external-api/actionTypes.ts +20 -0
- package/react/features/mobile/external-api/actions.ts +33 -0
- package/react/features/mobile/external-api/functions.ts +47 -0
- package/react/features/mobile/external-api/logger.ts +3 -0
- package/react/features/mobile/external-api/middleware.ts +881 -0
- package/react/features/mobile/external-api/reducer.ts +25 -0
- package/react/features/mobile/navigation/actionTypes.ts +1 -0
- package/react/features/mobile/navigation/components/ConnectingPage.tsx +30 -0
- package/react/features/mobile/navigation/components/HeaderNavigationButton.tsx +103 -0
- package/react/features/mobile/navigation/components/RootNavigationContainer.tsx +130 -0
- package/react/features/mobile/navigation/components/TabBarLabelCounter.tsx +39 -0
- package/react/features/mobile/navigation/components/chat/components/ChatAndPollsNavigator.tsx +62 -0
- package/react/features/mobile/navigation/components/conference/ConferenceNavigationContainerRef.ts +35 -0
- package/react/features/mobile/navigation/components/conference/components/ConferenceNavigationContainer.tsx +232 -0
- package/react/features/mobile/navigation/components/lobby/LobbyNavigationContainerRef.ts +24 -0
- package/react/features/mobile/navigation/components/lobby/components/LobbyNavigationContainer.tsx +52 -0
- package/react/features/mobile/navigation/components/settings/SettingsNavigationContainerRef.ts +24 -0
- package/react/features/mobile/navigation/components/settings/components/SettingsNavigationContainer.tsx +91 -0
- package/react/features/mobile/navigation/components/styles.ts +114 -0
- package/react/features/mobile/navigation/components/welcome/components/WelcomePageTabs.tsx +120 -0
- package/react/features/mobile/navigation/functions.tsx +88 -0
- package/react/features/mobile/navigation/middleware.ts +38 -0
- package/react/features/mobile/navigation/rootNavigationContainerRef.ts +51 -0
- package/react/features/mobile/navigation/routes.ts +55 -0
- package/react/features/mobile/navigation/screenOptions.ts +260 -0
- package/react/features/mobile/permissions/functions.ts +29 -0
- package/react/features/mobile/permissions/middleware.ts +66 -0
- package/react/features/mobile/picture-in-picture/actionTypes.ts +11 -0
- package/react/features/mobile/picture-in-picture/actions.ts +42 -0
- package/react/features/mobile/picture-in-picture/components/PictureInPictureButton.ts +65 -0
- package/react/features/mobile/picture-in-picture/functions.ts +36 -0
- package/react/features/mobile/picture-in-picture/logger.ts +3 -0
- package/react/features/mobile/polyfills/RTCPeerConnection.js +19 -0
- package/react/features/mobile/polyfills/Storage.js +192 -0
- package/react/features/mobile/polyfills/browser.js +338 -0
- package/react/features/mobile/polyfills/custom.js +4 -0
- package/react/features/mobile/polyfills/index.js +2 -0
- package/react/features/mobile/polyfills/ipv6utils.js +197 -0
- package/react/features/mobile/polyfills/querySelectorPolyfill.js +282 -0
- package/react/features/mobile/polyfills/webrtc.js +11 -0
- package/react/features/mobile/proximity/middleware.ts +34 -0
- package/react/features/mobile/react-native-sdk/functions.js +13 -0
- package/react/features/mobile/react-native-sdk/middleware.js +108 -0
- package/react/features/mobile/wake-lock/middleware.ts +35 -0
- package/react/features/no-audio-signal/actionTypes.ts +11 -0
- package/react/features/no-audio-signal/actions.ts +19 -0
- package/react/features/no-audio-signal/components/DialInLink.tsx +73 -0
- package/react/features/no-audio-signal/constants.ts +6 -0
- package/react/features/no-audio-signal/middleware.tsx +126 -0
- package/react/features/no-audio-signal/reducer.ts +20 -0
- package/react/features/no-audio-signal/sounds.ts +6 -0
- package/react/features/noise-detection/actionTypes.ts +11 -0
- package/react/features/noise-detection/actions.ts +19 -0
- package/react/features/noise-detection/constants.ts +6 -0
- package/react/features/noise-detection/middleware.ts +57 -0
- package/react/features/noise-detection/reducer.ts +21 -0
- package/react/features/noise-detection/sounds.ts +6 -0
- package/react/features/noise-suppression/actionTypes.ts +9 -0
- package/react/features/noise-suppression/actions.ts +98 -0
- package/react/features/noise-suppression/components/NoiseSuppressionButton.tsx +67 -0
- package/react/features/noise-suppression/functions.ts +49 -0
- package/react/features/noise-suppression/logger.ts +3 -0
- package/react/features/noise-suppression/reducer.ts +36 -0
- package/react/features/notifications/actionTypes.ts +45 -0
- package/react/features/notifications/actions.ts +346 -0
- package/react/features/notifications/components/NotificationsTransition.tsx +70 -0
- package/react/features/notifications/components/index.native.ts +1 -0
- package/react/features/notifications/components/index.web.ts +1 -0
- package/react/features/notifications/components/native/Notification.tsx +236 -0
- package/react/features/notifications/components/native/NotificationsContainer.tsx +239 -0
- package/react/features/notifications/components/native/styles.ts +141 -0
- package/react/features/notifications/components/web/Notification.tsx +378 -0
- package/react/features/notifications/components/web/NotificationsContainer.tsx +117 -0
- package/react/features/notifications/constants.ts +137 -0
- package/react/features/notifications/functions.ts +41 -0
- package/react/features/notifications/middleware.ts +210 -0
- package/react/features/notifications/reducer.ts +131 -0
- package/react/features/notifications/types.ts +23 -0
- package/react/features/old-client-notification/components/OldElectronAPPNotificationDescription.tsx +37 -0
- package/react/features/old-client-notification/functions.ts +27 -0
- package/react/features/old-client-notification/middleware.tsx +41 -0
- package/react/features/overlay/actionTypes.ts +19 -0
- package/react/features/overlay/actions.native.ts +21 -0
- package/react/features/overlay/actions.web.ts +54 -0
- package/react/features/overlay/components/web/AbstractBasePageOverlay.tsx +32 -0
- package/react/features/overlay/components/web/AbstractConferenceNotFoundOverlay.tsx +32 -0
- package/react/features/overlay/components/web/AbstractPageReloadOverlay.tsx +281 -0
- package/react/features/overlay/components/web/AbstractSuspendedOverlay.ts +22 -0
- package/react/features/overlay/components/web/BasePageOverlay.tsx +60 -0
- package/react/features/overlay/components/web/ConferenceNotFoundOverlay.tsx +69 -0
- package/react/features/overlay/components/web/OverlayContainer.tsx +59 -0
- package/react/features/overlay/components/web/OverlayFrame.tsx +49 -0
- package/react/features/overlay/components/web/PageReloadOverlay.tsx +55 -0
- package/react/features/overlay/components/web/ReloadButton.tsx +43 -0
- package/react/features/overlay/components/web/SuspendedOverlay.tsx +39 -0
- package/react/features/overlay/functions.web.ts +33 -0
- package/react/features/overlay/logger.ts +3 -0
- package/react/features/overlay/middleware.ts +130 -0
- package/react/features/overlay/reducer.ts +70 -0
- package/react/features/participants-pane/actionTypes.ts +14 -0
- package/react/features/participants-pane/actions.any.ts +12 -0
- package/react/features/participants-pane/actions.native.ts +105 -0
- package/react/features/participants-pane/actions.web.ts +14 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/AddBreakoutRoomButton.tsx +36 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/AutoAssignButton.tsx +30 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/BreakoutRoomNamePrompt.tsx +47 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/CollapsibleRoom.tsx +195 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/JoinQuickActionButton.tsx +52 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/LeaveButton.tsx +33 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/RenameButton.tsx +53 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/RoomActionEllipsis.tsx +27 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/RoomContextMenu.tsx +122 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/RoomList.tsx +110 -0
- package/react/features/participants-pane/components/breakout-rooms/components/web/RoomParticipantContextMenu.tsx +135 -0
- package/react/features/participants-pane/components/native/CollapsibleList.tsx +54 -0
- package/react/features/participants-pane/components/native/ContextMenuLobbyParticipantReject.tsx +67 -0
- package/react/features/participants-pane/components/native/ContextMenuMore.tsx +124 -0
- package/react/features/participants-pane/components/native/LobbyParticipantItem.tsx +45 -0
- package/react/features/participants-pane/components/native/LobbyParticipantList.tsx +57 -0
- package/react/features/participants-pane/components/native/MeetingParticipantItem.tsx +195 -0
- package/react/features/participants-pane/components/native/MeetingParticipantList.tsx +121 -0
- package/react/features/participants-pane/components/native/ParticipantItem.tsx +145 -0
- package/react/features/participants-pane/components/native/ParticipantsConter.tsx +15 -0
- package/react/features/participants-pane/components/native/ParticipantsPane.tsx +50 -0
- package/react/features/participants-pane/components/native/ParticipantsPaneButton.tsx +90 -0
- package/react/features/participants-pane/components/native/ParticipantsPaneFooter.tsx +95 -0
- package/react/features/participants-pane/components/native/RaisedHandIndicator.tsx +16 -0
- package/react/features/participants-pane/components/native/RoomParticipantMenu.tsx +145 -0
- package/react/features/participants-pane/components/native/VisitorsItem.tsx +46 -0
- package/react/features/participants-pane/components/native/VisitorsList.tsx +90 -0
- package/react/features/participants-pane/components/native/styles.ts +293 -0
- package/react/features/participants-pane/components/web/CurrentVisitorsList.tsx +172 -0
- package/react/features/participants-pane/components/web/FooterContextMenu.tsx +198 -0
- package/react/features/participants-pane/components/web/InviteButton.tsx +46 -0
- package/react/features/participants-pane/components/web/LobbyParticipantItem.tsx +140 -0
- package/react/features/participants-pane/components/web/LobbyParticipantItems.tsx +59 -0
- package/react/features/participants-pane/components/web/LobbyParticipants.tsx +135 -0
- package/react/features/participants-pane/components/web/MeetingParticipantContextMenu.tsx +143 -0
- package/react/features/participants-pane/components/web/MeetingParticipantItem.tsx +318 -0
- package/react/features/participants-pane/components/web/MeetingParticipantItems.tsx +106 -0
- package/react/features/participants-pane/components/web/MeetingParticipants.tsx +192 -0
- package/react/features/participants-pane/components/web/ParticipantActionEllipsis.tsx +30 -0
- package/react/features/participants-pane/components/web/ParticipantItem.tsx +199 -0
- package/react/features/participants-pane/components/web/ParticipantQuickAction.tsx +170 -0
- package/react/features/participants-pane/components/web/ParticipantsCounter.tsx +33 -0
- package/react/features/participants-pane/components/web/ParticipantsPane.tsx +247 -0
- package/react/features/participants-pane/components/web/ParticipantsPaneButton.tsx +138 -0
- package/react/features/participants-pane/components/web/RaisedHandIndicator.tsx +29 -0
- package/react/features/participants-pane/components/web/VisitorsItem.tsx +80 -0
- package/react/features/participants-pane/components/web/VisitorsList.tsx +139 -0
- package/react/features/participants-pane/constants.tsx +123 -0
- package/react/features/participants-pane/functions.ts +327 -0
- package/react/features/participants-pane/hooks.web.ts +81 -0
- package/react/features/participants-pane/middleware.ts +28 -0
- package/react/features/participants-pane/reducer.ts +54 -0
- package/react/features/participants-pane/types.ts +36 -0
- package/react/features/polls/actionTypes.ts +93 -0
- package/react/features/polls/actions.ts +164 -0
- package/react/features/polls/components/AbstractPollAnswer.tsx +116 -0
- package/react/features/polls/components/AbstractPollCreate.tsx +182 -0
- package/react/features/polls/components/AbstractPollResults.tsx +119 -0
- package/react/features/polls/components/AbstractPollsPane.tsx +47 -0
- package/react/features/polls/components/native/PollAnswer.tsx +120 -0
- package/react/features/polls/components/native/PollCreate.tsx +219 -0
- package/react/features/polls/components/native/PollItem.tsx +45 -0
- package/react/features/polls/components/native/PollResults.tsx +149 -0
- package/react/features/polls/components/native/PollsList.tsx +70 -0
- package/react/features/polls/components/native/PollsPane.tsx +78 -0
- package/react/features/polls/components/native/styles.ts +239 -0
- package/react/features/polls/components/web/PollAnswer.tsx +156 -0
- package/react/features/polls/components/web/PollCreate.tsx +284 -0
- package/react/features/polls/components/web/PollItem.tsx +42 -0
- package/react/features/polls/components/web/PollResults.tsx +182 -0
- package/react/features/polls/components/web/PollsList.tsx +93 -0
- package/react/features/polls/components/web/PollsPane.tsx +55 -0
- package/react/features/polls/constants.ts +2 -0
- package/react/features/polls/functions.ts +87 -0
- package/react/features/polls/logger.ts +3 -0
- package/react/features/polls/middleware.ts +134 -0
- package/react/features/polls/reducer.ts +186 -0
- package/react/features/polls/types.ts +119 -0
- package/react/features/polls-history/actionTypes.ts +23 -0
- package/react/features/polls-history/actions.ts +47 -0
- package/react/features/polls-history/middleware.ts +46 -0
- package/react/features/polls-history/reducer.ts +52 -0
- package/react/features/power-monitor/actionTypes.ts +19 -0
- package/react/features/power-monitor/actions.ts +37 -0
- package/react/features/power-monitor/middleware.ts +68 -0
- package/react/features/power-monitor/reducer.ts +56 -0
- package/react/features/prejoin/actionTypes.ts +50 -0
- package/react/features/prejoin/actions.native.ts +23 -0
- package/react/features/prejoin/actions.web.ts +464 -0
- package/react/features/prejoin/components/native/Prejoin.tsx +234 -0
- package/react/features/prejoin/components/native/RecordingWarning.tsx +28 -0
- package/react/features/prejoin/components/native/UnsafeRoomWarning.tsx +122 -0
- package/react/features/prejoin/components/native/styles.ts +184 -0
- package/react/features/prejoin/components/web/Label.tsx +46 -0
- package/react/features/prejoin/components/web/Prejoin.tsx +533 -0
- package/react/features/prejoin/components/web/PrejoinApp.tsx +96 -0
- package/react/features/prejoin/components/web/PrejoinThirdParty.tsx +81 -0
- package/react/features/prejoin/components/web/country-picker/CountryDropdown.tsx +47 -0
- package/react/features/prejoin/components/web/country-picker/CountryPicker.tsx +163 -0
- package/react/features/prejoin/components/web/country-picker/CountryRow.tsx +66 -0
- package/react/features/prejoin/components/web/country-picker/CountrySelector.tsx +76 -0
- package/react/features/prejoin/components/web/dialogs/CallingDialog.tsx +82 -0
- package/react/features/prejoin/components/web/dialogs/DialInDialog.tsx +172 -0
- package/react/features/prejoin/components/web/dialogs/DialOutDialog.tsx +100 -0
- package/react/features/prejoin/components/web/dialogs/JoinByPhoneDialog.tsx +239 -0
- package/react/features/prejoin/components/web/preview/DeviceStatus.tsx +78 -0
- package/react/features/prejoin/functions.any.ts +215 -0
- package/react/features/prejoin/functions.native.ts +1 -0
- package/react/features/prejoin/functions.web.ts +32 -0
- package/react/features/prejoin/logger.ts +3 -0
- package/react/features/prejoin/middleware.web.ts +93 -0
- package/react/features/prejoin/reducer.ts +179 -0
- package/react/features/prejoin/types.ts +3 -0
- package/react/features/prejoin/utils.ts +805 -0
- package/react/features/presence-status/components/PresenceLabel.tsx +129 -0
- package/react/features/presence-status/constants.ts +127 -0
- package/react/features/presence-status/functions.ts +8 -0
- package/react/features/reactions/actionTypes.ts +65 -0
- package/react/features/reactions/actions.any.ts +114 -0
- package/react/features/reactions/actions.native.ts +1 -0
- package/react/features/reactions/actions.web.ts +17 -0
- package/react/features/reactions/components/native/RaiseHandButton.tsx +192 -0
- package/react/features/reactions/components/native/RaiseHandContainerButtons.tsx +20 -0
- package/react/features/reactions/components/native/ReactionButton.tsx +105 -0
- package/react/features/reactions/components/native/ReactionEmoji.tsx +94 -0
- package/react/features/reactions/components/native/ReactionMenu.tsx +76 -0
- package/react/features/reactions/components/native/ReactionMenuDialog.tsx +141 -0
- package/react/features/reactions/components/native/ReactionsMenuButton.ts +85 -0
- package/react/features/reactions/components/native/styles.ts +11 -0
- package/react/features/reactions/components/web/RaiseHandButton.ts +95 -0
- package/react/features/reactions/components/web/RaiseHandContainerButtons.tsx +26 -0
- package/react/features/reactions/components/web/ReactionButton.tsx +231 -0
- package/react/features/reactions/components/web/ReactionEmoji.tsx +94 -0
- package/react/features/reactions/components/web/ReactionsAnimations.tsx +29 -0
- package/react/features/reactions/components/web/ReactionsMenu.tsx +259 -0
- package/react/features/reactions/components/web/ReactionsMenuButton.tsx +188 -0
- package/react/features/reactions/constants.ts +196 -0
- package/react/features/reactions/functions.any.ts +174 -0
- package/react/features/reactions/functions.native.ts +1 -0
- package/react/features/reactions/functions.web.ts +27 -0
- package/react/features/reactions/hooks.web.ts +23 -0
- package/react/features/reactions/logger.ts +3 -0
- package/react/features/reactions/middleware.ts +271 -0
- package/react/features/reactions/reducer.ts +121 -0
- package/react/features/reactions/sounds.ts +55 -0
- package/react/features/reactions/types.ts +5 -0
- package/react/features/recent-list/actionTypes.ts +34 -0
- package/react/features/recent-list/actions.ts +58 -0
- package/react/features/recent-list/components/AbstractRecentList.tsx +97 -0
- package/react/features/recent-list/components/DeleteItemButton.native.ts +37 -0
- package/react/features/recent-list/components/RecentList.native.tsx +128 -0
- package/react/features/recent-list/components/RecentList.web.tsx +105 -0
- package/react/features/recent-list/components/RecentListItemMenu.native.tsx +102 -0
- package/react/features/recent-list/components/ShowDialInInfoButton.native.tsx +40 -0
- package/react/features/recent-list/components/styles.native.ts +45 -0
- package/react/features/recent-list/components/styles.web.ts +4 -0
- package/react/features/recent-list/functions.native.ts +157 -0
- package/react/features/recent-list/functions.web.ts +33 -0
- package/react/features/recent-list/logger.ts +3 -0
- package/react/features/recent-list/middleware.ts +151 -0
- package/react/features/recent-list/reducer.ts +153 -0
- package/react/features/recent-list/types.ts +5 -0
- package/react/features/recording/actionTypes.ts +104 -0
- package/react/features/recording/actions.any.ts +493 -0
- package/react/features/recording/actions.native.ts +72 -0
- package/react/features/recording/actions.web.tsx +83 -0
- package/react/features/recording/components/AbstractRecordingLabel.ts +96 -0
- package/react/features/recording/components/LiveStream/AbstractLiveStreamButton.ts +157 -0
- package/react/features/recording/components/LiveStream/AbstractStartLiveStreamDialog.ts +251 -0
- package/react/features/recording/components/LiveStream/AbstractStopLiveStreamDialog.ts +84 -0
- package/react/features/recording/components/LiveStream/AbstractStreamKeyForm.ts +179 -0
- package/react/features/recording/components/LiveStream/constants.ts +26 -0
- package/react/features/recording/components/LiveStream/functions.ts +28 -0
- package/react/features/recording/components/LiveStream/native/GoogleSigninForm.tsx +229 -0
- package/react/features/recording/components/LiveStream/native/LiveStreamButton.ts +63 -0
- package/react/features/recording/components/LiveStream/native/StartLiveStreamDialog.tsx +160 -0
- package/react/features/recording/components/LiveStream/native/StopLiveStreamDialog.tsx +33 -0
- package/react/features/recording/components/LiveStream/native/StreamKeyForm.tsx +164 -0
- package/react/features/recording/components/LiveStream/native/StreamKeyPicker.tsx +168 -0
- package/react/features/recording/components/LiveStream/native/styles.ts +146 -0
- package/react/features/recording/components/LiveStream/web/LiveStreamButton.ts +65 -0
- package/react/features/recording/components/LiveStream/web/StartLiveStreamDialog.tsx +361 -0
- package/react/features/recording/components/LiveStream/web/StopLiveStreamDialog.tsx +36 -0
- package/react/features/recording/components/LiveStream/web/StreamKeyForm.tsx +112 -0
- package/react/features/recording/components/LiveStream/web/StreamKeyPicker.tsx +126 -0
- package/react/features/recording/components/Recording/AbstractHighlightButton.ts +126 -0
- package/react/features/recording/components/Recording/AbstractRecordButton.ts +138 -0
- package/react/features/recording/components/Recording/AbstractStartRecordingDialog.ts +484 -0
- package/react/features/recording/components/Recording/AbstractStartRecordingDialogContent.tsx +432 -0
- package/react/features/recording/components/Recording/AbstractStopRecordingDialog.ts +152 -0
- package/react/features/recording/components/Recording/LocalRecordingManager.native.ts +64 -0
- package/react/features/recording/components/Recording/LocalRecordingManager.web.ts +378 -0
- package/react/features/recording/components/Recording/index.native.ts +2 -0
- package/react/features/recording/components/Recording/index.web.ts +2 -0
- package/react/features/recording/components/Recording/native/HighlightButton.tsx +58 -0
- package/react/features/recording/components/Recording/native/HighlightDialog.tsx +51 -0
- package/react/features/recording/components/Recording/native/RecordButton.ts +68 -0
- package/react/features/recording/components/Recording/native/RecordingConsentDialog.tsx +64 -0
- package/react/features/recording/components/Recording/native/StartRecordingDialog.tsx +170 -0
- package/react/features/recording/components/Recording/native/StartRecordingDialogContent.tsx +383 -0
- package/react/features/recording/components/Recording/native/StopRecordingDialog.tsx +33 -0
- package/react/features/recording/components/Recording/styles.native.ts +167 -0
- package/react/features/recording/components/Recording/styles.web.ts +16 -0
- package/react/features/recording/components/Recording/web/HighlightButton.tsx +225 -0
- package/react/features/recording/components/Recording/web/RecordButton.ts +60 -0
- package/react/features/recording/components/Recording/web/RecordingConsentDialog.tsx +58 -0
- package/react/features/recording/components/Recording/web/StartRecordingDialog.tsx +137 -0
- package/react/features/recording/components/Recording/web/StartRecordingDialogContent.tsx +486 -0
- package/react/features/recording/components/Recording/web/StopRecordingDialog.tsx +48 -0
- package/react/features/recording/components/native/RecordingExpandedLabel.ts +103 -0
- package/react/features/recording/components/native/RecordingLabel.tsx +51 -0
- package/react/features/recording/components/native/styles.ts +18 -0
- package/react/features/recording/components/web/RecordingLabel.tsx +85 -0
- package/react/features/recording/components/web/RecordingLimitNotificationDescription.tsx +76 -0
- package/react/features/recording/constants.ts +64 -0
- package/react/features/recording/functions.ts +485 -0
- package/react/features/recording/hooks.web.ts +61 -0
- package/react/features/recording/logger.ts +3 -0
- package/react/features/recording/middleware.ts +432 -0
- package/react/features/recording/reducer.ts +156 -0
- package/react/features/recording/sounds.ts +27 -0
- package/react/features/rejoin/middleware.ts +27 -0
- package/react/features/remote-control/actionTypes.ts +68 -0
- package/react/features/remote-control/actions.ts +770 -0
- package/react/features/remote-control/components/RemoteControlAuthorizationDialog.tsx +170 -0
- package/react/features/remote-control/constants.ts +86 -0
- package/react/features/remote-control/functions.ts +131 -0
- package/react/features/remote-control/keycodes.ts +176 -0
- package/react/features/remote-control/logger.ts +3 -0
- package/react/features/remote-control/middleware.ts +92 -0
- package/react/features/remote-control/reducer.ts +88 -0
- package/react/features/remote-control/subscriber.ts +53 -0
- package/react/features/room-lock/actions.ts +112 -0
- package/react/features/room-lock/components/PasswordRequiredPrompt.native.tsx +165 -0
- package/react/features/room-lock/components/PasswordRequiredPrompt.web.tsx +159 -0
- package/react/features/room-lock/constants.ts +15 -0
- package/react/features/room-lock/logger.ts +3 -0
- package/react/features/room-lock/middleware.ts +149 -0
- package/react/features/rtcstats/RTCStats.ts +126 -0
- package/react/features/rtcstats/functions.ts +29 -0
- package/react/features/rtcstats/logger.ts +3 -0
- package/react/features/rtcstats/middleware.ts +92 -0
- package/react/features/rtcstats/types.ts +12 -0
- package/react/features/salesforce/actions.ts +36 -0
- package/react/features/salesforce/components/index.native.ts +2 -0
- package/react/features/salesforce/components/index.web.ts +1 -0
- package/react/features/salesforce/components/native/RecordItem.tsx +83 -0
- package/react/features/salesforce/components/native/SalesforceLinkDialog.tsx +186 -0
- package/react/features/salesforce/components/native/styles.ts +148 -0
- package/react/features/salesforce/components/web/RecordItem.tsx +107 -0
- package/react/features/salesforce/components/web/SalesforceLinkDialog.tsx +284 -0
- package/react/features/salesforce/constants.ts +41 -0
- package/react/features/salesforce/functions.ts +114 -0
- package/react/features/salesforce/useSalesforceLinkDialog.ts +156 -0
- package/react/features/screen-share/actionTypes.ts +27 -0
- package/react/features/screen-share/actions.any.ts +19 -0
- package/react/features/screen-share/actions.web.ts +104 -0
- package/react/features/screen-share/components/web/ShareAudioButton.ts +71 -0
- package/react/features/screen-share/components/web/ShareAudioDialog.tsx +117 -0
- package/react/features/screen-share/components/web/ShareScreenWarningDialog.tsx +95 -0
- package/react/features/screen-share/functions.ts +58 -0
- package/react/features/screen-share/logger.ts +3 -0
- package/react/features/screen-share/middleware.ts +72 -0
- package/react/features/screen-share/reducer.ts +44 -0
- package/react/features/screenshot-capture/CameraCaptureDialog.tsx +154 -0
- package/react/features/screenshot-capture/ScreenshotCaptureSummary.tsx +214 -0
- package/react/features/screenshot-capture/actionTypes.ts +29 -0
- package/react/features/screenshot-capture/actions.ts +86 -0
- package/react/features/screenshot-capture/constants.ts +51 -0
- package/react/features/screenshot-capture/functions.tsx +55 -0
- package/react/features/screenshot-capture/logger.ts +3 -0
- package/react/features/screenshot-capture/processScreenshot.js +10 -0
- package/react/features/screenshot-capture/reducer.ts +30 -0
- package/react/features/screenshot-capture/worker.ts +132 -0
- package/react/features/security/actions.ts +15 -0
- package/react/features/security/components/security-dialog/AbstractSecurityDialogButton.ts +92 -0
- package/react/features/security/components/security-dialog/index.native.ts +2 -0
- package/react/features/security/components/security-dialog/index.web.ts +1 -0
- package/react/features/security/components/security-dialog/native/SecurityDialog.tsx +533 -0
- package/react/features/security/components/security-dialog/native/SecurityDialogButton.ts +27 -0
- package/react/features/security/components/security-dialog/native/styles.ts +95 -0
- package/react/features/security/components/security-dialog/web/PasswordForm.tsx +115 -0
- package/react/features/security/components/security-dialog/web/PasswordSection.tsx +189 -0
- package/react/features/security/components/security-dialog/web/SecurityDialog.tsx +65 -0
- package/react/features/security/components/security-dialog/web/SecurityDialogButton.ts +28 -0
- package/react/features/security/functions.ts +28 -0
- package/react/features/security/hooks.web.ts +45 -0
- package/react/features/settings/actionTypes.ts +19 -0
- package/react/features/settings/actions.native.ts +38 -0
- package/react/features/settings/actions.web.ts +375 -0
- package/react/features/settings/components/native/AdvancedSection.tsx +114 -0
- package/react/features/settings/components/native/ConferenceSection.tsx +101 -0
- package/react/features/settings/components/native/FormRow.tsx +146 -0
- package/react/features/settings/components/native/FormSection.tsx +42 -0
- package/react/features/settings/components/native/GeneralSection.tsx +61 -0
- package/react/features/settings/components/native/LanguageSelectView.tsx +79 -0
- package/react/features/settings/components/native/LinksSection.tsx +57 -0
- package/react/features/settings/components/native/LogoutDialog.tsx +21 -0
- package/react/features/settings/components/native/ModeratorSection.tsx +144 -0
- package/react/features/settings/components/native/NotificationsSection.tsx +139 -0
- package/react/features/settings/components/native/ProfileView.tsx +165 -0
- package/react/features/settings/components/native/SettingsView.tsx +101 -0
- package/react/features/settings/components/native/constants.ts +1 -0
- package/react/features/settings/components/native/styles.ts +244 -0
- package/react/features/settings/components/web/CalendarTab.tsx +307 -0
- package/react/features/settings/components/web/LogoutDialog.tsx +38 -0
- package/react/features/settings/components/web/ModeratorTab.tsx +281 -0
- package/react/features/settings/components/web/MoreTab.tsx +283 -0
- package/react/features/settings/components/web/NotificationsTab.tsx +273 -0
- package/react/features/settings/components/web/ProfileTab.tsx +251 -0
- package/react/features/settings/components/web/SettingsButton.ts +50 -0
- package/react/features/settings/components/web/SettingsDialog.tsx +331 -0
- package/react/features/settings/components/web/ShortcutsTab.tsx +178 -0
- package/react/features/settings/components/web/VirtualBackgroundTab.tsx +102 -0
- package/react/features/settings/components/web/audio/AudioSettingsContent.tsx +357 -0
- package/react/features/settings/components/web/audio/AudioSettingsPopup.tsx +164 -0
- package/react/features/settings/components/web/audio/Meter.tsx +45 -0
- package/react/features/settings/components/web/audio/MicrophoneEntry.tsx +223 -0
- package/react/features/settings/components/web/audio/SpeakerEntry.tsx +176 -0
- package/react/features/settings/components/web/video/VideoSettingsContent.tsx +358 -0
- package/react/features/settings/components/web/video/VideoSettingsPopup.tsx +128 -0
- package/react/features/settings/constants.ts +21 -0
- package/react/features/settings/functions.any.ts +282 -0
- package/react/features/settings/functions.native.ts +38 -0
- package/react/features/settings/functions.web.ts +175 -0
- package/react/features/settings/logger.ts +3 -0
- package/react/features/settings/middleware.web.ts +33 -0
- package/react/features/settings/reducer.ts +43 -0
- package/react/features/share-room/actionTypes.ts +33 -0
- package/react/features/share-room/actions.ts +69 -0
- package/react/features/share-room/functions.ts +18 -0
- package/react/features/share-room/logger.ts +3 -0
- package/react/features/share-room/middleware.ts +71 -0
- package/react/features/share-room/reducer.ts +23 -0
- package/react/features/shared-video/actionTypes.ts +38 -0
- package/react/features/shared-video/actions.ts +203 -0
- package/react/features/shared-video/components/AbstractSharedVideoDialog.tsx +68 -0
- package/react/features/shared-video/components/index.native.ts +4 -0
- package/react/features/shared-video/components/index.web.ts +3 -0
- package/react/features/shared-video/components/native/AbstractVideoManager.ts +266 -0
- package/react/features/shared-video/components/native/ShareVideoConfirmDialog.tsx +38 -0
- package/react/features/shared-video/components/native/SharedVideo.tsx +167 -0
- package/react/features/shared-video/components/native/SharedVideoButton.ts +113 -0
- package/react/features/shared-video/components/native/SharedVideoDialog.tsx +86 -0
- package/react/features/shared-video/components/native/VideoManager.tsx +196 -0
- package/react/features/shared-video/components/native/YoutubeVideoManager.tsx +203 -0
- package/react/features/shared-video/components/native/styles.ts +11 -0
- package/react/features/shared-video/components/web/AbstractVideoManager.ts +490 -0
- package/react/features/shared-video/components/web/ShareVideoConfirmDialog.tsx +39 -0
- package/react/features/shared-video/components/web/SharedVideo.tsx +185 -0
- package/react/features/shared-video/components/web/SharedVideoButton.ts +97 -0
- package/react/features/shared-video/components/web/SharedVideoDialog.tsx +118 -0
- package/react/features/shared-video/components/web/VideoManager.tsx +184 -0
- package/react/features/shared-video/components/web/YoutubeVideoManager.tsx +230 -0
- package/react/features/shared-video/constants.ts +50 -0
- package/react/features/shared-video/functions.ts +166 -0
- package/react/features/shared-video/hooks.ts +24 -0
- package/react/features/shared-video/logger.ts +3 -0
- package/react/features/shared-video/middleware.ts +290 -0
- package/react/features/shared-video/reducer.ts +66 -0
- package/react/features/speaker-stats/actionTypes.ts +80 -0
- package/react/features/speaker-stats/actions.any.ts +231 -0
- package/react/features/speaker-stats/actions.native.ts +1 -0
- package/react/features/speaker-stats/actions.web.ts +1 -0
- package/react/features/speaker-stats/components/AbstractSpeakerStatsButton.tsx +14 -0
- package/react/features/speaker-stats/components/AbstractSpeakerStatsList.ts +114 -0
- package/react/features/speaker-stats/components/native/SpeakerStats.tsx +32 -0
- package/react/features/speaker-stats/components/native/SpeakerStatsButton.ts +50 -0
- package/react/features/speaker-stats/components/native/SpeakerStatsItem.tsx +76 -0
- package/react/features/speaker-stats/components/native/SpeakerStatsList.tsx +23 -0
- package/react/features/speaker-stats/components/native/SpeakerStatsSearch.tsx +48 -0
- package/react/features/speaker-stats/components/native/TimeElapsed.tsx +50 -0
- package/react/features/speaker-stats/components/native/styles.ts +55 -0
- package/react/features/speaker-stats/components/timeFunctions.ts +88 -0
- package/react/features/speaker-stats/components/web/FaceExpressionsSwitch.tsx +61 -0
- package/react/features/speaker-stats/components/web/SpeakerStats.tsx +283 -0
- package/react/features/speaker-stats/components/web/SpeakerStatsButton.tsx +45 -0
- package/react/features/speaker-stats/components/web/SpeakerStatsItem.tsx +116 -0
- package/react/features/speaker-stats/components/web/SpeakerStatsLabels.tsx +56 -0
- package/react/features/speaker-stats/components/web/SpeakerStatsList.tsx +65 -0
- package/react/features/speaker-stats/components/web/SpeakerStatsSearch.tsx +128 -0
- package/react/features/speaker-stats/components/web/TimeElapsed.tsx +36 -0
- package/react/features/speaker-stats/components/web/Timeline.tsx +207 -0
- package/react/features/speaker-stats/components/web/TimelineAxis.tsx +187 -0
- package/react/features/speaker-stats/constants.ts +28 -0
- package/react/features/speaker-stats/functions.ts +274 -0
- package/react/features/speaker-stats/hooks.web.ts +23 -0
- package/react/features/speaker-stats/middleware.ts +101 -0
- package/react/features/speaker-stats/reducer.ts +188 -0
- package/react/features/stream-effects/audio-mixer/AudioMixerEffect.ts +113 -0
- package/react/features/stream-effects/noise-suppression/NoiseSuppressionEffect.ts +277 -0
- package/react/features/stream-effects/noise-suppression/NoiseSuppressorWorklet.ts +177 -0
- package/react/features/stream-effects/noise-suppression/logger.ts +3 -0
- package/react/features/stream-effects/rnnoise/RnnoiseProcessor.ts +186 -0
- package/react/features/stream-effects/rnnoise/index.ts +24 -0
- package/react/features/stream-effects/virtual-background/JitsiStreamBackgroundEffect.ts +269 -0
- package/react/features/stream-effects/virtual-background/TimerWorker.ts +67 -0
- package/react/features/stream-effects/virtual-background/index.ts +106 -0
- package/react/features/stream-effects/virtual-background/vendor/README.md +24 -0
- package/react/features/stream-effects/virtual-background/vendor/models/selfie_segmentation_landscape.tflite +0 -0
- package/react/features/stream-effects/virtual-background/vendor/tflite/tflite-simd.js +17 -0
- package/react/features/stream-effects/virtual-background/vendor/tflite/tflite-simd.wasm +0 -0
- package/react/features/stream-effects/virtual-background/vendor/tflite/tflite.js +17 -0
- package/react/features/stream-effects/virtual-background/vendor/tflite/tflite.wasm +0 -0
- package/react/features/subtitles/actionTypes.ts +72 -0
- package/react/features/subtitles/actions.any.ts +139 -0
- package/react/features/subtitles/actions.native.ts +1 -0
- package/react/features/subtitles/actions.web.ts +17 -0
- package/react/features/subtitles/components/AbstractCaptions.tsx +143 -0
- package/react/features/subtitles/components/AbstractClosedCaptionButton.tsx +128 -0
- package/react/features/subtitles/components/AbstractLanguageSelectorDialog.tsx +67 -0
- package/react/features/subtitles/components/native/Captions.tsx +65 -0
- package/react/features/subtitles/components/native/ClosedCaptionButton.tsx +59 -0
- package/react/features/subtitles/components/native/LanguageList.tsx +43 -0
- package/react/features/subtitles/components/native/LanguageListItem.tsx +67 -0
- package/react/features/subtitles/components/native/LanguageSelectorDialog.tsx +38 -0
- package/react/features/subtitles/components/native/styles.ts +63 -0
- package/react/features/subtitles/components/web/Captions.tsx +169 -0
- package/react/features/subtitles/components/web/ClosedCaptionButton.tsx +92 -0
- package/react/features/subtitles/components/web/LanguageList.tsx +52 -0
- package/react/features/subtitles/components/web/LanguageListItem.tsx +77 -0
- package/react/features/subtitles/components/web/LanguageSelector.tsx +103 -0
- package/react/features/subtitles/components/web/LanguageSelectorDialog.tsx +78 -0
- package/react/features/subtitles/constants.ts +4 -0
- package/react/features/subtitles/functions.any.ts +71 -0
- package/react/features/subtitles/functions.native.ts +30 -0
- package/react/features/subtitles/functions.web.ts +35 -0
- package/react/features/subtitles/hooks.web.ts +31 -0
- package/react/features/subtitles/logger.ts +3 -0
- package/react/features/subtitles/middleware.ts +401 -0
- package/react/features/subtitles/reducer.ts +180 -0
- package/react/features/subtitles/types.ts +23 -0
- package/react/features/talk-while-muted/actionTypes.ts +12 -0
- package/react/features/talk-while-muted/actions.ts +19 -0
- package/react/features/talk-while-muted/constants.ts +6 -0
- package/react/features/talk-while-muted/middleware.ts +75 -0
- package/react/features/talk-while-muted/reducer.ts +21 -0
- package/react/features/talk-while-muted/sounds.ts +6 -0
- package/react/features/toolbox/actionTypes.ts +168 -0
- package/react/features/toolbox/actions.any.ts +189 -0
- package/react/features/toolbox/actions.native.ts +45 -0
- package/react/features/toolbox/actions.web.ts +280 -0
- package/react/features/toolbox/components/AbstractAudioMuteButton.tsx +95 -0
- package/react/features/toolbox/components/AbstractVideoMuteButton.tsx +94 -0
- package/react/features/toolbox/components/DownloadButton.ts +59 -0
- package/react/features/toolbox/components/HangupButton.ts +50 -0
- package/react/features/toolbox/components/HelpButton.ts +62 -0
- package/react/features/toolbox/components/index.native.ts +1 -0
- package/react/features/toolbox/components/index.web.ts +1 -0
- package/react/features/toolbox/components/native/AudioMuteButton.tsx +6 -0
- package/react/features/toolbox/components/native/AudioOnlyButton.ts +96 -0
- package/react/features/toolbox/components/native/CustomOptionButton.tsx +75 -0
- package/react/features/toolbox/components/native/HangupContainerButtons.tsx +21 -0
- package/react/features/toolbox/components/native/HangupMenu.tsx +73 -0
- package/react/features/toolbox/components/native/HangupMenuButton.tsx +32 -0
- package/react/features/toolbox/components/native/LinkToSalesforceButton.ts +48 -0
- package/react/features/toolbox/components/native/OpenCarmodeButton.tsx +49 -0
- package/react/features/toolbox/components/native/OverflowMenu.tsx +316 -0
- package/react/features/toolbox/components/native/OverflowMenuButton.ts +50 -0
- package/react/features/toolbox/components/native/RaiseHandButton.ts +99 -0
- package/react/features/toolbox/components/native/ScreenSharingAndroidButton.ts +91 -0
- package/react/features/toolbox/components/native/ScreenSharingButton.tsx +36 -0
- package/react/features/toolbox/components/native/ScreenSharingIosButton.tsx +148 -0
- package/react/features/toolbox/components/native/ToggleCameraButton.ts +79 -0
- package/react/features/toolbox/components/native/ToggleSelfViewButton.ts +74 -0
- package/react/features/toolbox/components/native/Toolbox.tsx +142 -0
- package/react/features/toolbox/components/native/VideoMuteButton.tsx +7 -0
- package/react/features/toolbox/components/native/styles.ts +216 -0
- package/react/features/toolbox/components/web/AudioMuteButton.tsx +205 -0
- package/react/features/toolbox/components/web/AudioSettingsButton.tsx +180 -0
- package/react/features/toolbox/components/web/CustomOptionButton.tsx +40 -0
- package/react/features/toolbox/components/web/DialogPortal.ts +126 -0
- package/react/features/toolbox/components/web/Drawer.tsx +172 -0
- package/react/features/toolbox/components/web/EndConferenceButton.tsx +55 -0
- package/react/features/toolbox/components/web/FullscreenButton.ts +77 -0
- package/react/features/toolbox/components/web/HangupContextMenuItem.tsx +73 -0
- package/react/features/toolbox/components/web/HangupMenuButton.tsx +134 -0
- package/react/features/toolbox/components/web/HangupToggleButton.tsx +57 -0
- package/react/features/toolbox/components/web/JitsiPortal.tsx +58 -0
- package/react/features/toolbox/components/web/LeaveConferenceButton.tsx +54 -0
- package/react/features/toolbox/components/web/LinkToSalesforceButton.ts +48 -0
- package/react/features/toolbox/components/web/OverflowMenuButton.tsx +262 -0
- package/react/features/toolbox/components/web/OverflowToggleButton.ts +59 -0
- package/react/features/toolbox/components/web/ProfileButton.ts +116 -0
- package/react/features/toolbox/components/web/ProfileButtonAvatar.tsx +62 -0
- package/react/features/toolbox/components/web/Separator.tsx +3 -0
- package/react/features/toolbox/components/web/ShareDesktopButton.ts +116 -0
- package/react/features/toolbox/components/web/ToggleCameraButton.ts +76 -0
- package/react/features/toolbox/components/web/Toolbox.tsx +353 -0
- package/react/features/toolbox/components/web/VideoMuteButton.tsx +203 -0
- package/react/features/toolbox/components/web/VideoSettingsButton.tsx +197 -0
- package/react/features/toolbox/constants.ts +214 -0
- package/react/features/toolbox/functions.any.ts +95 -0
- package/react/features/toolbox/functions.native.ts +125 -0
- package/react/features/toolbox/functions.web.ts +248 -0
- package/react/features/toolbox/hooks.native.ts +181 -0
- package/react/features/toolbox/hooks.web.ts +642 -0
- package/react/features/toolbox/middleware.native.ts +46 -0
- package/react/features/toolbox/middleware.web.ts +172 -0
- package/react/features/toolbox/reducer.ts +215 -0
- package/react/features/toolbox/subscriber.web.ts +106 -0
- package/react/features/toolbox/types.ts +107 -0
- package/react/features/transcribing/actionTypes.ts +22 -0
- package/react/features/transcribing/actions.ts +40 -0
- package/react/features/transcribing/functions.ts +83 -0
- package/react/features/transcribing/jitsi-bcp47-map.json +52 -0
- package/react/features/transcribing/logger.ts +3 -0
- package/react/features/transcribing/middleware.ts +25 -0
- package/react/features/transcribing/reducer.ts +79 -0
- package/react/features/transcribing/subscriber.ts +87 -0
- package/react/features/transcribing/transcriber-langs.json +90 -0
- package/react/features/unsupported-browser/components/DefaultUnsupportedDesktopBrowser.tsx +31 -0
- package/react/features/unsupported-browser/components/JaasUnsupportedDesktopBrowser.ts +1 -0
- package/react/features/unsupported-browser/components/PageSelector.tsx +19 -0
- package/react/features/unsupported-browser/components/UnsupportedDesktopBrowser.tsx +1 -0
- package/react/features/unsupported-browser/components/browserLinks.ts +35 -0
- package/react/features/video-layout/actionTypes.ts +30 -0
- package/react/features/video-layout/actions.any.ts +60 -0
- package/react/features/video-layout/actions.native.ts +19 -0
- package/react/features/video-layout/actions.web.ts +1 -0
- package/react/features/video-layout/components/TileViewButton.ts +96 -0
- package/react/features/video-layout/constants.ts +29 -0
- package/react/features/video-layout/functions.any.ts +238 -0
- package/react/features/video-layout/functions.native.ts +1 -0
- package/react/features/video-layout/functions.web.ts +86 -0
- package/react/features/video-layout/hooks.ts +26 -0
- package/react/features/video-layout/logger.ts +3 -0
- package/react/features/video-layout/middleware.any.ts +129 -0
- package/react/features/video-layout/middleware.native.ts +34 -0
- package/react/features/video-layout/middleware.web.ts +72 -0
- package/react/features/video-layout/reducer.ts +63 -0
- package/react/features/video-layout/subscriber.ts +35 -0
- package/react/features/video-menu/actions.any.ts +105 -0
- package/react/features/video-menu/actions.native.ts +1 -0
- package/react/features/video-menu/actions.web.ts +17 -0
- package/react/features/video-menu/components/AbstractGrantModeratorButton.ts +59 -0
- package/react/features/video-menu/components/AbstractGrantModeratorDialog.ts +77 -0
- package/react/features/video-menu/components/AbstractKickButton.ts +34 -0
- package/react/features/video-menu/components/AbstractKickRemoteParticipantDialog.ts +57 -0
- package/react/features/video-menu/components/AbstractMuteButton.ts +90 -0
- package/react/features/video-menu/components/AbstractMuteEveryoneDialog.ts +131 -0
- package/react/features/video-menu/components/AbstractMuteEveryoneElseButton.ts +37 -0
- package/react/features/video-menu/components/AbstractMuteEveryoneElsesVideoButton.ts +37 -0
- package/react/features/video-menu/components/AbstractMuteEveryonesDesktopDialog.ts +130 -0
- package/react/features/video-menu/components/AbstractMuteEveryonesVideoDialog.ts +130 -0
- package/react/features/video-menu/components/AbstractMuteRemoteParticipantsDesktopDialog.ts +81 -0
- package/react/features/video-menu/components/AbstractMuteRemoteParticipantsVideoDialog.ts +81 -0
- package/react/features/video-menu/components/AbstractMuteVideoButton.ts +90 -0
- package/react/features/video-menu/components/index.native.ts +13 -0
- package/react/features/video-menu/components/index.web.ts +6 -0
- package/react/features/video-menu/components/native/AskUnmuteButton.ts +100 -0
- package/react/features/video-menu/components/native/ConnectionStatusButton.ts +36 -0
- package/react/features/video-menu/components/native/ConnectionStatusComponent.tsx +476 -0
- package/react/features/video-menu/components/native/DemoteToVisitorButton.ts +52 -0
- package/react/features/video-menu/components/native/DemoteToVisitorDialog.tsx +38 -0
- package/react/features/video-menu/components/native/GrantModeratorButton.ts +8 -0
- package/react/features/video-menu/components/native/GrantModeratorDialog.tsx +31 -0
- package/react/features/video-menu/components/native/KickButton.ts +20 -0
- package/react/features/video-menu/components/native/KickRemoteParticipantDialog.tsx +32 -0
- package/react/features/video-menu/components/native/LocalVideoMenu.tsx +154 -0
- package/react/features/video-menu/components/native/LowerHandButton.tsx +71 -0
- package/react/features/video-menu/components/native/MuteButton.ts +22 -0
- package/react/features/video-menu/components/native/MuteEveryoneDialog.tsx +58 -0
- package/react/features/video-menu/components/native/MuteEveryoneElseButton.ts +20 -0
- package/react/features/video-menu/components/native/MuteEveryonesVideoDialog.tsx +58 -0
- package/react/features/video-menu/components/native/MuteRemoteParticipantsVideoDialog.tsx +32 -0
- package/react/features/video-menu/components/native/MuteVideoButton.ts +22 -0
- package/react/features/video-menu/components/native/PinButton.ts +59 -0
- package/react/features/video-menu/components/native/RemoteVideoMenu.tsx +287 -0
- package/react/features/video-menu/components/native/SendToBreakoutRoom.ts +71 -0
- package/react/features/video-menu/components/native/SharedVideoMenu.tsx +149 -0
- package/react/features/video-menu/components/native/VolumeSlider.tsx +175 -0
- package/react/features/video-menu/components/native/styles.ts +89 -0
- package/react/features/video-menu/components/web/AskToUnmuteButton.tsx +76 -0
- package/react/features/video-menu/components/web/ConnectionStatusButton.tsx +42 -0
- package/react/features/video-menu/components/web/CustomOptionButton.tsx +27 -0
- package/react/features/video-menu/components/web/DemoteToVisitorButton.tsx +63 -0
- package/react/features/video-menu/components/web/DemoteToVisitorDialog.tsx +40 -0
- package/react/features/video-menu/components/web/FakeParticipantContextMenu.tsx +178 -0
- package/react/features/video-menu/components/web/FlipLocalVideoButton.tsx +125 -0
- package/react/features/video-menu/components/web/GrantModeratorButton.tsx +56 -0
- package/react/features/video-menu/components/web/GrantModeratorDialog.tsx +32 -0
- package/react/features/video-menu/components/web/HideSelfViewVideoButton.tsx +124 -0
- package/react/features/video-menu/components/web/KickButton.tsx +46 -0
- package/react/features/video-menu/components/web/KickRemoteParticipantDialog.tsx +32 -0
- package/react/features/video-menu/components/web/LocalVideoMenuTriggerButton.tsx +305 -0
- package/react/features/video-menu/components/web/LowerHandButton.tsx +56 -0
- package/react/features/video-menu/components/web/MuteButton.tsx +65 -0
- package/react/features/video-menu/components/web/MuteDesktopButton.tsx +67 -0
- package/react/features/video-menu/components/web/MuteEveryoneDialog.tsx +55 -0
- package/react/features/video-menu/components/web/MuteEveryoneElseButton.tsx +48 -0
- package/react/features/video-menu/components/web/MuteEveryoneElsesDesktopButton.tsx +48 -0
- package/react/features/video-menu/components/web/MuteEveryoneElsesVideoButton.tsx +48 -0
- package/react/features/video-menu/components/web/MuteEveryonesDesktopDialog.tsx +52 -0
- package/react/features/video-menu/components/web/MuteEveryonesVideoDialog.tsx +52 -0
- package/react/features/video-menu/components/web/MuteRemoteParticipantsDesktopDialog.tsx +40 -0
- package/react/features/video-menu/components/web/MuteRemoteParticipantsVideoDialog.tsx +40 -0
- package/react/features/video-menu/components/web/MuteVideoButton.tsx +66 -0
- package/react/features/video-menu/components/web/ParticipantContextMenu.tsx +388 -0
- package/react/features/video-menu/components/web/PrivateMessageMenuButton.tsx +112 -0
- package/react/features/video-menu/components/web/RemoteControlButton.tsx +148 -0
- package/react/features/video-menu/components/web/RemoteVideoMenuTriggerButton.tsx +273 -0
- package/react/features/video-menu/components/web/SendToRoomButton.tsx +57 -0
- package/react/features/video-menu/components/web/TogglePinToStageButton.tsx +67 -0
- package/react/features/video-menu/components/web/VerifyParticipantButton.tsx +45 -0
- package/react/features/video-menu/components/web/VolumeSlider.tsx +111 -0
- package/react/features/video-menu/constants.ts +41 -0
- package/react/features/video-menu/logger.ts +3 -0
- package/react/features/video-menu/types.ts +18 -0
- package/react/features/video-quality/actionTypes.ts +72 -0
- package/react/features/video-quality/actions.ts +135 -0
- package/react/features/video-quality/components/Slider.web.tsx +168 -0
- package/react/features/video-quality/components/VideoQualityButton.native.ts +0 -0
- package/react/features/video-quality/components/VideoQualityButton.web.ts +58 -0
- package/react/features/video-quality/components/VideoQualityDialog.native.ts +0 -0
- package/react/features/video-quality/components/VideoQualityDialog.web.tsx +30 -0
- package/react/features/video-quality/components/VideoQualityExpandedLabel.native.ts +34 -0
- package/react/features/video-quality/components/VideoQualityExpandedLabel.web.ts +0 -0
- package/react/features/video-quality/components/VideoQualityLabel.native.tsx +75 -0
- package/react/features/video-quality/components/VideoQualityLabel.web.tsx +66 -0
- package/react/features/video-quality/components/VideoQualitySlider.native.ts +0 -0
- package/react/features/video-quality/components/VideoQualitySlider.web.tsx +385 -0
- package/react/features/video-quality/components/styles.ts +20 -0
- package/react/features/video-quality/constants.ts +55 -0
- package/react/features/video-quality/functions.ts +65 -0
- package/react/features/video-quality/logger.ts +3 -0
- package/react/features/video-quality/middleware.ts +45 -0
- package/react/features/video-quality/reducer.ts +130 -0
- package/react/features/video-quality/selector.ts +31 -0
- package/react/features/video-quality/subscriber.ts +517 -0
- package/react/features/videosipgw/actionTypes.ts +23 -0
- package/react/features/videosipgw/actions.ts +20 -0
- package/react/features/videosipgw/logger.ts +3 -0
- package/react/features/videosipgw/middleware.ts +179 -0
- package/react/features/videosipgw/reducer.ts +21 -0
- package/react/features/videosipgw/types.ts +10 -0
- package/react/features/virtual-background/actionTypes.ts +23 -0
- package/react/features/virtual-background/actions.ts +105 -0
- package/react/features/virtual-background/components/UploadImageButton.tsx +152 -0
- package/react/features/virtual-background/components/VideoBackgroundButton.ts +77 -0
- package/react/features/virtual-background/components/VirtualBackgroundPreview.tsx +305 -0
- package/react/features/virtual-background/components/VirtualBackgrounds.tsx +503 -0
- package/react/features/virtual-background/constants.ts +61 -0
- package/react/features/virtual-background/functions.ts +119 -0
- package/react/features/virtual-background/hooks.ts +27 -0
- package/react/features/virtual-background/logger.ts +3 -0
- package/react/features/virtual-background/reducer.ts +54 -0
- package/react/features/visitors/VisitorsListWebsocketClient.ts +175 -0
- package/react/features/visitors/actionTypes.ts +81 -0
- package/react/features/visitors/actions.ts +262 -0
- package/react/features/visitors/components/index.native.ts +1 -0
- package/react/features/visitors/components/index.web.ts +1 -0
- package/react/features/visitors/components/native/JoinMeetingDialog.tsx +40 -0
- package/react/features/visitors/components/native/VisitorsCountLabel.tsx +38 -0
- package/react/features/visitors/components/native/VisitorsQueue.tsx +43 -0
- package/react/features/visitors/components/native/styles.ts +34 -0
- package/react/features/visitors/components/web/JoinMeetingDialog.tsx +72 -0
- package/react/features/visitors/components/web/VisitorsCountLabel.tsx +37 -0
- package/react/features/visitors/components/web/VisitorsQueue.tsx +107 -0
- package/react/features/visitors/functions.ts +153 -0
- package/react/features/visitors/logger.ts +3 -0
- package/react/features/visitors/middleware.ts +479 -0
- package/react/features/visitors/reducer.ts +132 -0
- package/react/features/visitors/types.ts +15 -0
- package/react/features/visitors/websocket-client.ts +169 -0
- package/react/features/web-hid/actionTypes.ts +20 -0
- package/react/features/web-hid/actions.ts +51 -0
- package/react/features/web-hid/functions.ts +121 -0
- package/react/features/web-hid/logger.ts +3 -0
- package/react/features/web-hid/middleware.ts +145 -0
- package/react/features/web-hid/reducer.ts +43 -0
- package/react/features/web-hid/types.ts +44 -0
- package/react/features/web-hid/utils.ts +52 -0
- package/react/features/web-hid/webhid-manager.ts +1018 -0
- package/react/features/welcome/components/AbstractWelcomePage.ts +298 -0
- package/react/features/welcome/components/BlankPage.web.ts +1 -0
- package/react/features/welcome/components/TabIcon.tsx +35 -0
- package/react/features/welcome/components/Tabs.tsx +111 -0
- package/react/features/welcome/components/WelcomePage.native.tsx +417 -0
- package/react/features/welcome/components/WelcomePage.web.tsx +517 -0
- package/react/features/welcome/components/styles.native.ts +231 -0
- package/react/features/welcome/constants.tsx +44 -0
- package/react/features/welcome/functions.ts +33 -0
- package/react/features/whiteboard/actionTypes.ts +25 -0
- package/react/features/whiteboard/actions.any.ts +71 -0
- package/react/features/whiteboard/actions.native.ts +26 -0
- package/react/features/whiteboard/actions.web.ts +48 -0
- package/react/features/whiteboard/components/native/Whiteboard.tsx +247 -0
- package/react/features/whiteboard/components/native/WhiteboardButton.tsx +43 -0
- package/react/features/whiteboard/components/native/WhiteboardErrorDialog.tsx +15 -0
- package/react/features/whiteboard/components/native/WhiteboardLimitDialog.tsx +43 -0
- package/react/features/whiteboard/components/native/styles.ts +37 -0
- package/react/features/whiteboard/components/web/NoWhiteboardError.tsx +25 -0
- package/react/features/whiteboard/components/web/Whiteboard.tsx +165 -0
- package/react/features/whiteboard/components/web/WhiteboardApp.tsx +94 -0
- package/react/features/whiteboard/components/web/WhiteboardButton.tsx +71 -0
- package/react/features/whiteboard/components/web/WhiteboardLimitDialog.tsx +39 -0
- package/react/features/whiteboard/components/web/WhiteboardWrapper.tsx +70 -0
- package/react/features/whiteboard/constants.ts +71 -0
- package/react/features/whiteboard/functions.ts +217 -0
- package/react/features/whiteboard/hooks.ts +23 -0
- package/react/features/whiteboard/logger.ts +3 -0
- package/react/features/whiteboard/middleware.any.ts +94 -0
- package/react/features/whiteboard/middleware.native.ts +84 -0
- package/react/features/whiteboard/middleware.web.ts +162 -0
- package/react/features/whiteboard/reducer.ts +66 -0
- package/react/features/whiteboard/types.ts +13 -0
- package/react/index.native.js +35 -0
- package/react/index.web.js +85 -0
- package/sdk_instructions.js +2 -0
- package/sounds/README.md +2 -0
- package/sounds/asked-unmute.mp3 +0 -0
- package/sounds/asked-unmute.opus +0 -0
- package/sounds/e2eeOff.mp3 +0 -0
- package/sounds/e2eeOff.opus +0 -0
- package/sounds/e2eeOff_fr.mp3 +0 -0
- package/sounds/e2eeOff_fr.opus +0 -0
- package/sounds/e2eeOff_frCA.mp3 +0 -0
- package/sounds/e2eeOff_frCA.opus +0 -0
- package/sounds/e2eeOn.mp3 +0 -0
- package/sounds/e2eeOn.opus +0 -0
- package/sounds/e2eeOn_fr.mp3 +0 -0
- package/sounds/e2eeOn_fr.opus +0 -0
- package/sounds/e2eeOn_frCA.mp3 +0 -0
- package/sounds/e2eeOn_frCA.opus +0 -0
- package/sounds/incomingMessage.mp3 +0 -0
- package/sounds/incomingMessage.opus +0 -0
- package/sounds/incomingMessage.wav +0 -0
- package/sounds/joined.mp3 +0 -0
- package/sounds/joined.opus +0 -0
- package/sounds/joined.wav +0 -0
- package/sounds/knock.mp3 +0 -0
- package/sounds/knock.opus +0 -0
- package/sounds/left.mp3 +0 -0
- package/sounds/left.opus +0 -0
- package/sounds/left.wav +0 -0
- package/sounds/liveStreamingOff.mp3 +0 -0
- package/sounds/liveStreamingOff.opus +0 -0
- package/sounds/liveStreamingOff_fr.mp3 +0 -0
- package/sounds/liveStreamingOff_fr.opus +0 -0
- package/sounds/liveStreamingOff_frCA.mp3 +0 -0
- package/sounds/liveStreamingOff_frCA.opus +0 -0
- package/sounds/liveStreamingOn.mp3 +0 -0
- package/sounds/liveStreamingOn.opus +0 -0
- package/sounds/liveStreamingOn_fr.mp3 +0 -0
- package/sounds/liveStreamingOn_fr.opus +0 -0
- package/sounds/liveStreamingOn_frCA.mp3 +0 -0
- package/sounds/liveStreamingOn_frCA.opus +0 -0
- package/sounds/noAudioSignal.mp3 +0 -0
- package/sounds/noAudioSignal.opus +0 -0
- package/sounds/noisyAudioInput.mp3 +0 -0
- package/sounds/noisyAudioInput.opus +0 -0
- package/sounds/outgoingRinging.mp3 +0 -0
- package/sounds/outgoingRinging.opus +0 -0
- package/sounds/outgoingRinging.wav +0 -0
- package/sounds/outgoingStart.mp3 +0 -0
- package/sounds/outgoingStart.opus +0 -0
- package/sounds/outgoingStart.wav +0 -0
- package/sounds/reactions-applause.mp3 +0 -0
- package/sounds/reactions-applause.opus +0 -0
- package/sounds/reactions-boo.mp3 +0 -0
- package/sounds/reactions-boo.opus +0 -0
- package/sounds/reactions-crickets.mp3 +0 -0
- package/sounds/reactions-crickets.opus +0 -0
- package/sounds/reactions-laughter.mp3 +0 -0
- package/sounds/reactions-laughter.opus +0 -0
- package/sounds/reactions-love.mp3 +0 -0
- package/sounds/reactions-love.opus +0 -0
- package/sounds/reactions-raised-hand.mp3 +0 -0
- package/sounds/reactions-raised-hand.opus +0 -0
- package/sounds/reactions-surprise.mp3 +0 -0
- package/sounds/reactions-surprise.opus +0 -0
- package/sounds/reactions-thumbs-up.mp3 +0 -0
- package/sounds/reactions-thumbs-up.opus +0 -0
- package/sounds/recordingOff.mp3 +0 -0
- package/sounds/recordingOff.opus +0 -0
- package/sounds/recordingOff_fr.mp3 +0 -0
- package/sounds/recordingOff_fr.opus +0 -0
- package/sounds/recordingOff_frCA.mp3 +0 -0
- package/sounds/recordingOff_frCA.opus +0 -0
- package/sounds/recordingOn.mp3 +0 -0
- package/sounds/recordingOn.opus +0 -0
- package/sounds/recordingOn_fr.mp3 +0 -0
- package/sounds/recordingOn_fr.opus +0 -0
- package/sounds/recordingOn_frCA.mp3 +0 -0
- package/sounds/recordingOn_frCA.opus +0 -0
- package/sounds/rejected.mp3 +0 -0
- package/sounds/rejected.opus +0 -0
- package/sounds/rejected.wav +0 -0
- package/sounds/ring.mp3 +0 -0
- package/sounds/ring.opus +0 -0
- package/sounds/ring.wav +0 -0
- package/sounds/talkWhileMuted.mp3 +0 -0
- package/sounds/talkWhileMuted.opus +0 -0
- package/update_dependencies.js +110 -0
- package/update_sdk_dependencies.js +59 -0
|
@@ -0,0 +1,1581 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addPeople": {
|
|
3
|
+
"accessibilityLabel": {
|
|
4
|
+
"meetingLink": "회의 링크: {{url}}"
|
|
5
|
+
},
|
|
6
|
+
"add": "초대",
|
|
7
|
+
"addContacts": "연락처로 초대하세요",
|
|
8
|
+
"contacts": "연락처",
|
|
9
|
+
"copyInvite": "회의 초대 복사",
|
|
10
|
+
"copyLink": "회의 링크 복사",
|
|
11
|
+
"copyStream": "라이브 스트리밍 링크 복사",
|
|
12
|
+
"countryNotSupported": "아직 해당 지역을 지원하지 않습니다.",
|
|
13
|
+
"countryReminder": "미국 이외의 지역으로 전화하시겠습니까? 국가 번호로 시작해야합니다!",
|
|
14
|
+
"defaultEmail": "기본 이메일",
|
|
15
|
+
"disabled": "사람들을 초대 할 수 없습니다.",
|
|
16
|
+
"failedToAdd": "참가자를 추가하지 못했습니다.",
|
|
17
|
+
"googleEmail": "Google 이메일",
|
|
18
|
+
"inviteMoreHeader": "회의에 혼자 참여하고 있습니다.",
|
|
19
|
+
"inviteMoreMailSubject": "{{appName}} 회의에 참여하세요",
|
|
20
|
+
"inviteMorePrompt": "더 많은 사람을 초대하세요",
|
|
21
|
+
"linkCopied": "링크가 클립보드에 복사되었습니다.",
|
|
22
|
+
"noResults": "일치하는 검색 결과 없음",
|
|
23
|
+
"outlookEmail": "Outlook 이메일",
|
|
24
|
+
"phoneNumbers": "전화번호",
|
|
25
|
+
"searching": "검색 중…",
|
|
26
|
+
"shareInvite": "회의 초대 공유",
|
|
27
|
+
"shareLink": "다른 사람을 초대하려면 회의 링크를 공유하세요.",
|
|
28
|
+
"shareStream": "라이브 스트리밍 링크 공유",
|
|
29
|
+
"sipAddresses": "SIP 주소",
|
|
30
|
+
"telephone": "전화: {{number}}",
|
|
31
|
+
"title": "이 회의에 사람들을 초대하십시오",
|
|
32
|
+
"yahooEmail": "Yahoo 이메일"
|
|
33
|
+
},
|
|
34
|
+
"audioDevices": {
|
|
35
|
+
"bluetooth": "블루투스",
|
|
36
|
+
"car": "자동차 오디오",
|
|
37
|
+
"headphones": "헤드폰",
|
|
38
|
+
"none": "사용 가능한 오디오 장치가 없습니다.",
|
|
39
|
+
"phone": "폰",
|
|
40
|
+
"speaker": "스피커"
|
|
41
|
+
},
|
|
42
|
+
"audioOnly": {
|
|
43
|
+
"audioOnly": "음성 전용"
|
|
44
|
+
},
|
|
45
|
+
"bandwidthSettings": {
|
|
46
|
+
"assumedBandwidthBps": "예: 10000000 (10 Mbps)",
|
|
47
|
+
"assumedBandwidthBpsWarning": "더 높은 값은 네트워크 문제를 일으킬 수 있습니다.",
|
|
48
|
+
"customValue": "사용자 정의 값",
|
|
49
|
+
"customValueEffect": "실제 bps 값을 설정하기 위해",
|
|
50
|
+
"leaveEmpty": "비워두기",
|
|
51
|
+
"leaveEmptyEffect": "추정값을 사용하도록 허용",
|
|
52
|
+
"possibleValues": "가능한 값들",
|
|
53
|
+
"setAssumedBandwidthBps": "예상 대역폭 (bps)",
|
|
54
|
+
"title": "대역폭 설정",
|
|
55
|
+
"zeroEffect": "비디오를 비활성화하려면"
|
|
56
|
+
},
|
|
57
|
+
"breakoutRooms": {
|
|
58
|
+
"actions": {
|
|
59
|
+
"add": "분할 회의실 추가",
|
|
60
|
+
"autoAssign": "자동 분배",
|
|
61
|
+
"close": "닫기",
|
|
62
|
+
"join": "참여",
|
|
63
|
+
"leaveBreakoutRoom": "분할 회의실 나가기",
|
|
64
|
+
"more": "더 보기",
|
|
65
|
+
"remove": "제거",
|
|
66
|
+
"rename": "이름 변경",
|
|
67
|
+
"renameBreakoutRoom": "분할 회의실 이름 변경",
|
|
68
|
+
"sendToBreakoutRoom": "분할 회의실로 참가자 보내기"
|
|
69
|
+
},
|
|
70
|
+
"breakoutList": "분할 회의실 목록",
|
|
71
|
+
"buttonLabel": "분할 회의실",
|
|
72
|
+
"defaultName": "분할 회의실 #{{index}}",
|
|
73
|
+
"hideParticipantList": "참가자 목록 숨기기",
|
|
74
|
+
"mainRoom": "주 회의실",
|
|
75
|
+
"notifications": {
|
|
76
|
+
"joined": "\"{{name}}\" 분할 회의실에 참여했습니다",
|
|
77
|
+
"joinedMainRoom": "주 회의실에 참여했습니다",
|
|
78
|
+
"joinedTitle": "분할 회의실"
|
|
79
|
+
},
|
|
80
|
+
"showParticipantList": "참가자 목록 보기",
|
|
81
|
+
"title": "분할 회의실"
|
|
82
|
+
},
|
|
83
|
+
"calendarSync": {
|
|
84
|
+
"addMeetingURL": "회의 링크 추가",
|
|
85
|
+
"confirmAddLink": "이 이벤트에 Corptime 링크를 추가 하시겠습니까?",
|
|
86
|
+
"error": {
|
|
87
|
+
"appConfiguration": "캘린더가 제대로 구성되지 않았습니다.",
|
|
88
|
+
"generic": "오류가 발생했습니다. 캘린더 설정을 확인하거나 캘린더를 새로 고침 해보세요.",
|
|
89
|
+
"notSignedIn": "캘린더 이벤트를 보기 위해 인증하는 동안 오류가 발생했습니다. 캘린더 설정을 확인하고 다시 로그인하십시오."
|
|
90
|
+
},
|
|
91
|
+
"join": "참여",
|
|
92
|
+
"joinTooltip": "회의에 참여하세요",
|
|
93
|
+
"nextMeeting": "다음 회의",
|
|
94
|
+
"noEvents": "예정된 예정된 이벤트가 없습니다.",
|
|
95
|
+
"ongoingMeeting": "진행중인 회의",
|
|
96
|
+
"permissionButton": "설정 열기",
|
|
97
|
+
"permissionMessage": "앱에 회의를 나열하려면 캘린더 권한이 필요합니다",
|
|
98
|
+
"refresh": "캘린더 새로고침",
|
|
99
|
+
"today": "오늘"
|
|
100
|
+
},
|
|
101
|
+
"carmode": {
|
|
102
|
+
"actions": {
|
|
103
|
+
"selectSoundDevice": "음성 장치 선택"
|
|
104
|
+
},
|
|
105
|
+
"labels": {
|
|
106
|
+
"buttonLabel": "자동차 모드",
|
|
107
|
+
"title": "자동차 모드",
|
|
108
|
+
"videoStopped": "비디오가 중지되었습니다"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"chat": {
|
|
112
|
+
"enter": "채팅방 입장",
|
|
113
|
+
"error": "오류 : 메시지가 전송되지 않았습니다. 이유 : {{error}}",
|
|
114
|
+
"fieldPlaceHolder": "메세지를 여기에 입력하세요",
|
|
115
|
+
"lobbyChatMessageTo": "로비 채팅 메시지 대상: {{recipient}}",
|
|
116
|
+
"message": "메시지",
|
|
117
|
+
"messageAccessibleTitle": "{{user}}님이 말합니다:",
|
|
118
|
+
"messageAccessibleTitleMe": "내가 말합니다:",
|
|
119
|
+
"messageTo": "{{recipient}}에게 보내는 비공개 메시지",
|
|
120
|
+
"messagebox": "메시지 입력",
|
|
121
|
+
"newMessages": "새 메시지",
|
|
122
|
+
"nickname": {
|
|
123
|
+
"popover": "닉네임을 선택하세요",
|
|
124
|
+
"title": "채팅에서 사용할 닉네임을 입력하세요",
|
|
125
|
+
"titleWithPolls": "채팅에서 사용할 닉네임을 입력하세요"
|
|
126
|
+
},
|
|
127
|
+
"noMessagesMessage": "아직 회의에 메시지가 없습니다. 여기서 대화를 시작하세요!",
|
|
128
|
+
"privateNotice": "{{recipient}}에게 보내는 비공개 메시지",
|
|
129
|
+
"sendButton": "전송",
|
|
130
|
+
"smileysPanel": "이모지 패널",
|
|
131
|
+
"systemDisplayName": "시스템",
|
|
132
|
+
"tabs": {
|
|
133
|
+
"chat": "채팅",
|
|
134
|
+
"polls": "투표"
|
|
135
|
+
},
|
|
136
|
+
"title": "채팅",
|
|
137
|
+
"titleWithPolls": "채팅",
|
|
138
|
+
"you": "당신"
|
|
139
|
+
},
|
|
140
|
+
"chromeExtensionBanner": {
|
|
141
|
+
"buttonText": "Chrome 확장 프로그램을 설치합니다.",
|
|
142
|
+
"buttonTextEdge": "Edge 확장 프로그램 설치",
|
|
143
|
+
"close": "닫기",
|
|
144
|
+
"dontShowAgain": "다시 보지 않기",
|
|
145
|
+
"installExtensionText": "Google 캘린더 및 Office 365 확장 프로그램을 설치합니다."
|
|
146
|
+
},
|
|
147
|
+
"connectingOverlay": {
|
|
148
|
+
"joiningRoom": "회의에 연결중…"
|
|
149
|
+
},
|
|
150
|
+
"connection": {
|
|
151
|
+
"ATTACHED": "첨부",
|
|
152
|
+
"AUTHENTICATING": "인증중",
|
|
153
|
+
"AUTHFAIL": "인증 실패",
|
|
154
|
+
"CONNECTED": "연결됨",
|
|
155
|
+
"CONNECTING": "연결중",
|
|
156
|
+
"CONNFAIL": "연결 실패",
|
|
157
|
+
"DISCONNECTED": "연결 끊김",
|
|
158
|
+
"DISCONNECTING": "연결 종료중",
|
|
159
|
+
"ERROR": "에러",
|
|
160
|
+
"FETCH_SESSION_ID": "세션 ID 가져오는 중…",
|
|
161
|
+
"GET_SESSION_ID_ERROR": "세션 ID 가져오기 오류 : {{code}}",
|
|
162
|
+
"GOT_SESSION_ID": "세션 ID를 가져오는중… 완료",
|
|
163
|
+
"LOW_BANDWIDTH": "대역폭을 절약하기 위해 {{displayName}}의 동영상이 중지되었습니다."
|
|
164
|
+
},
|
|
165
|
+
"connectionindicator": {
|
|
166
|
+
"address": "주소:",
|
|
167
|
+
"audio_ssrc": "오디오 SSRC:",
|
|
168
|
+
"bandwidth": "예상 대역폭:",
|
|
169
|
+
"bitrate": "전송률:",
|
|
170
|
+
"bridgeCount": "서버 수: ",
|
|
171
|
+
"codecs": "코덱 (A/V): ",
|
|
172
|
+
"connectedTo": "연결됨:",
|
|
173
|
+
"e2eeVerified": "종단 간 암호화 확인됨:",
|
|
174
|
+
"framerate": "프레임 속도:",
|
|
175
|
+
"less": "간략히 보기",
|
|
176
|
+
"localaddress": "로컬 주소:",
|
|
177
|
+
"localaddress_plural": "로컬 주소들:",
|
|
178
|
+
"localport": "로컬 포트:",
|
|
179
|
+
"localport_plural": "로컬 포트들:",
|
|
180
|
+
"maxEnabledResolution": "최대 전송 해상도",
|
|
181
|
+
"more": "자세히 보기",
|
|
182
|
+
"no": "아니오",
|
|
183
|
+
"packetloss": "패킷 손실:",
|
|
184
|
+
"participant_id": "참가자 ID:",
|
|
185
|
+
"quality": {
|
|
186
|
+
"good": "좋음",
|
|
187
|
+
"inactive": "비활성",
|
|
188
|
+
"lost": "손실됨",
|
|
189
|
+
"nonoptimal": "비최적",
|
|
190
|
+
"poor": "나쁨"
|
|
191
|
+
},
|
|
192
|
+
"remoteaddress": "원격 주소:",
|
|
193
|
+
"remoteaddress_plural": "원격 주소들:",
|
|
194
|
+
"remoteport": "원격 포트:",
|
|
195
|
+
"remoteport_plural": "원격 포트들:",
|
|
196
|
+
"resolution": "해상도:",
|
|
197
|
+
"savelogs": "로그 저장",
|
|
198
|
+
"status": "연결:",
|
|
199
|
+
"transport": "전송 방식:",
|
|
200
|
+
"transport_plural": "전송 방식들:",
|
|
201
|
+
"video_ssrc": "비디오 SSRC:",
|
|
202
|
+
"yes": "예"
|
|
203
|
+
},
|
|
204
|
+
"dateUtils": {
|
|
205
|
+
"earlier": "일찍이",
|
|
206
|
+
"today": "오늘",
|
|
207
|
+
"yesterday": "어제"
|
|
208
|
+
},
|
|
209
|
+
"deepLinking": {
|
|
210
|
+
"appNotInstalled": "회의에 참여하려면 모바일 앱 설치가 필요합니다",
|
|
211
|
+
"description": "{{app}} 데스크톱 앱에서 회의를 시작했습니다. {{app}} 웹 응용 프로그램에서 다시 시도하거나 실행하십시오.",
|
|
212
|
+
"descriptionNew": "설치가 안되었나요? {{app}} 데스크톱 앱에서 회의를 시작하려고 시도했습니다. <br /><br /> 다시 시도하거나 웹에서 실행할 수 있습니다.",
|
|
213
|
+
"descriptionWithoutWeb": "설치가 안되었나요? {{app}} 데스크톱 앱에서 회의를 시작하려고 시도했습니다.",
|
|
214
|
+
"downloadApp": "앱 다운로드",
|
|
215
|
+
"downloadMobileApp": "앱 스토어에서 다운로드",
|
|
216
|
+
"ifDoNotHaveApp": "앱이 설치되지 않은 경우:",
|
|
217
|
+
"ifHaveApp": "앱이 설치되어 있는 경우:",
|
|
218
|
+
"joinInApp": "앱을 사용하여 회의에 참여하세요.",
|
|
219
|
+
"joinInAppNew": "앱에서 참여하기",
|
|
220
|
+
"joinInBrowser": "브라우저에서 참여하기",
|
|
221
|
+
"launchMeetingLabel": "이 회의에 어떻게 참여하시겠습니까?",
|
|
222
|
+
"launchWebButton": "웹에서 실행",
|
|
223
|
+
"noDesktopApp": "앱이 없으신가요?",
|
|
224
|
+
"noMobileApp": "앱이 없으신가요?",
|
|
225
|
+
"or": "또는",
|
|
226
|
+
"termsAndConditions": "계속하면 <a href='{{termsAndConditionsLink}}' rel='noopener noreferrer' target='_blank'>이용 약관</a>에 동의하게 됩니다.",
|
|
227
|
+
"title": "{{app}}에서 회의 시작…",
|
|
228
|
+
"titleNew": "회의를 시작하는 중...",
|
|
229
|
+
"tryAgainButton": "데스크톱에서 다시 시도하십시오",
|
|
230
|
+
"unsupportedBrowser": "지원하지 않는 브라우저를 사용 중인 것 같습니다."
|
|
231
|
+
},
|
|
232
|
+
"defaultLink": "예: {{url}}",
|
|
233
|
+
"defaultNickname": "예: 홍길동",
|
|
234
|
+
"deviceError": {
|
|
235
|
+
"cameraError": "카메라에 액세스하지 못했습니다",
|
|
236
|
+
"cameraPermission": "카메라 권한을 얻는 중 오류가 발생했습니다",
|
|
237
|
+
"microphoneError": "마이크에 액세스하지 못했습니다",
|
|
238
|
+
"microphonePermission": "마이크 권한을 얻는 중 오류가 발생했습니다"
|
|
239
|
+
},
|
|
240
|
+
"deviceSelection": {
|
|
241
|
+
"hid": {
|
|
242
|
+
"callControl": "통화 제어",
|
|
243
|
+
"connectedDevices": "연결된 장치:",
|
|
244
|
+
"deleteDevice": "장치 삭제",
|
|
245
|
+
"pairDevice": "장치 연결"
|
|
246
|
+
},
|
|
247
|
+
"noPermission": "허가 거부",
|
|
248
|
+
"previewUnavailable": "미리보기를 사용할 수 없음",
|
|
249
|
+
"selectADevice": "장치 선택",
|
|
250
|
+
"testAudio": "테스트 사운드 재생"
|
|
251
|
+
},
|
|
252
|
+
"dialIn": {
|
|
253
|
+
"screenTitle": "전화 접속 요약"
|
|
254
|
+
},
|
|
255
|
+
"dialOut": {
|
|
256
|
+
"statusMessage": "현재 상태: {{status}}"
|
|
257
|
+
},
|
|
258
|
+
"dialog": {
|
|
259
|
+
"Back": "뒤로가기",
|
|
260
|
+
"Cancel": "취소",
|
|
261
|
+
"IamHost": "내가 호스트",
|
|
262
|
+
"Ok": "확인",
|
|
263
|
+
"Remove": "제거",
|
|
264
|
+
"Share": "공유",
|
|
265
|
+
"Submit": "제출",
|
|
266
|
+
"WaitForHostMsg": "회의가 시작되지 않았습니다. 호스트인 경우 인증하십시오. 그렇지 않으면 호스트가 도착할 때까지 기다리십시오.",
|
|
267
|
+
"WaitForHostNoAuthMsg": "회의가 시작되지 않았습니다. 호스트가 도착할 때까지 기다리십시오.",
|
|
268
|
+
"WaitingForHostButton": "호스트를 기다립니다",
|
|
269
|
+
"WaitingForHostTitle": "호스트를 기다리는 중…",
|
|
270
|
+
"Yes": "예",
|
|
271
|
+
"accessibilityLabel": {
|
|
272
|
+
"Cancel": "취소 (대화 상자 나가기)",
|
|
273
|
+
"Ok": "확인 (저장하고 대화 상자 나가기)",
|
|
274
|
+
"close": "대화 상자 닫기",
|
|
275
|
+
"liveStreaming": "실시간 스트리밍:",
|
|
276
|
+
"sharingTabs": "공유 옵션"
|
|
277
|
+
},
|
|
278
|
+
"add": "추가",
|
|
279
|
+
"addMeetingNote": "회의 노트 추가",
|
|
280
|
+
"addOptionalNote": "노트 추가 (선택사항):",
|
|
281
|
+
"allow": "허락",
|
|
282
|
+
"allowToggleCameraDialog": "{{initiatorName}}에게 카메라 전환을 허용하시겠습니까?",
|
|
283
|
+
"allowToggleCameraTitle": "카메라 전환 허용?",
|
|
284
|
+
"alreadySharedVideoMsg": "다른 참가자가 이미 비디오를 공유하고 있습니다. 한 번에 하나의 비디오만 공유 가능합니다.",
|
|
285
|
+
"alreadySharedVideoTitle": "비디오 공유는 한 번에 하나만 허용됩니다",
|
|
286
|
+
"applicationWindow": "응용 프로그램 창",
|
|
287
|
+
"authenticationRequired": "인증이 필요합니다",
|
|
288
|
+
"cameraConstraintFailedError": "카메라가 필요한 제약 조건을 충족하지 못했습니다",
|
|
289
|
+
"cameraNotFoundError": "카메라를 찾을 수 없습니다",
|
|
290
|
+
"cameraNotSendingData": "카메라에 액세스 할 수 없습니다. 다른 응용 프로그램이 장치를 사용하고 있는지 확인한 후 설정 메뉴에서 다른 장치를 선택하거나 응용 프로그램을 다시 로드하십시오.",
|
|
291
|
+
"cameraNotSendingDataTitle": "카메라에 액세스 할 수 없습니다",
|
|
292
|
+
"cameraPermissionDeniedError": "카메라 사용 권한이 부여되지 않았습니다. 회의에 계속 참여할 수 있지만 다른 참가자는 귀하를 볼 수 없습니다. 검색 주소창의 카메라 버튼을 사용하여 문제를 해결하십시오.",
|
|
293
|
+
"cameraTimeoutError": "비디오 소스를 시작할 수 없습니다. 시간 초과가 발생했습니다!",
|
|
294
|
+
"cameraUnknownError": "알 수 없는 이유로 카메라를 사용할 수 없습니다",
|
|
295
|
+
"cameraUnsupportedResolutionError": "카메라가 필요한 비디오 해상도를 지원하지 않습니다",
|
|
296
|
+
"close": "닫기",
|
|
297
|
+
"conferenceDisconnectMsg": "네트워크 연결을 확인하고 있습니다. {{seconds}} 초 내에 다시 연결중입니다…",
|
|
298
|
+
"conferenceDisconnectTitle": "연결이 끊어졌습니다.",
|
|
299
|
+
"conferenceReloadMsg": "문제를 해결하려고 노력하고 있습니다. {{seconds}} 초 안에 다시 연결중입니다.",
|
|
300
|
+
"conferenceReloadTitle": "불행하게도 문제가 발생했습니다",
|
|
301
|
+
"confirm": "확인",
|
|
302
|
+
"confirmNo": "아니요",
|
|
303
|
+
"confirmYes": "예",
|
|
304
|
+
"connectError": "죄송합니다. 문제가 발생하여 회의에 연결할 수 없습니다",
|
|
305
|
+
"connectErrorWithMsg": "죄송합니다. 문제가 발생하여 회의에 연결할 수 없습니다: {{msg}}",
|
|
306
|
+
"connecting": "연결중",
|
|
307
|
+
"contactSupport": "지원 연락처",
|
|
308
|
+
"copied": "복사됨",
|
|
309
|
+
"copy": "복사",
|
|
310
|
+
"demoteParticipantDialog": "이 참가자를 방문자로 이동시키겠습니까?",
|
|
311
|
+
"demoteParticipantTitle": "방문자로 이동",
|
|
312
|
+
"dismiss": "닫기",
|
|
313
|
+
"displayNameRequired": "당신의 이름은 무엇입니까?",
|
|
314
|
+
"done": "완료",
|
|
315
|
+
"e2eeDescription": "종단 간 암호화는 현재 실험적입니다. 종단 간 암호화를 켜면 전화 참여와 같은 서버 제공 서비스가 비활성화됩니다. 또한 이 회의는 insertable streams을 지원하는 브라우저에서만 작동합니다.",
|
|
316
|
+
"e2eeDisabledDueToMaxModeDescription": "참가자가 너무 많아서 종단 간 암호화를 활성화할 수 없습니다.",
|
|
317
|
+
"e2eeLabel": "종단 간 암호화 활성화",
|
|
318
|
+
"e2eeWarning": "경고: 이 회의의 모든 참가자가 종단 간 암호화를 지원하는 것 같지 않습니다. 활성화하면 그들은 귀하를 볼 수 없거나 들을 수 없습니다.",
|
|
319
|
+
"e2eeWillDisableDueToMaxModeDescription": "경고: 더 많은 참가자가 회의에 참여하면 종단 간 암호화가 자동으로 비활성화됩니다.",
|
|
320
|
+
"embedMeeting": "회의 삽입",
|
|
321
|
+
"enterDisplayName": "당신의 이름을 입력해주세요.",
|
|
322
|
+
"error": "에러",
|
|
323
|
+
"errorRoomCreationRestriction": "너무 빠르게 시도했습니다. 잠시 후 다시 시도해 주세요.",
|
|
324
|
+
"gracefulShutdown": "서비스가 현재 유지 관리를 위해 중단되었습니다. 나중에 다시 시도 해주십시오.",
|
|
325
|
+
"grantModeratorDialog": "이 참가자({{participantName}})에게 중재자 권한을 부여하시겠습니까?",
|
|
326
|
+
"grantModeratorTitle": "중재자 권한 부여",
|
|
327
|
+
"hide": "숨기기",
|
|
328
|
+
"hideShareAudioHelper": "이 대화 상자를 다시 표시하지 않음",
|
|
329
|
+
"incorrectPassword": "잘못된 사용자 이름 또는 비밀번호",
|
|
330
|
+
"incorrectRoomLockPassword": "잘못된 비밀번호",
|
|
331
|
+
"internalError": "죄송합니다. 문제가 발생하여 회의에 연결할 수 없습니다: {{error}}",
|
|
332
|
+
"internalErrorTitle": "내부 에러",
|
|
333
|
+
"kickMessage": "자세한 내용은 {{participantDisplayName}}에 문의하세요.",
|
|
334
|
+
"kickParticipantButton": "추방",
|
|
335
|
+
"kickParticipantDialog": "이 참가자를 정말 추방 하시겠습니까?",
|
|
336
|
+
"kickParticipantTitle": "이 참가자를 추방 하시겠습니까?",
|
|
337
|
+
"kickTitle": "{{participantDisplayName}} 님이 회의에서 퇴장했습니다.",
|
|
338
|
+
"linkMeeting": "회의 연결",
|
|
339
|
+
"linkMeetingTitle": "회의를 Salesforce에 연결",
|
|
340
|
+
"liveStreaming": "실시간 스트리밍",
|
|
341
|
+
"liveStreamingDisabledBecauseOfActiveRecordingTooltip": "녹화 중에는 사용할 수 없습니다",
|
|
342
|
+
"localUserControls": "로컬 사용자 컨트롤",
|
|
343
|
+
"lockMessage": "회의를 비공개하지 못했습니다",
|
|
344
|
+
"lockRoom": "회의 추가 $t(lockRoomPasswordUppercase)",
|
|
345
|
+
"lockTitle": "비공개 실패",
|
|
346
|
+
"login": "로그인",
|
|
347
|
+
"loginQuestion": "로그인하고 회의를 떠나시겠습니까?",
|
|
348
|
+
"logoutQuestion": "로그아웃하고 컨퍼런스를 중지하시겠습니까?",
|
|
349
|
+
"logoutTitle": "로그아웃",
|
|
350
|
+
"maxUsersLimitReached": "회의의 최대 참가자 수에 도달했습니다. 회의 소유자에게 연락하거나 나중에 다시 시도하십시오!",
|
|
351
|
+
"maxUsersLimitReachedTitle": "최대 참가자 수에 도달했습니다.",
|
|
352
|
+
"micConstraintFailedError": "마이크가 필요한 제약 조건 중 일부를 충족하지 못합니다",
|
|
353
|
+
"micNotFoundError": "마이크를 찾을 수 없습니다",
|
|
354
|
+
"micNotSendingData": "컴퓨터의 설정으로 이동하여 마이크 음소거를 해제하고 레벨을 조정하세요.",
|
|
355
|
+
"micNotSendingDataTitle": "시스템 설정에 의해 마이크가 음소거되었습니다.",
|
|
356
|
+
"micPermissionDeniedError": "마이크를 사용할 수있는 권한을 부여하지 않았습니다. 회의에 계속 참여할 수는 있지만 다른 사람들은 듣지 않습니다. 검색 주소창의 카메라 버튼을 사용하여 문제를 해결하십시오.",
|
|
357
|
+
"micTimeoutError": "오디오 소스를 시작할 수 없습니다. 시간 초과가 발생했습니다!",
|
|
358
|
+
"micUnknownError": "알 수 없는 이유로 마이크를 사용할 수 없습니다",
|
|
359
|
+
"moderationAudioLabel": "참가자가 스스로 음소거 해제 허용",
|
|
360
|
+
"moderationVideoLabel": "참가자가 자신의 비디오 시작 허용",
|
|
361
|
+
"muteEveryoneDialog": "모든 참가자를 음소거 하시겠습니까? 당신이 다른 사람들의 음소거를 해제 할 수는 없지만 언제든지 다른 사람들은 스스로 음소거를 해제할 수 있습니다.",
|
|
362
|
+
"muteEveryoneDialogModerationOn": "참가자는 언제든지 발언 요청을 보낼 수 있습니다.",
|
|
363
|
+
"muteEveryoneElseDialog": "당신이 다른 사람들의 음소거를 해제 할 수는 없지만 언제든지 다른 사람들은 스스로 음소거를 해제할 수 있습니다.",
|
|
364
|
+
"muteEveryoneElseTitle": "{{whom}}을(를) 제외하고 전부 음소거 하시겠습니까?",
|
|
365
|
+
"muteEveryoneElsesVideoDialog": "당신이 다른 사람들의 카메라를 다시 켤 수는 없지만 언제든지 다른 사람들은 스스로 카메라를 켤 수 있습니다.",
|
|
366
|
+
"muteEveryoneElsesVideoTitle": "{{whom}}을(를) 제외하고 전부 카메라를 비활성화 하시겠습니까?",
|
|
367
|
+
"muteEveryoneSelf": "당신 자신",
|
|
368
|
+
"muteEveryoneStartMuted": "지금부터 모두 음소거 됩니다.",
|
|
369
|
+
"muteEveryoneTitle": "모두 음소거 하시겠습니까?",
|
|
370
|
+
"muteEveryonesVideoDialog": "모든 참가자의 카메라를 비활성화 하시겠습니까? 당신이 다른 사람들의 카메라를 다시 켤 수는 없지만 언제든지 다른 사람들은 스스로 카메라를 켤 수 있습니다.",
|
|
371
|
+
"muteEveryonesVideoDialogModerationOn": "참가자는 언제든지 비디오를 켜기 위한 요청을 보낼 수 있습니다.",
|
|
372
|
+
"muteEveryonesVideoDialogOk": "비활성화",
|
|
373
|
+
"muteEveryonesVideoTitle": "모든 카메라를 비활성화 하시겠습니까?",
|
|
374
|
+
"muteParticipantBody": "당신이 다른 사람들의 음소거를 해제 할 수는 없지만 언제든지 다른 사람들은 스스로 음소거를 해제할 수 있습니다.",
|
|
375
|
+
"muteParticipantButton": "음소거",
|
|
376
|
+
"muteParticipantsVideoBody": "당신이 다른 사람들의 카메라를 다시 켤 수는 없지만 언제든지 다른 사람들은 스스로 카메라를 켤 수 있습니다.",
|
|
377
|
+
"muteParticipantsVideoBodyModerationOn": "당신은 카메라를 다시 켤 수 없으며 그들도 마찬가지입니다.",
|
|
378
|
+
"muteParticipantsVideoButton": "카메라 비활성화",
|
|
379
|
+
"muteParticipantsVideoDialog": "이 참가자의 카메라를 끄시겠습니까? 당신은 카메라를 다시 켤 수 없지만, 그들은 언제든지 다시 켤 수 있습니다.",
|
|
380
|
+
"muteParticipantsVideoDialogModerationOn": "이 참가자의 카메라를 끄시겠습니까? 당신은 카메라를 다시 켤 수 없으며 그들도 마찬가지입니다.",
|
|
381
|
+
"muteParticipantsVideoTitle": "이 참가자의 카메라를 비활성화 하시겠습니까?",
|
|
382
|
+
"noDropboxToken": "유효한 Dropbox 토큰이 없습니다",
|
|
383
|
+
"password": "비밀번호",
|
|
384
|
+
"passwordLabel": "잠긴 회의입니다. 회의에 참여하려면 비밀번호를 입력하세요.",
|
|
385
|
+
"passwordNotSupported": "회의 비밀번호 설정은 지원되지 않습니다",
|
|
386
|
+
"passwordNotSupportedTitle": "비밀번호 미지원",
|
|
387
|
+
"passwordRequired": "비밀번호 필수",
|
|
388
|
+
"permissionCameraRequiredError": "비디오로 회의에 참여하려면 카메라 권한이 필요합니다. 설정에서 허용하십시오",
|
|
389
|
+
"permissionErrorTitle": "권한 필요",
|
|
390
|
+
"permissionMicRequiredError": "오디오로 회의에 참여하려면 마이크 권한이 필요합니다. 설정에서 허용하십시오",
|
|
391
|
+
"readMore": "더보기",
|
|
392
|
+
"recentlyUsedObjects": "최근에 사용한 객체",
|
|
393
|
+
"recording": "녹화",
|
|
394
|
+
"recordingDisabledBecauseOfActiveLiveStreamingTooltip": "라이브 스트리밍이 활성화되어 있는 동안에는 사용할 수 없습니다",
|
|
395
|
+
"rejoinNow": "지금 재가입",
|
|
396
|
+
"remoteControlAllowedMessage": "{{user}}이(가) 원격 제어 요청을 수락했습니다",
|
|
397
|
+
"remoteControlDeniedMessage": "{{user}}이(가) 원격 제어 요청을 거부했습니다",
|
|
398
|
+
"remoteControlErrorMessage": "{{user}}로부터 원격 제어 권한을 요청하는 동안 오류가 발생했습니다",
|
|
399
|
+
"remoteControlRequestMessage": "{{user}}에게 당신의 데스크탑을 원격 제어하도록 허용하시겠습니까?",
|
|
400
|
+
"remoteControlShareScreenWarning": "\"허락\"을 누르면 화면을 공유합니다",
|
|
401
|
+
"remoteControlStopMessage": "원격 제어 세션이 종료되었습니다",
|
|
402
|
+
"remoteControlTitle": "원격 데스크탑 컨트롤",
|
|
403
|
+
"remoteUserControls": "{{username}}의 원격 사용자 컨트롤",
|
|
404
|
+
"removePassword": "비밀번호 제거",
|
|
405
|
+
"removeSharedVideoMsg": "공유한 동영상을 삭제하시겠습니까?",
|
|
406
|
+
"removeSharedVideoTitle": "공유된 동영상 삭제",
|
|
407
|
+
"renameBreakoutRoomLabel": "방 이름",
|
|
408
|
+
"renameBreakoutRoomTitle": "분할 회의실 이름 변경",
|
|
409
|
+
"reservationError": "예약 시스템 오류",
|
|
410
|
+
"reservationErrorMsg": "오류 코드: {{code}}, 메시지: {{msg}}",
|
|
411
|
+
"retry": "재시도",
|
|
412
|
+
"screenSharingAudio": "오디오 공유",
|
|
413
|
+
"screenSharingFailed": "죄송합니다! 문제가 발생하여 화면 공유를 시작할 수 없었습니다!",
|
|
414
|
+
"screenSharingFailedTitle": "화면 공유 실패!",
|
|
415
|
+
"screenSharingPermissionDeniedError": "죄송합니다. 화면 공유 확장 권한으로 문제가 발생했습니다. 다시 로드하고 재시도하십시오.",
|
|
416
|
+
"searchInSalesforce": "Salesforce에서 검색",
|
|
417
|
+
"searchResults": "검색 결과({{count}})",
|
|
418
|
+
"searchResultsDetailsError": "소유자 데이터를 검색하는 동안 문제가 발생했습니다.",
|
|
419
|
+
"searchResultsError": "데이터를 검색하는 동안 문제가 발생했습니다.",
|
|
420
|
+
"searchResultsNotFound": "검색 결과를 찾을 수 없습니다.",
|
|
421
|
+
"searchResultsTryAgain": "대체 키워드를 사용해보세요.",
|
|
422
|
+
"sendPrivateMessage": "최근에 비공개 메시지를 받았습니다. 비공개로 답장을 보내시겠습니까, 아니면 그룹에 메시지를 보내시겠습니까?",
|
|
423
|
+
"sendPrivateMessageCancel": "그룹에 보내기",
|
|
424
|
+
"sendPrivateMessageOk": "비공개로 보내기",
|
|
425
|
+
"sendPrivateMessageTitle": "비공개로 보낼까요?",
|
|
426
|
+
"serviceUnavailable": "서비스를 사용할 수 없음",
|
|
427
|
+
"sessTerminated": "통화 종료",
|
|
428
|
+
"sessTerminatedReason": "회의가 종료되었습니다",
|
|
429
|
+
"sessionRestarted": "연결 문제로 인해 통화가 재시작되었습니다.",
|
|
430
|
+
"shareAudio": "계속",
|
|
431
|
+
"shareAudioAltText": "원하는 콘텐츠를 공유하려면 \"브라우저 탭\"으로 이동하여 콘텐츠를 선택하고 \"오디오 공유\" 체크 표시를 활성화한 다음 \"공유\" 버튼을 클릭하십시오",
|
|
432
|
+
"shareAudioTitle": "오디오 공유 방법",
|
|
433
|
+
"shareAudioWarningD1": "오디오를 공유하기 전에 화면 공유를 중지해야 합니다.",
|
|
434
|
+
"shareAudioWarningD2": "화면 공유를 다시 시작하고 \"오디오 공유\" 옵션을 선택해야 합니다.",
|
|
435
|
+
"shareAudioWarningH1": "오디오만 공유하려면:",
|
|
436
|
+
"shareAudioWarningTitle": "오디오를 공유하기 전에 화면 공유를 중지해야 합니다",
|
|
437
|
+
"shareMediaWarningGenericH2": "화면과 오디오를 공유하려면",
|
|
438
|
+
"shareScreenWarningD1": "화면을 공유하기 전에 오디오 공유를 중지해야 합니다.",
|
|
439
|
+
"shareScreenWarningD2": "오디오 공유를 중지하고 화면 공유를 시작한 다음 \"오디오 공유\" 옵션을 선택해야 합니다.",
|
|
440
|
+
"shareScreenWarningH1": "화면만 공유하려면:",
|
|
441
|
+
"shareScreenWarningTitle": "화면을 공유하기 전에 오디오 공유를 중지해야 합니다",
|
|
442
|
+
"shareVideoConfirmPlay": "외부 웹사이트를 열려고 합니다. 계속하시겠습니까?",
|
|
443
|
+
"shareVideoConfirmPlayTitle": "{{name}}님이 동영상을 공유했습니다.",
|
|
444
|
+
"shareVideoLinkError": "올바른 YouTube 링크를 제공하십시오",
|
|
445
|
+
"shareVideoLinkStopped": "{{name}}님의 동영상이 중지되었습니다.",
|
|
446
|
+
"shareVideoTitle": "비디오 공유",
|
|
447
|
+
"shareYourScreen": "화면공유",
|
|
448
|
+
"shareYourScreenDisabled": "화면 공유가 비활성화 되었습니다.",
|
|
449
|
+
"sharedVideoDialogError": "오류: 잘못되었거나 금지된 URL",
|
|
450
|
+
"sharedVideoLinkPlaceholder": "YouTube 링크 또는 직접 동영상 링크",
|
|
451
|
+
"show": "보이기",
|
|
452
|
+
"start": "시작",
|
|
453
|
+
"startLiveStreaming": "라이브 스트리밍 시작",
|
|
454
|
+
"startRecording": "녹화 시작",
|
|
455
|
+
"startRemoteControlErrorMessage": "원격 제어 세션을 시작하는 동안 오류가 발생했습니다",
|
|
456
|
+
"stopLiveStreaming": "라이브 스트리밍 종료",
|
|
457
|
+
"stopRecording": "녹화 종료",
|
|
458
|
+
"stopRecordingWarning": "녹화를 중단하고 싶으십니까?",
|
|
459
|
+
"stopStreamingWarning": "라이브 스트리밍을 중단하고 싶으십니까?",
|
|
460
|
+
"streamKey": "라이브 스트리밍 키",
|
|
461
|
+
"thankYou": "{{appName}}을 이용해 주셔서 감사합니다!",
|
|
462
|
+
"token": "토큰",
|
|
463
|
+
"tokenAuthFailed": "죄송합니다. 통화에 참여하실 수 없습니다.",
|
|
464
|
+
"tokenAuthFailedReason": {
|
|
465
|
+
"audInvalid": "잘못된 `aud` 값입니다. `jitsi`여야 합니다.",
|
|
466
|
+
"contextNotFound": "`context` 객체가 페이로드에 없습니다.",
|
|
467
|
+
"expInvalid": "잘못된 `exp` 값입니다.",
|
|
468
|
+
"featureInvalid": "잘못된 기능: {{feature}}, 아직 구현되지 않았을 수 있습니다.",
|
|
469
|
+
"featureValueInvalid": "기능의 잘못된 값: {{feature}}.",
|
|
470
|
+
"featuresNotFound": "`features` 객체가 페이로드에 없습니다.",
|
|
471
|
+
"headerNotFound": "헤더가 없습니다.",
|
|
472
|
+
"issInvalid": "잘못된 `iss` 값입니다. `chat`이어야 합니다.",
|
|
473
|
+
"kidMismatch": "키 ID(kid)가 sub와 일치하지 않습니다.",
|
|
474
|
+
"kidNotFound": "키 ID(kid)가 없습니다.",
|
|
475
|
+
"nbfFuture": "`nbf` 값이 미래에 있습니다.",
|
|
476
|
+
"nbfInvalid": "잘못된 `nbf` 값입니다.",
|
|
477
|
+
"payloadNotFound": "페이로드가 없습니다.",
|
|
478
|
+
"tokenExpired": "토큰이 만료되었습니다."
|
|
479
|
+
},
|
|
480
|
+
"tokenAuthFailedTitle": "인증 실패",
|
|
481
|
+
"tokenAuthFailedWithReasons": "죄송합니다, 이 통화에 참여할 수 없습니다. 가능한 이유: {{reason}}",
|
|
482
|
+
"tokenAuthUnsupported": "토큰 URL은 지원되지 않습니다.",
|
|
483
|
+
"transcribing": "스크립트 작성 중",
|
|
484
|
+
"unlockRoom": "회의 비밀번호 제거",
|
|
485
|
+
"user": "사용자",
|
|
486
|
+
"userIdentifier": "사용자 식별자",
|
|
487
|
+
"userPassword": "사용자 비밀번호",
|
|
488
|
+
"verifyParticipantConfirm": "일치합니다",
|
|
489
|
+
"verifyParticipantDismiss": "일치하지 않습니다",
|
|
490
|
+
"verifyParticipantQuestion": "실험적: 참가자 {{participantName}}에게 동일한 내용이 동일한 순서로 표시되는지 확인하십시오.",
|
|
491
|
+
"verifyParticipantTitle": "사용자 확인",
|
|
492
|
+
"videoLink": "비디오 링크",
|
|
493
|
+
"viewUpgradeOptions": "업그레이드 옵션 보기",
|
|
494
|
+
"viewUpgradeOptionsContent": "녹화, 전사, RTMP 스트리밍 등과 같은 프리미엄 기능에 무제한으로 액세스하려면 요금제를 업그레이드해야 합니다.",
|
|
495
|
+
"viewUpgradeOptionsTitle": "프리미엄 기능을 발견했습니다!",
|
|
496
|
+
"whiteboardLimitContent": "죄송합니다, 동시 화이트보드 사용자 수 한도에 도달했습니다.",
|
|
497
|
+
"whiteboardLimitReference": "자세한 내용은",
|
|
498
|
+
"whiteboardLimitReferenceUrl": "당사 웹사이트",
|
|
499
|
+
"whiteboardLimitTitle": "화이트보드 사용 제한",
|
|
500
|
+
"yourEntireScreen": "전체 화면"
|
|
501
|
+
},
|
|
502
|
+
"documentSharing": {
|
|
503
|
+
"title": "문서 공유"
|
|
504
|
+
},
|
|
505
|
+
"e2ee": {
|
|
506
|
+
"labelToolTip": "이 통화의 오디오 및 비디오 통신은 종단 간 암호화됩니다"
|
|
507
|
+
},
|
|
508
|
+
"embedMeeting": {
|
|
509
|
+
"title": "이 회의를 임베드하기"
|
|
510
|
+
},
|
|
511
|
+
"feedback": {
|
|
512
|
+
"accessibilityLabel": {
|
|
513
|
+
"yourChoice": "귀하의 선택: {{rating}}"
|
|
514
|
+
},
|
|
515
|
+
"average": "보통",
|
|
516
|
+
"bad": "나쁨",
|
|
517
|
+
"detailsLabel": "더 자세히 알려주십시오",
|
|
518
|
+
"good": "좋음",
|
|
519
|
+
"rateExperience": "회의 경험 평가하기",
|
|
520
|
+
"star": "별",
|
|
521
|
+
"veryBad": "매우 나쁨",
|
|
522
|
+
"veryGood": "매우 좋음"
|
|
523
|
+
},
|
|
524
|
+
"filmstrip": {
|
|
525
|
+
"accessibilityLabel": {
|
|
526
|
+
"heading": "비디오 썸네일"
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
"giphy": {
|
|
530
|
+
"noResults": "결과를 찾을 수 없습니다 :(",
|
|
531
|
+
"search": "GIPHY 검색"
|
|
532
|
+
},
|
|
533
|
+
"incomingCall": {
|
|
534
|
+
"answer": "응답",
|
|
535
|
+
"audioCallTitle": "수신 전화",
|
|
536
|
+
"decline": "거절",
|
|
537
|
+
"productLabel": "Corptime Conference에서",
|
|
538
|
+
"videoCallTitle": "수신 화상 전화"
|
|
539
|
+
},
|
|
540
|
+
"info": {
|
|
541
|
+
"accessibilityLabel": "정보 보기",
|
|
542
|
+
"addPassword": "$t(lockRoomPassword) 추가",
|
|
543
|
+
"cancelPassword": "$t(lockRoomPassword) 취소",
|
|
544
|
+
"conferenceURL": "링크:",
|
|
545
|
+
"copyNumber": "번호 복사",
|
|
546
|
+
"country": "지역",
|
|
547
|
+
"dialANumber": "회의에 참여하려면 이 번호 중 하나를 누른 다음 PIN을 입력하십시오.",
|
|
548
|
+
"dialInConferenceID": "PIN:",
|
|
549
|
+
"dialInNotSupported": "죄송합니다. 현재 전화를 걸 수 없습니다.",
|
|
550
|
+
"dialInNumber": "전화 접속:",
|
|
551
|
+
"dialInSummaryError": "지금 전화 접속 정보를 가져 오는 중에 오류가 발생했습니다. 나중에 다시 시도하십시오.",
|
|
552
|
+
"dialInTollFree": "수신자 부담",
|
|
553
|
+
"genericError": "일반적인 오류가 발생했습니다",
|
|
554
|
+
"inviteLiveStream": "이 회의의 실시간 스트림을 보려면 이 링크를 클릭하십시오: {{url}}",
|
|
555
|
+
"invitePhone": "폰으로 참여하려면, 이것을 누르십시오: {{number}},,{{conferenceID}}#\n",
|
|
556
|
+
"invitePhoneAlternatives": "다른 전화 접속 번호를 찾으십니까?\n회의 전화 접속 번호 보기: {{url}}\n\n\n방 전화로도 전화 접속하는 경우, 오디오에 연결하지 않고 참여하세요: {{silentUrl}}",
|
|
557
|
+
"inviteSipEndpoint": "SIP 주소를 사용하여 참여하려면 다음을 입력하십시오: {{sipUri}}",
|
|
558
|
+
"inviteTextiOSInviteUrl": "다음 링크를 클릭하여 참여하세요: {{inviteUrl}}.",
|
|
559
|
+
"inviteTextiOSJoinSilent": "방 전화로 전화 접속하는 경우, 이 링크를 사용하여 오디오에 연결하지 않고 참여하세요: {{silentUrl}}.",
|
|
560
|
+
"inviteTextiOSPersonal": "{{name}}님이 회의에 초대했습니다.",
|
|
561
|
+
"inviteTextiOSPhone": "전화로 참여하려면 이 번호를 사용하세요: {{number}},,{{conferenceID}}#. 다른 번호를 찾고 있다면, 전체 목록은 다음과 같습니다: {{didUrl}}.",
|
|
562
|
+
"inviteURLFirstPartGeneral": "회의에 초대되었습니다.",
|
|
563
|
+
"inviteURLFirstPartPersonal": "{{name}}님이 회의에 초대하였습니다.\n",
|
|
564
|
+
"inviteURLSecondPart": "\n회의에 참여하기:\n{{url}}\n",
|
|
565
|
+
"label": "회의 정보",
|
|
566
|
+
"liveStreamURL": "실시간 스트리밍:",
|
|
567
|
+
"moreNumbers": "더 많은 번호",
|
|
568
|
+
"noNumbers": "전화 접속 번호 없음",
|
|
569
|
+
"noPassword": "없음",
|
|
570
|
+
"noRoom": "전화 접속이 가능한 방을 지정하지 않았습니다",
|
|
571
|
+
"noWhiteboard": "화이트보드를 로드할 수 없습니다.",
|
|
572
|
+
"numbers": "전화 접속 번호",
|
|
573
|
+
"password": "비밀번호",
|
|
574
|
+
"reachedLimit": "요금제 한도에 도달했습니다.",
|
|
575
|
+
"sip": "SIP 주소",
|
|
576
|
+
"sipAudioOnly": "SIP 오디오 전용 주소",
|
|
577
|
+
"title": "공유",
|
|
578
|
+
"tooltip": "링크 공유 및 회의에 대한 정보",
|
|
579
|
+
"upgradeOptions": "업그레이드 옵션을 확인하세요",
|
|
580
|
+
"whiteboardError": "화이트보드를 로드하는 중 오류가 발생했습니다. 나중에 다시 시도하십시오."
|
|
581
|
+
},
|
|
582
|
+
"inlineDialogFailure": {
|
|
583
|
+
"msg": "약간의 문제가 있습니다",
|
|
584
|
+
"retry": "다시 시도",
|
|
585
|
+
"support": "지원",
|
|
586
|
+
"supportMsg": "문제가 계속 발생하면 연락하세요"
|
|
587
|
+
},
|
|
588
|
+
"inviteDialog": {
|
|
589
|
+
"alertText": "일부 참가자를 초대하지 못했습니다.",
|
|
590
|
+
"header": "초대",
|
|
591
|
+
"searchCallOnlyPlaceholder": "전화 번호 입력",
|
|
592
|
+
"searchPeopleOnlyPlaceholder": "참가자 검색",
|
|
593
|
+
"searchPlaceholder": "참가자 또는 전화 번호",
|
|
594
|
+
"send": "전송"
|
|
595
|
+
},
|
|
596
|
+
"jitsiHome": "{{logo}} 로고, 홈페이지 링크",
|
|
597
|
+
"keyboardShortcuts": {
|
|
598
|
+
"focusLocal": "자신의 동영상에 포커스",
|
|
599
|
+
"focusRemote": "다른 발신자의 동영상에 포커스",
|
|
600
|
+
"fullScreen": "전체화면 표시 또는 종료",
|
|
601
|
+
"giphyMenu": "GIPHY 메뉴 전환",
|
|
602
|
+
"keyboardShortcuts": "키보드 단축키",
|
|
603
|
+
"localRecording": "로컬 녹화 컨트롤 표시 또는 숨기기",
|
|
604
|
+
"mute": "마이크 음소거 또는 음소거 해제",
|
|
605
|
+
"pushToTalk": "대화 요청",
|
|
606
|
+
"raiseHand": "말하기 요청/해제",
|
|
607
|
+
"showSpeakerStats": "접속자 통계 표시",
|
|
608
|
+
"toggleChat": "채팅 표시 또는 숨기기",
|
|
609
|
+
"toggleFilmstrip": "동영상 표시 또는 숨기기",
|
|
610
|
+
"toggleParticipantsPane": "참가자 창 표시 또는 숨기기",
|
|
611
|
+
"toggleScreensharing": "카메라와 화면 공유간에 전환",
|
|
612
|
+
"toggleShortcuts": "도움말 메뉴 표시 또는 숨기기",
|
|
613
|
+
"videoMute": "카메라 시작 또는 중지"
|
|
614
|
+
},
|
|
615
|
+
"largeVideo": {
|
|
616
|
+
"screenIsShared": "화면을 공유 중입니다",
|
|
617
|
+
"showMeWhatImSharing": "내가 공유하는 내용을 보여줘"
|
|
618
|
+
},
|
|
619
|
+
"liveStreaming": {
|
|
620
|
+
"busy": "스트리밍 자원을 확보하기 위해 노력하고 있습니다. 몇 분 후에 다시 시도하십시오.",
|
|
621
|
+
"busyTitle": "모든 스트리머가 현재 사용 중입니다",
|
|
622
|
+
"changeSignIn": "계정을 전환하십시오",
|
|
623
|
+
"choose": "실시간 스트리밍을 선택하세요",
|
|
624
|
+
"chooseCTA": "스트리밍 옵션을 선택하십시오. 현재 {{email}}(으)로 로그인되어 있습니다.",
|
|
625
|
+
"enterStreamKey": "YouTube 실시간 스트리밍 키를 입력하십시오",
|
|
626
|
+
"error": "실시간 스트리밍에 실패했습니다. 다시 시도하십시오.",
|
|
627
|
+
"errorAPI": "YouTube 방송에 액세스하는 중에 오류가 발생했습니다. 다시 로그인하십시오.",
|
|
628
|
+
"errorLiveStreamNotEnabled": "{{email}}에 의해 라이브 스트리밍이 활성화되지 않았습니다. 라이브 스트리밍을 활성화하거나 라이브 스트리밍이 활성화된 계정으로 로그인하십시오.",
|
|
629
|
+
"expandedOff": "라이브 스트리밍이 중지되었습니다",
|
|
630
|
+
"expandedOn": "현재 회의가 YouTube로 스트리밍되고 있습니다.",
|
|
631
|
+
"expandedPending": "라이브 스트리밍이 시작됩니다…",
|
|
632
|
+
"failedToStart": "실시간 스트리밍 시작 실패",
|
|
633
|
+
"getStreamKeyManually": "실시간 스트림을 가져올 수 없습니다. YouTube에서 실시간 스트림 키를 받아보세요.",
|
|
634
|
+
"googlePrivacyPolicy": "Google 개인 정보 보호 정책",
|
|
635
|
+
"inProgress": "녹화 또는 실시간 스트리밍 진행 중",
|
|
636
|
+
"invalidStreamKey": "라이브 스트림 키가 잘못되었을 수 있습니다.",
|
|
637
|
+
"limitNotificationDescriptionNative": "스트리밍이 {{limit}}분으로 제한됩니다. 무제한 스트리밍을 사용하려면 {{app}}을 시도해 보세요.",
|
|
638
|
+
"limitNotificationDescriptionWeb": "수요가 많아 스트리밍이 {{limit}}분으로 제한됩니다. 무제한 스트리밍을 사용하려면 <a href={{url}} rel='noopener noreferrer' target='_blank'>{{app}}</a>을 시도해 보세요.",
|
|
639
|
+
"off": "실시간 스트리밍이 중지됨",
|
|
640
|
+
"offBy": "{{name}}님이 실시간 스트리밍을 중지했습니다",
|
|
641
|
+
"on": "실시간 스트리밍",
|
|
642
|
+
"onBy": "{{name}}님이 실시간 스트리밍을 시작했습니다",
|
|
643
|
+
"pending": "실시간 스트리밍 시작…",
|
|
644
|
+
"policyError": "실시간 스트림을 너무 빨리 시작하려고 했습니다. 나중에 다시 시도하십시오!",
|
|
645
|
+
"serviceName": "실시간 스트리밍 서비스",
|
|
646
|
+
"sessionAlreadyActive": "이 세션은 이미 녹화되거나 실시간 스트리밍 중입니다.",
|
|
647
|
+
"signIn": "Google로 로그인",
|
|
648
|
+
"signInCTA": "YouTube에서 로그인하거나 실시간 스트리밍 키를 입력하십시오",
|
|
649
|
+
"signOut": "로그아웃",
|
|
650
|
+
"signedInAs": "현재 다음 계정으로 로그인되어 있습니다.",
|
|
651
|
+
"start": "실시간 스트리밍 시작",
|
|
652
|
+
"streamIdHelp": "도움말?",
|
|
653
|
+
"title": "실시간 스트리밍",
|
|
654
|
+
"unavailableTitle": "실시간 스트리밍을 사용할 수 없음",
|
|
655
|
+
"youtubeTerms": "YouTube 서비스 약관"
|
|
656
|
+
},
|
|
657
|
+
"lobby": {
|
|
658
|
+
"backToKnockModeButton": "참여 요청",
|
|
659
|
+
"chat": "채팅",
|
|
660
|
+
"dialogTitle": "로비 모드",
|
|
661
|
+
"disableDialogContent": "로비 모드가 현재 활성화되어 있습니다. 이 기능은 원치 않는 참가자가 회의에 참여하지 못하도록 보장합니다. 이를 비활성화하시겠습니까?",
|
|
662
|
+
"disableDialogSubmit": "비활성화",
|
|
663
|
+
"emailField": "이메일 주소를 입력하세요",
|
|
664
|
+
"enableDialogPasswordField": "비밀번호 설정 (선택 사항)",
|
|
665
|
+
"enableDialogSubmit": "활성화",
|
|
666
|
+
"enableDialogText": "로비 모드는 중재자의 승인을 거쳐서만 참가자들이 회의에 입장할 수 있도록 보호합니다.",
|
|
667
|
+
"enterPasswordButton": "회의 비밀번호 입력",
|
|
668
|
+
"enterPasswordTitle": "회의에 참여하려면 비밀번호를 입력하세요",
|
|
669
|
+
"errorMissingPassword": "회의 비밀번호를 입력하세요",
|
|
670
|
+
"invalidPassword": "잘못된 비밀번호",
|
|
671
|
+
"joinRejectedMessage": "중재자가 귀하의 참여 요청을 거부했습니다.",
|
|
672
|
+
"joinRejectedTitle": "참여 요청 거부됨",
|
|
673
|
+
"joinTitle": "회의 참여",
|
|
674
|
+
"joinWithPasswordMessage": "비밀번호로 참여하려고 시도 중입니다, 잠시만 기다려 주세요…",
|
|
675
|
+
"joiningMessage": "중재자가 참여 요청을 승인하면 회의에 참여하게 됩니다.",
|
|
676
|
+
"joiningTitle": "회의 참여 요청 중…",
|
|
677
|
+
"joiningWithPasswordTitle": "비밀번호로 참여 중…",
|
|
678
|
+
"knockButton": "참여 요청",
|
|
679
|
+
"knockTitle": "누군가 회의에 참여를 요청했습니다",
|
|
680
|
+
"knockingParticipantList": "참여 요청한 참가자 목록",
|
|
681
|
+
"lobbyChatStartedNotification": "{{moderator}}가 {{attendee}}와 로비 채팅을 시작했습니다",
|
|
682
|
+
"lobbyChatStartedTitle": "{{moderator}}가 당신과 로비 채팅을 시작했습니다.",
|
|
683
|
+
"lobbyClosed": "로비 방이 닫혔습니다.",
|
|
684
|
+
"nameField": "이름을 입력하세요",
|
|
685
|
+
"notificationLobbyAccessDenied": "{{targetParticipantName}}가 {{originParticipantName}}에 의해 참여가 거부되었습니다.",
|
|
686
|
+
"notificationLobbyAccessGranted": "{{targetParticipantName}}가 {{originParticipantName}}에 의해 참여가 승인되었습니다.",
|
|
687
|
+
"notificationLobbyDisabled": "로비가 {{originParticipantName}}에 의해 비활성화되었습니다.",
|
|
688
|
+
"notificationLobbyEnabled": "로비가 {{originParticipantName}}에 의해 활성화되었습니다.",
|
|
689
|
+
"notificationTitle": "로비",
|
|
690
|
+
"passwordJoinButton": "비밀번호로 참여",
|
|
691
|
+
"title": "로비",
|
|
692
|
+
"toggleLabel": "로비 활성화"
|
|
693
|
+
},
|
|
694
|
+
"localRecording": {
|
|
695
|
+
"clientState": {
|
|
696
|
+
"off": "꺼짐",
|
|
697
|
+
"on": "켜짐",
|
|
698
|
+
"unknown": "알 수 없음"
|
|
699
|
+
},
|
|
700
|
+
"dialogTitle": "로컬 녹화 컨트롤",
|
|
701
|
+
"duration": "기간",
|
|
702
|
+
"durationNA": "N/A",
|
|
703
|
+
"encoding": "인코딩",
|
|
704
|
+
"label": "LOR",
|
|
705
|
+
"labelToolTip": "로컬 녹화가 진행 중입니다",
|
|
706
|
+
"localRecording": "로컬 녹화",
|
|
707
|
+
"me": "나",
|
|
708
|
+
"messages": {
|
|
709
|
+
"engaged": "로컬 녹화 시작됨.",
|
|
710
|
+
"finished": "녹화 세션 {{token}}이 완료되었습니다. 녹화된 파일을 중재자에게 보내주세요.",
|
|
711
|
+
"finishedModerator": "녹화 세션 {{token}}이 완료되었습니다. 로컬 트랙의 녹화가 저장되었습니다. 다른 참가자에게 녹화를 제출하도록 요청하세요.",
|
|
712
|
+
"notModerator": "당신은 중재자가 아닙니다. 로컬 녹화를 시작하거나 중지할 수 없습니다."
|
|
713
|
+
},
|
|
714
|
+
"moderator": "중재자",
|
|
715
|
+
"no": "아니요",
|
|
716
|
+
"participant": "참가자",
|
|
717
|
+
"participantStats": "참가자 통계",
|
|
718
|
+
"selectTabTitle": "🎥 녹화를 위해 이 탭을 선택하세요",
|
|
719
|
+
"sessionToken": "세션 토큰",
|
|
720
|
+
"start": "녹화 시작",
|
|
721
|
+
"stop": "녹화 종료",
|
|
722
|
+
"stopping": "녹화 중지 중",
|
|
723
|
+
"wait": "녹화를 저장하는 동안 기다려 주세요",
|
|
724
|
+
"yes": "예"
|
|
725
|
+
},
|
|
726
|
+
"lockRoomPassword": "비밀번호",
|
|
727
|
+
"lockRoomPasswordUppercase": "비밀번호",
|
|
728
|
+
"lonelyMeetingExperience": {
|
|
729
|
+
"button": "초대하기",
|
|
730
|
+
"youAreAlone": "회의에 참여자가 없습니다."
|
|
731
|
+
},
|
|
732
|
+
"me": "나",
|
|
733
|
+
"notify": {
|
|
734
|
+
"OldElectronAPPTitle": "보안 취약성!",
|
|
735
|
+
"allowAction": "허용",
|
|
736
|
+
"allowedUnmute": "마이크 음소거 해제, 카메라 시작 또는 화면 공유를 할 수 있습니다.",
|
|
737
|
+
"audioUnmuteBlockedDescription": "시스템 제한으로 인해 마이크 음소거 해제 작업이 일시적으로 차단되었습니다.",
|
|
738
|
+
"audioUnmuteBlockedTitle": "마이크 음소거 해제 차단됨!",
|
|
739
|
+
"chatMessages": "채팅 메시지",
|
|
740
|
+
"connectedOneMember": "{{name}}님이 회의에 참여했습니다.",
|
|
741
|
+
"connectedThreePlusMembers": "{{name}}님 외 {{count}}명이 회의에 참여했습니다.",
|
|
742
|
+
"connectedTwoMembers": "{{first}}님과 {{second}}님이 회의에 참여했습니다.",
|
|
743
|
+
"connectionFailed": "연결 실패. 나중에 다시 시도하십시오!",
|
|
744
|
+
"dataChannelClosed": "비디오 품질이 저하될 수 있습니다",
|
|
745
|
+
"dataChannelClosedDescription": "브리지 채널이 다운되어 비디오 품질이 가장 낮은 설정으로 제한될 수 있습니다.",
|
|
746
|
+
"dataChannelClosedDescriptionWithAudio": "브리지 채널이 다운되어 오디오 및 비디오에 장애가 발생할 수 있습니다.",
|
|
747
|
+
"dataChannelClosedWithAudio": "오디오 및 비디오 품질이 저하될 수 있습니다",
|
|
748
|
+
"disabledIframe": "임베딩은 데모 목적에만 사용되므로 이 통화는 {{timeout}}분 후에 연결이 끊어집니다.",
|
|
749
|
+
"disabledIframeSecondary": "{{domain}} 임베딩은 데모 목적에만 사용되므로 이 통화는 {{timeout}}분 후에 연결이 끊어집니다. 프로덕션 임베딩을 위해 <a href='{{jaasDomain}}' rel='noopener noreferrer' target='_blank'>Jitsi as a Service</a>를 사용하세요!",
|
|
750
|
+
"disconnected": "연결이 끊김",
|
|
751
|
+
"displayNotifications": "다음에 대한 알림 표시",
|
|
752
|
+
"dontRemindMe": "다시 알리지 않기",
|
|
753
|
+
"focus": "컨퍼런스 포커스",
|
|
754
|
+
"focusFail": "{{component}}을 사용할 수 없음 - {{ms}} 초 후에 다시 시도하십시오",
|
|
755
|
+
"gifsMenu": "GIPHY",
|
|
756
|
+
"groupTitle": "알림",
|
|
757
|
+
"hostAskedUnmute": "중재자가 말하기를 원합니다",
|
|
758
|
+
"invalidTenant": "잘못된 테넌트",
|
|
759
|
+
"invalidTenantHyphenDescription": "사용 중인 테넌트가 잘못되었습니다('-'로 시작하거나 끝남).",
|
|
760
|
+
"invalidTenantLengthDescription": "사용 중인 테넌트가 너무 깁니다.",
|
|
761
|
+
"invitedOneMember": "{{name}}님이 초대되었습니다.",
|
|
762
|
+
"invitedThreePlusMembers": "{{name}}님 외 {{count}}명이 초대되었습니다.",
|
|
763
|
+
"invitedTwoMembers": "{{first}}님과 {{second}}님이 초대되었습니다.",
|
|
764
|
+
"joinMeeting": "참여하기",
|
|
765
|
+
"kickParticipant": "{{kicker}}님이 {{kicked}}님을 추방했습니다.",
|
|
766
|
+
"leftOneMember": "{{name}}님이 회의를 떠났습니다",
|
|
767
|
+
"leftThreePlusMembers": "{{name}}님 외 여러 명이 회의를 떠났습니다",
|
|
768
|
+
"leftTwoMembers": "{{first}}님과 {{second}}님이 회의를 떠났습니다",
|
|
769
|
+
"linkToSalesforce": "Salesforce에 연결",
|
|
770
|
+
"linkToSalesforceDescription": "회의 요약을 Salesforce 객체에 연결할 수 있습니다.",
|
|
771
|
+
"linkToSalesforceError": "회의를 Salesforce에 연결하지 못했습니다",
|
|
772
|
+
"linkToSalesforceKey": "이 회의 연결",
|
|
773
|
+
"linkToSalesforceProgress": "회의를 Salesforce에 연결 중…",
|
|
774
|
+
"linkToSalesforceSuccess": "회의가 Salesforce에 연결되었습니다",
|
|
775
|
+
"localRecordingStarted": "{{name}}님이 로컬 녹화를 시작했습니다.",
|
|
776
|
+
"localRecordingStopped": "{{name}}님이 로컬 녹화를 중지했습니다.",
|
|
777
|
+
"me": "나",
|
|
778
|
+
"moderationInEffectCSDescription": "화면을 공유하려면 손을 들어주세요.",
|
|
779
|
+
"moderationInEffectCSTitle": "화면 공유가 중재자에 의해 차단되었습니다",
|
|
780
|
+
"moderationInEffectDescription": "말씀하시려면 손을 들어주세요.",
|
|
781
|
+
"moderationInEffectTitle": "마이크가 중재자에 의해 음소거되었습니다",
|
|
782
|
+
"moderationInEffectVideoDescription": "카메라를 시작하려면 손을 들어주세요.",
|
|
783
|
+
"moderationInEffectVideoTitle": "카메라가 중재자에 의해 차단되었습니다",
|
|
784
|
+
"moderationRequestFromModerator": "호스트가 음소거 해제를 원합니다",
|
|
785
|
+
"moderationRequestFromParticipant": "말하고 싶어합니다",
|
|
786
|
+
"moderationStartedTitle": "중재 시작됨",
|
|
787
|
+
"moderationStoppedTitle": "중재 중지됨",
|
|
788
|
+
"moderationToggleDescription": "{{participantDisplayName}}에 의해",
|
|
789
|
+
"moderator": "방장 권한이 부여되었습니다!",
|
|
790
|
+
"muted": "음소거로 대화가 시작되었습니다",
|
|
791
|
+
"mutedRemotelyDescription": "말할 준비가되면 언제든지 음소거를 해제 할 수 있습니다.",
|
|
792
|
+
"mutedRemotelyTitle": "{{participantDisplayName}}에 의해 음소거되었습니다!",
|
|
793
|
+
"mutedTitle": "음소거 상태입니다!",
|
|
794
|
+
"newDeviceAction": "사용",
|
|
795
|
+
"newDeviceAudioTitle": "새 오디오 장치 감지",
|
|
796
|
+
"newDeviceCameraTitle": "새 카메라 감지",
|
|
797
|
+
"nextToSpeak": "당신은 다음 발언자입니다",
|
|
798
|
+
"noiseSuppressionDesktopAudioDescription": "추가 노이즈 억제는 데스크톱 오디오 공유 중에는 활성화할 수 없습니다. 비활성화하고 다시 시도하십시오.",
|
|
799
|
+
"noiseSuppressionFailedTitle": "추가 노이즈 억제를 시작하지 못했습니다",
|
|
800
|
+
"noiseSuppressionStereoDescription": "추가 노이즈 억제는 현재 스테레오 오디오와 함께 지원되지 않습니다.",
|
|
801
|
+
"oldElectronClientDescription1": "보안 취약성이 있는 오래된 Jitsi Meet 클라이언트를 사용하고 있는 것 같습니다. 최신 빌드로 업데이트하세요",
|
|
802
|
+
"oldElectronClientDescription2": "최신 빌드",
|
|
803
|
+
"oldElectronClientDescription3": "지금!",
|
|
804
|
+
"participantWantsToJoin": "회의에 참여하려고 합니다",
|
|
805
|
+
"participantsWantToJoin": "회의에 참여하려고 합니다",
|
|
806
|
+
"passwordRemovedRemotely": "다른 참가자가 $t(lockRoomPasswordUppercase)를 제거했습니다.",
|
|
807
|
+
"passwordSetRemotely": "다른 참가자가 $t(lockRoomPasswordUppercase)를 설정했습니다.",
|
|
808
|
+
"raiseHandAction": "손 들기",
|
|
809
|
+
"raisedHand": "{{name}}님이 말하고 싶어합니다.",
|
|
810
|
+
"raisedHands": "{{participantName}}님과 {{raisedHands}}명이 더",
|
|
811
|
+
"reactionSounds": "소리 비활성화",
|
|
812
|
+
"reactionSoundsForAll": "모든 사람의 소리 비활성화",
|
|
813
|
+
"screenShareNoAudio": "창 선택 화면에서 오디오 공유 상자가 선택되지 않았습니다.",
|
|
814
|
+
"screenShareNoAudioTitle": "시스템 오디오를 공유할 수 없습니다!",
|
|
815
|
+
"screenSharingAudioOnlyDescription": "화면을 공유하면 \"최적의 성능\" 모드에 영향을 주며 더 많은 대역폭을 사용하게 됩니다.",
|
|
816
|
+
"screenSharingAudioOnlyTitle": "\"최적의 성능\" 모드",
|
|
817
|
+
"selfViewTitle": "설정에서 언제든지 셀프뷰를 다시 표시할 수 있습니다",
|
|
818
|
+
"somebody": "누군가",
|
|
819
|
+
"startSilentDescription": "오디오를 사용하려면 회의에 다시 참여하세요.",
|
|
820
|
+
"startSilentTitle": "오디오 출력없이 참여했습니다!",
|
|
821
|
+
"suboptimalBrowserWarning": "여기에서 회의 경험이 좋지 않을 것 같습니다. 이를 개선하기 위해 노력하고 있지만 그때까지 <a href='{{recommendedBrowserPageLink}}' target='_blank'>완전히 지원되는 브라우저</a> 중 하나를 사용해보세요.",
|
|
822
|
+
"suboptimalExperienceTitle": "브라우저 경고",
|
|
823
|
+
"suggestRecordingAction": "시작",
|
|
824
|
+
"suggestRecordingDescription": "녹화를 시작하시겠습니까?",
|
|
825
|
+
"suggestRecordingTitle": "이 회의를 녹화합니다",
|
|
826
|
+
"unmute": "음소거 해제",
|
|
827
|
+
"videoMutedRemotelyDescription": "언제든지 카메라를 다시 켤 수 있습니다.",
|
|
828
|
+
"videoMutedRemotelyTitle": "{{participantDisplayName}}에 의해 카메라가 비활성화되었습니다!",
|
|
829
|
+
"videoUnmuteBlockedDescription": "카메라 음소거 해제 및 화면 공유 작업이 시스템 제한으로 인해 일시적으로 차단되었습니다.",
|
|
830
|
+
"videoUnmuteBlockedTitle": "카메라 음소거 해제 및 화면 공유 차단됨!",
|
|
831
|
+
"viewLobby": "로비 보기",
|
|
832
|
+
"viewParticipants": "참가자 보기",
|
|
833
|
+
"viewVisitors": "방문자 보기",
|
|
834
|
+
"waitingParticipants": "{{waitingParticipants}}명",
|
|
835
|
+
"waitingVisitors": "대기열에서 대기 중인 방문자: {{waitingVisitors}}",
|
|
836
|
+
"waitingVisitorsTitle": "회의가 아직 시작되지 않았습니다!",
|
|
837
|
+
"whiteboardLimitDescription": "진행 상황을 저장하세요. 사용자 한도에 곧 도달하여 화이트보드가 닫힐 것입니다.",
|
|
838
|
+
"whiteboardLimitTitle": "화이트보드 사용"
|
|
839
|
+
},
|
|
840
|
+
"participantsPane": {
|
|
841
|
+
"actions": {
|
|
842
|
+
"admit": "승인",
|
|
843
|
+
"admitAll": "모두 승인",
|
|
844
|
+
"allow": "참가자에게 허용:",
|
|
845
|
+
"allowVideo": "비디오 허용",
|
|
846
|
+
"askUnmute": "음소거 해제 요청",
|
|
847
|
+
"audioModeration": "스스로 음소거 해제",
|
|
848
|
+
"blockEveryoneMicCamera": "모두의 마이크와 카메라 차단",
|
|
849
|
+
"breakoutRooms": "분할 회의실",
|
|
850
|
+
"goLive": "실시간 방송",
|
|
851
|
+
"invite": "사람 초대",
|
|
852
|
+
"lowerAllHands": "모든 손 내리기",
|
|
853
|
+
"lowerHand": "손 내리기",
|
|
854
|
+
"moreModerationActions": "더 많은 중재 옵션",
|
|
855
|
+
"moreModerationControls": "더 많은 중재 컨트롤",
|
|
856
|
+
"moreParticipantOptions": "더 많은 참가자 옵션",
|
|
857
|
+
"mute": "음소거",
|
|
858
|
+
"muteAll": "모두 음소거",
|
|
859
|
+
"muteEveryoneElse": "다른 사람 모두 음소거",
|
|
860
|
+
"reject": "거부",
|
|
861
|
+
"stopEveryonesVideo": "모두의 비디오 중지",
|
|
862
|
+
"stopVideo": "비디오 중지",
|
|
863
|
+
"unblockEveryoneMicCamera": "모두의 마이크와 카메라 차단 해제",
|
|
864
|
+
"videoModeration": "자신의 비디오 시작"
|
|
865
|
+
},
|
|
866
|
+
"close": "닫기",
|
|
867
|
+
"headings": {
|
|
868
|
+
"lobby": "로비 ({{count}})",
|
|
869
|
+
"participantsList": "회의 참가자 ({{count}})",
|
|
870
|
+
"visitorInQueue": " (대기 중 {{count}})",
|
|
871
|
+
"visitorRequests": " (요청 {{count}})",
|
|
872
|
+
"visitors": "방문자 {{count}}",
|
|
873
|
+
"waitingLobby": "로비에서 대기 중 ({{count}})"
|
|
874
|
+
},
|
|
875
|
+
"search": "참가자 검색",
|
|
876
|
+
"title": "참가자"
|
|
877
|
+
},
|
|
878
|
+
"passwordDigitsOnly": "최대 {{number}} 자리",
|
|
879
|
+
"passwordSetRemotely": "다른 참가자가 설정",
|
|
880
|
+
"pinParticipant": "{{participantName}} - 고정",
|
|
881
|
+
"pinnedParticipant": "참가자가 고정되었습니다",
|
|
882
|
+
"polls": {
|
|
883
|
+
"answer": {
|
|
884
|
+
"edit": "편집",
|
|
885
|
+
"send": "보내기",
|
|
886
|
+
"skip": "건너뛰기",
|
|
887
|
+
"submit": "제출"
|
|
888
|
+
},
|
|
889
|
+
"by": "{{name}}님이 작성",
|
|
890
|
+
"closeButton": "투표 종료",
|
|
891
|
+
"create": {
|
|
892
|
+
"addOption": "옵션 추가",
|
|
893
|
+
"answerPlaceholder": "옵션 {{index}}",
|
|
894
|
+
"cancel": "취소",
|
|
895
|
+
"create": "투표 만들기",
|
|
896
|
+
"pollOption": "투표 옵션 {{index}}",
|
|
897
|
+
"pollQuestion": "투표 질문",
|
|
898
|
+
"questionPlaceholder": "질문을 입력하세요",
|
|
899
|
+
"removeOption": "옵션 제거",
|
|
900
|
+
"save": "저장",
|
|
901
|
+
"send": "보내기"
|
|
902
|
+
},
|
|
903
|
+
"errors": {
|
|
904
|
+
"notUniqueOption": "옵션은 고유해야합니다"
|
|
905
|
+
},
|
|
906
|
+
"notification": {
|
|
907
|
+
"description": "투표 탭을 열어 투표하세요",
|
|
908
|
+
"title": "새로운 투표가 이 회의에 추가되었습니다"
|
|
909
|
+
},
|
|
910
|
+
"results": {
|
|
911
|
+
"changeVote": "투표 변경",
|
|
912
|
+
"empty": "회의에 아직 투표가 없습니다. 여기에서 투표를 시작하세요!",
|
|
913
|
+
"hideDetailedResults": "세부 정보 숨기기",
|
|
914
|
+
"showDetailedResults": "세부 정보 보기",
|
|
915
|
+
"vote": "투표"
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
"poweredby": "제공:",
|
|
919
|
+
"prejoin": {
|
|
920
|
+
"audioAndVideoError": "오디오 및 비디오 오류:",
|
|
921
|
+
"audioDeviceProblem": "오디오 장치에 문제가 있습니다",
|
|
922
|
+
"audioOnlyError": "오디오 오류:",
|
|
923
|
+
"audioTrackError": "오디오 트랙을 생성할 수 없습니다.",
|
|
924
|
+
"callMe": "나에게 전화하기",
|
|
925
|
+
"callMeAtNumber": "이 번호로 전화하기:",
|
|
926
|
+
"calling": "전화 중",
|
|
927
|
+
"configuringDevices": "장치 구성 중…",
|
|
928
|
+
"connectedWithAudioQ": "오디오에 연결되어 있습니까?",
|
|
929
|
+
"connection": {
|
|
930
|
+
"failed": "연결 테스트 실패!",
|
|
931
|
+
"good": "인터넷 연결이 좋아 보입니다!",
|
|
932
|
+
"nonOptimal": "인터넷 연결이 최적이 아닙니다",
|
|
933
|
+
"poor": "인터넷 연결이 좋지 않습니다",
|
|
934
|
+
"running": "연결 테스트 실행 중…"
|
|
935
|
+
},
|
|
936
|
+
"connectionDetails": {
|
|
937
|
+
"audioClipping": "오디오가 클리핑될 것으로 예상됩니다.",
|
|
938
|
+
"audioHighQuality": "오디오가 우수한 품질일 것으로 예상됩니다.",
|
|
939
|
+
"audioLowNoVideo": "오디오 품질이 낮고 비디오는 없을 것으로 예상됩니다.",
|
|
940
|
+
"goodQuality": "멋져요! 미디어 품질이 훌륭할 것입니다.",
|
|
941
|
+
"noMediaConnectivity": "이 테스트를 위해 미디어 연결성을 설정할 수 있는 방법을 찾을 수 없었습니다. 이는 일반적으로 방화벽이나 NAT로 인해 발생합니다.",
|
|
942
|
+
"noVideo": "비디오가 매우 나쁠 것으로 예상됩니다.",
|
|
943
|
+
"testFailed": "연결 테스트에서 예기치 않은 문제가 발생했지만 이것이 귀하의 경험에 영향을 미치지 않을 수 있습니다.",
|
|
944
|
+
"undetectable": "브라우저에서 여전히 전화를 걸 수 없는 경우, 스피커, 마이크 및 카메라가 제대로 설정되었는지 확인하고 브라우저에 마이크 및 카메라 사용 권한을 부여했는지 확인하고 브라우저 버전이 최신인지 확인하는 것이 좋습니다. 여전히 통화에 문제가 있는 경우 웹 애플리케이션 개발자에게 문의해야 합니다.",
|
|
945
|
+
"veryPoorConnection": "통화 품질이 정말 나쁠 것으로 예상됩니다.",
|
|
946
|
+
"videoFreezing": "비디오가 멈추거나, 검은 화면이 되거나, 픽셀화될 것으로 예상됩니다.",
|
|
947
|
+
"videoHighQuality": "비디오 품질이 좋을 것으로 예상됩니다.",
|
|
948
|
+
"videoLowQuality": "프레임 속도와 해상도 측면에서 비디오 품질이 낮을 것으로 예상됩니다.",
|
|
949
|
+
"videoTearing": "비디오가 픽셀화되거나 시각적 결함이 있을 것으로 예상됩니다."
|
|
950
|
+
},
|
|
951
|
+
"copyAndShare": "회의 링크 복사 및 공유",
|
|
952
|
+
"dialInMeeting": "회의에 전화 접속",
|
|
953
|
+
"dialInPin": "회의에 전화 접속하고 PIN 코드를 입력하세요:",
|
|
954
|
+
"dialing": "전화 거는 중",
|
|
955
|
+
"doNotShow": "이 화면 다시 표시하지 않기",
|
|
956
|
+
"errorDialOut": "전화를 걸 수 없습니다",
|
|
957
|
+
"errorDialOutDisconnected": "전화를 걸 수 없습니다. 연결 끊김",
|
|
958
|
+
"errorDialOutFailed": "전화를 걸 수 없습니다. 통화 실패",
|
|
959
|
+
"errorDialOutStatus": "전화 걸기 상태 가져오기 오류",
|
|
960
|
+
"errorMissingName": "회의에 참여하려면 이름을 입력하세요",
|
|
961
|
+
"errorNoPermissions": "마이크 및 카메라 액세스를 허용해야 합니다",
|
|
962
|
+
"errorStatusCode": "전화 걸기 오류, 상태 코드: {{status}}",
|
|
963
|
+
"errorValidation": "번호 검증 실패",
|
|
964
|
+
"iWantToDialIn": "전화로 참여하고 싶습니다",
|
|
965
|
+
"initiated": "통화 시작됨",
|
|
966
|
+
"joinAudioByPhone": "전화로 오디오 참여",
|
|
967
|
+
"joinMeeting": "회의 참여",
|
|
968
|
+
"joinMeetingInLowBandwidthMode": "낮은 대역폭 모드로 참여",
|
|
969
|
+
"joinWithoutAudio": "오디오 없이 참여",
|
|
970
|
+
"keyboardShortcuts": "키보드 단축키 사용",
|
|
971
|
+
"linkCopied": "클립보드에 링크가 복사되었습니다",
|
|
972
|
+
"lookGood": "장치가 제대로 작동하고 있습니다",
|
|
973
|
+
"or": "또는",
|
|
974
|
+
"premeeting": "회의 전",
|
|
975
|
+
"proceedAnyway": "그래도 진행",
|
|
976
|
+
"recordingWarning": "다른 참가자가 이 통화를 녹화하고 있을 수 있습니다",
|
|
977
|
+
"screenSharingError": "화면 공유 오류:",
|
|
978
|
+
"startWithPhone": "전화 오디오로 시작",
|
|
979
|
+
"unsafeRoomConsent": "위험을 이해하며 회의에 참여하고 싶습니다",
|
|
980
|
+
"videoOnlyError": "비디오 오류:",
|
|
981
|
+
"videoTrackError": "비디오 트랙을 생성할 수 없습니다.",
|
|
982
|
+
"viewAllNumbers": "모든 번호 보기"
|
|
983
|
+
},
|
|
984
|
+
"presenceStatus": {
|
|
985
|
+
"busy": "바쁨",
|
|
986
|
+
"calling": "전화 거는 중",
|
|
987
|
+
"connected": "연결됨",
|
|
988
|
+
"connecting": "연결 중",
|
|
989
|
+
"connecting2": "연결 중*",
|
|
990
|
+
"disconnected": "연결 끊김",
|
|
991
|
+
"expired": "만료됨",
|
|
992
|
+
"ignored": "무시됨",
|
|
993
|
+
"initializingCall": "통화 초기화 중",
|
|
994
|
+
"invited": "초대됨",
|
|
995
|
+
"rejected": "거부됨",
|
|
996
|
+
"ringing": "전화 중"
|
|
997
|
+
},
|
|
998
|
+
"profile": {
|
|
999
|
+
"avatar": "아바타",
|
|
1000
|
+
"setDisplayNameLabel": "표시 이름 설정",
|
|
1001
|
+
"setEmailInput": "이메일 입력",
|
|
1002
|
+
"setEmailLabel": "이메일 설정",
|
|
1003
|
+
"title": "프로필"
|
|
1004
|
+
},
|
|
1005
|
+
"raisedHand": "말하고 싶어합니다",
|
|
1006
|
+
"raisedHandsLabel": "손 든 사람 수",
|
|
1007
|
+
"record": {
|
|
1008
|
+
"already": {
|
|
1009
|
+
"linked": "회의가 이미 이 Salesforce 객체에 연결되었습니다."
|
|
1010
|
+
},
|
|
1011
|
+
"type": {
|
|
1012
|
+
"account": "계정",
|
|
1013
|
+
"contact": "연락처",
|
|
1014
|
+
"lead": "잠재 고객",
|
|
1015
|
+
"opportunity": "기회",
|
|
1016
|
+
"owner": "소유자"
|
|
1017
|
+
}
|
|
1018
|
+
},
|
|
1019
|
+
"recording": {
|
|
1020
|
+
"authDropboxText": "Dropbox에 업로드",
|
|
1021
|
+
"availableSpace": "사용 가능한 공간 : {{spaceLeft}}MB (약 {{duration}}분 녹화)",
|
|
1022
|
+
"beta": "베타",
|
|
1023
|
+
"busy": "녹화 자원을 확보하고 있습니다. 몇 분 후에 다시 시도하십시오.",
|
|
1024
|
+
"busyTitle": "모든 레코더가 현재 사용 중입니다",
|
|
1025
|
+
"copyLink": "링크 복사",
|
|
1026
|
+
"error": "녹화가 실패했습니다. 다시 시도하십시오.",
|
|
1027
|
+
"errorFetchingLink": "녹화 링크를 가져오는 중 오류가 발생했습니다.",
|
|
1028
|
+
"expandedOff": "녹화가 중지됨",
|
|
1029
|
+
"expandedOn": "회의가 현재 녹화 중입니다.",
|
|
1030
|
+
"expandedPending": "녹화가 시작됩니다…",
|
|
1031
|
+
"failedToStart": "녹화를 시작하지 못했습니다",
|
|
1032
|
+
"fileSharingdescription": "회의 참가자와 녹화 공유",
|
|
1033
|
+
"highlight": "하이라이트",
|
|
1034
|
+
"highlightMoment": "순간 강조 표시",
|
|
1035
|
+
"highlightMomentDisabled": "녹화가 시작되면 순간을 강조 표시할 수 있습니다",
|
|
1036
|
+
"highlightMomentSuccess": "순간 강조 표시됨",
|
|
1037
|
+
"highlightMomentSucessDescription": "강조 표시된 순간이 회의 요약에 추가됩니다.",
|
|
1038
|
+
"inProgress": "녹화 또는 실시간 스트리밍 진행 중",
|
|
1039
|
+
"limitNotificationDescriptionNative": "수요가 많아 녹화가 {{limit}}분으로 제한됩니다. 무제한 녹화를 사용하려면 {{app}}을 시도해 보세요.",
|
|
1040
|
+
"limitNotificationDescriptionWeb": "수요가 많아 녹화가 {{limit}}분으로 제한됩니다. 무제한 녹화를 사용하려면 <a href={{url}} rel='noopener noreferrer' target='_blank'>{{app}}</a>을 시도해 보세요.",
|
|
1041
|
+
"linkGenerated": "녹화에 대한 링크를 생성했습니다.",
|
|
1042
|
+
"localRecordingNoNotificationWarning": "녹화가 다른 참가자에게 알리지 않습니다. 회의가 녹화되고 있음을 알려야 합니다.",
|
|
1043
|
+
"localRecordingNoVideo": "비디오는 녹화되지 않습니다",
|
|
1044
|
+
"localRecordingStartWarning": "녹화를 저장하려면 회의에서 나가기 전에 녹화를 중지해야 합니다.",
|
|
1045
|
+
"localRecordingStartWarningTitle": "저장을 위해 녹화를 중지하세요",
|
|
1046
|
+
"localRecordingVideoStop": "비디오를 중지하면 로컬 녹화도 중지됩니다. 계속하시겠습니까?",
|
|
1047
|
+
"localRecordingVideoWarning": "비디오를 녹화하려면 녹화를 시작할 때 켜져 있어야 합니다",
|
|
1048
|
+
"localRecordingWarning": "올바른 비디오 및 오디오를 사용하려면 현재 탭을 선택해야 합니다.",
|
|
1049
|
+
"loggedIn": "{{userName}}으로 로그인했습니다.",
|
|
1050
|
+
"noMicPermission": "마이크 트랙을 생성할 수 없습니다. 마이크 사용 권한을 부여하세요.",
|
|
1051
|
+
"noStreams": "오디오 또는 비디오 스트림이 감지되지 않았습니다.",
|
|
1052
|
+
"off": "녹화가 중지됨",
|
|
1053
|
+
"offBy": "{{name}}님이 녹화를 중지했습니다",
|
|
1054
|
+
"on": "녹화",
|
|
1055
|
+
"onBy": "{{name}}님이 녹화를 시작했습니다",
|
|
1056
|
+
"onlyRecordSelf": "나의 오디오 및 비디오 스트림만 녹화",
|
|
1057
|
+
"pending": "참석할 멤버를 기다리는 중입니다…",
|
|
1058
|
+
"policyError": "녹화를 너무 빨리 시작하려고 했습니다. 나중에 다시 시도하십시오!",
|
|
1059
|
+
"recordAudioAndVideo": "오디오와 비디오 녹화",
|
|
1060
|
+
"recordTranscription": "자막 녹화",
|
|
1061
|
+
"saveLocalRecording": "녹화 파일을 로컬에 저장 (베타)",
|
|
1062
|
+
"serviceDescription": "녹화는 녹화 서비스에 의해 저장됩니다.",
|
|
1063
|
+
"serviceDescriptionCloud": "클라우드 녹화",
|
|
1064
|
+
"serviceDescriptionCloudInfo": "녹화된 회의는 녹화 후 24시간 후에 자동으로 삭제됩니다.",
|
|
1065
|
+
"serviceName": "녹화 서비스",
|
|
1066
|
+
"sessionAlreadyActive": "이 세션은 이미 녹화되거나 라이브 스트림 중입니다.",
|
|
1067
|
+
"showAdvancedOptions": "고급 옵션",
|
|
1068
|
+
"signIn": "로그인",
|
|
1069
|
+
"signOut": "로그아웃",
|
|
1070
|
+
"surfaceError": "현재 탭을 선택해 주세요.",
|
|
1071
|
+
"title": "녹화",
|
|
1072
|
+
"unavailable": "죄송합니다. {{serviceName}}은 현재 사용할 수 없습니다. 저희는 문제를 해결하기 위해 노력하고 있습니다. 나중에 다시 시도 해주십시오.",
|
|
1073
|
+
"unavailableTitle": "녹화를 사용할 수 없습니다",
|
|
1074
|
+
"uploadToCloud": "클라우드에 업로드"
|
|
1075
|
+
},
|
|
1076
|
+
"screenshareDisplayName": "{{name}}의 화면",
|
|
1077
|
+
"sectionList": {
|
|
1078
|
+
"pullToRefresh": "당겨서 새로고침"
|
|
1079
|
+
},
|
|
1080
|
+
"security": {
|
|
1081
|
+
"about": "회의에 $t(lockRoomPassword)를 추가할 수 있습니다. 참가자는 회의에 참여하기 위해 $t(lockRoomPassword)를 입력해야합니다.",
|
|
1082
|
+
"aboutReadOnly": "방장은 회의에 $t(lockRoomPassword)를 추가할 수 있습니다. 참가자는 회의에 참여하기 위해 $t(lockRoomPassword)를 입력해야합니다.",
|
|
1083
|
+
"insecureRoomNameWarningNative": "방 이름이 안전하지 않습니다. 원하지 않는 참가자가 회의에 참여할 수 있습니다. {{recommendAction}} 회의를 보호하는 방법을 알아보세요",
|
|
1084
|
+
"insecureRoomNameWarningWeb": "방 이름이 안전하지 않습니다. 원하지 않는 참가자가 회의에 참여할 수 있습니다. {{recommendAction}} 회의를 보호하는 방법은 <a href=\"{{securityUrl}}\" rel=\"security\" target=\"_blank\">여기</a>에서 알아보세요.",
|
|
1085
|
+
"title": "보안 옵션",
|
|
1086
|
+
"unsafeRoomActions": {
|
|
1087
|
+
"meeting": "회의 보안을 위해 보안 버튼을 사용하세요.",
|
|
1088
|
+
"prejoin": "더 고유한 회의 이름을 사용하는 것이 좋습니다.",
|
|
1089
|
+
"welcome": "더 고유한 회의 이름을 사용하거나 제안을 선택하는 것이 좋습니다."
|
|
1090
|
+
}
|
|
1091
|
+
},
|
|
1092
|
+
"settings": {
|
|
1093
|
+
"audio": "오디오",
|
|
1094
|
+
"buttonLabel": "설정",
|
|
1095
|
+
"calendar": {
|
|
1096
|
+
"about": "{{appName}} 캘린더 통합은 예정된 일정을 읽을 수 있도록 캘린더에 안전하게 액세스하는 데 사용됩니다.",
|
|
1097
|
+
"disconnect": "연결 끊김",
|
|
1098
|
+
"microsoftSignIn": "Microsoft로 로그인",
|
|
1099
|
+
"signedIn": "현재 {{email}}의 캘린더 일정에 액세스하고 있습니다. 캘린더 이벤트 액세스를 중지하려면 아래 연결 해제 버튼을 클릭하세요.",
|
|
1100
|
+
"title": "캘린더"
|
|
1101
|
+
},
|
|
1102
|
+
"desktopShareFramerate": "데스크톱 공유 프레임 레이트",
|
|
1103
|
+
"desktopShareHighFpsWarning": "데스크톱 공유의 높은 프레임 레이트는 대역폭에 영향을 줄 수 있습니다. 새로운 설정이 적용되도록 화면 공유를 다시 시작해야 합니다.",
|
|
1104
|
+
"desktopShareWarning": "새로운 설정이 적용되도록 화면 공유를 다시 시작해야 합니다.",
|
|
1105
|
+
"devices": "장치",
|
|
1106
|
+
"followMe": "모두 나와 같은 설정 상태로",
|
|
1107
|
+
"followMeRecorder": "녹화도 나를 따릅니다",
|
|
1108
|
+
"framesPerSecond": "초당 프레임 수",
|
|
1109
|
+
"incomingMessage": "수신 메시지",
|
|
1110
|
+
"language": "언어",
|
|
1111
|
+
"loggedIn": "{{name}}으로 로그인",
|
|
1112
|
+
"maxStageParticipants": "메인 스테이지에 고정할 수 있는 최대 참가자 수",
|
|
1113
|
+
"microphones": "마이크",
|
|
1114
|
+
"moderator": "진행자",
|
|
1115
|
+
"moderatorOptions": "진행자 옵션",
|
|
1116
|
+
"more": "더보기",
|
|
1117
|
+
"name": "이름",
|
|
1118
|
+
"noDevice": "없음",
|
|
1119
|
+
"notifications": "알림",
|
|
1120
|
+
"participantJoined": "참가자 입장",
|
|
1121
|
+
"participantKnocking": "참가자가 로비에 입장",
|
|
1122
|
+
"participantLeft": "참가자 퇴장",
|
|
1123
|
+
"playSounds": "소리 켜기",
|
|
1124
|
+
"reactions": "반응",
|
|
1125
|
+
"sameAsSystem": "시스템과 동일 ({{label}})",
|
|
1126
|
+
"selectAudioOutput": "오디오 출력",
|
|
1127
|
+
"selectCamera": "카메라",
|
|
1128
|
+
"selectMic": "오디오",
|
|
1129
|
+
"selfView": "자기 보기",
|
|
1130
|
+
"shortcuts": "단축키",
|
|
1131
|
+
"speakers": "스피커",
|
|
1132
|
+
"startAudioMuted": "모두 음소거 상태로 시작",
|
|
1133
|
+
"startReactionsMuted": "모든 사람의 반응 소리 음소거",
|
|
1134
|
+
"startVideoMuted": "모두 비디오 비활성화 상태로 시작",
|
|
1135
|
+
"talkWhileMuted": "음소거 상태에서 말하기",
|
|
1136
|
+
"title": "설정",
|
|
1137
|
+
"video": "비디오"
|
|
1138
|
+
},
|
|
1139
|
+
"settingsView": {
|
|
1140
|
+
"advanced": "고급",
|
|
1141
|
+
"alertCancel": "취소",
|
|
1142
|
+
"alertOk": "확인",
|
|
1143
|
+
"alertTitle": "경고",
|
|
1144
|
+
"alertURLText": "입력된 서버 URL이 잘못되었습니다",
|
|
1145
|
+
"apply": "적용",
|
|
1146
|
+
"buildInfoSection": "빌드 정보",
|
|
1147
|
+
"conferenceSection": "회의",
|
|
1148
|
+
"disableCallIntegration": "네이티브 통화 통합 비활성화",
|
|
1149
|
+
"disableCrashReporting": "크래시 리포팅 비활성화",
|
|
1150
|
+
"disableCrashReportingWarning": "크래시 리포팅을 비활성화하시겠습니까? 설정은 앱을 다시 시작한 후 적용됩니다.",
|
|
1151
|
+
"disableP2P": "피어-투-피어 모드 비활성화",
|
|
1152
|
+
"displayName": "유저이름",
|
|
1153
|
+
"displayNamePlaceholderText": "예: 홍길동",
|
|
1154
|
+
"email": "이메일",
|
|
1155
|
+
"emailPlaceholderText": "email@example.com",
|
|
1156
|
+
"gavatarMessage": "이메일이 Gravatar 계정과 연결되어 있으면 프로필 사진을 표시하는 데 사용됩니다.",
|
|
1157
|
+
"goTo": "이동",
|
|
1158
|
+
"header": "설정",
|
|
1159
|
+
"help": "도움말",
|
|
1160
|
+
"links": "링크",
|
|
1161
|
+
"privacy": "개인정보",
|
|
1162
|
+
"profileSection": "프로필",
|
|
1163
|
+
"sdkVersion": "SDK 버전",
|
|
1164
|
+
"serverURL": "서버 URL",
|
|
1165
|
+
"showAdvanced": "고급 설정 표시",
|
|
1166
|
+
"startCarModeInLowBandwidthMode": "낮은 대역폭 모드에서 자동차 모드 시작",
|
|
1167
|
+
"startWithAudioMuted": "오디오 음소거 상태로 시작",
|
|
1168
|
+
"startWithVideoMuted": "비디오 비활성화 상태로 시작",
|
|
1169
|
+
"terms": "이용약관",
|
|
1170
|
+
"version": "버전"
|
|
1171
|
+
},
|
|
1172
|
+
"share": {
|
|
1173
|
+
"dialInfoText": "\n\n=====\n\n전화로 접속하고 싶으신가요?\n\n{{defaultDialInNumber}}이 회의의 전화 접속 번호를 보려면 이 링크를 클릭하세요\n{{dialInfoPageUrl}}",
|
|
1174
|
+
"mainText": "회의에 참여하려면 다음 링크를 클릭하십시오.\n{{roomUrl}}"
|
|
1175
|
+
},
|
|
1176
|
+
"speaker": "스피커",
|
|
1177
|
+
"speakerStats": {
|
|
1178
|
+
"angry": "화남",
|
|
1179
|
+
"disgusted": "역겨움",
|
|
1180
|
+
"displayEmotions": "감정 표시",
|
|
1181
|
+
"fearful": "두려움",
|
|
1182
|
+
"happy": "행복",
|
|
1183
|
+
"hours": "{{count}}시간",
|
|
1184
|
+
"minutes": "{{count}}분",
|
|
1185
|
+
"name": "이름",
|
|
1186
|
+
"neutral": "중립적",
|
|
1187
|
+
"sad": "슬픔",
|
|
1188
|
+
"search": "검색",
|
|
1189
|
+
"searchHint": "참가자 검색",
|
|
1190
|
+
"seconds": "{{count}}초",
|
|
1191
|
+
"speakerStats": "접속자 통계",
|
|
1192
|
+
"speakerTime": "접속자 오디오 사용 시간",
|
|
1193
|
+
"surprised": "놀람"
|
|
1194
|
+
},
|
|
1195
|
+
"startupoverlay": {
|
|
1196
|
+
"genericTitle": "회의에서 마이크와 카메라를 사용해야 합니다.",
|
|
1197
|
+
"policyText": " ",
|
|
1198
|
+
"title": "{{app}}은 마이크와 카메라를 사용해야합니다"
|
|
1199
|
+
},
|
|
1200
|
+
"suspendedoverlay": {
|
|
1201
|
+
"rejoinKeyTitle": "재접속",
|
|
1202
|
+
"text": "다시 연결하려면 <i>재접속</i> 버튼을 누르십시오",
|
|
1203
|
+
"title": "컴퓨터 휴식 모드가 되어 화상 통화가 중단되었습니다"
|
|
1204
|
+
},
|
|
1205
|
+
"termsView": {
|
|
1206
|
+
"title": "이용약관"
|
|
1207
|
+
},
|
|
1208
|
+
"toggleTopPanelLabel": "상단 패널 전환",
|
|
1209
|
+
"toolbar": {
|
|
1210
|
+
"Settings": "설정",
|
|
1211
|
+
"accessibilityLabel": {
|
|
1212
|
+
"Settings": "설정 전환",
|
|
1213
|
+
"audioOnly": "음성 전용 모드 전환",
|
|
1214
|
+
"audioRoute": "음성 장비 선택하기",
|
|
1215
|
+
"boo": "야유",
|
|
1216
|
+
"breakoutRooms": "소회의실",
|
|
1217
|
+
"callQuality": "비디오 품질 관리",
|
|
1218
|
+
"carmode": "자동차 모드",
|
|
1219
|
+
"cc": "자막 사용 전환",
|
|
1220
|
+
"chat": "채팅창 보이기 전환",
|
|
1221
|
+
"clap": "박수",
|
|
1222
|
+
"closeChat": "채팅 닫기",
|
|
1223
|
+
"closeMoreActions": "추가 작업 메뉴 닫기",
|
|
1224
|
+
"closeParticipantsPane": "참가자 패널 닫기",
|
|
1225
|
+
"collapse": "축소",
|
|
1226
|
+
"document": "문서 전환",
|
|
1227
|
+
"documentClose": "공유 문서 닫기",
|
|
1228
|
+
"documentOpen": "공유 문서 열기",
|
|
1229
|
+
"download": "앱 다운로드",
|
|
1230
|
+
"embedMeeting": "회의 삽입",
|
|
1231
|
+
"endConference": "모두를 위한 회의 종료",
|
|
1232
|
+
"enterFullScreen": "전체 화면 보기",
|
|
1233
|
+
"enterTileView": "타일 보기 시작",
|
|
1234
|
+
"exitFullScreen": "전체 화면 종료",
|
|
1235
|
+
"exitTileView": "타일 보기 종료",
|
|
1236
|
+
"expand": "확장",
|
|
1237
|
+
"feedback": "피드백 남기기",
|
|
1238
|
+
"fullScreen": "전체 화면 전환",
|
|
1239
|
+
"giphy": "GIPHY 메뉴 전환",
|
|
1240
|
+
"grantModerator": "진행자 권한 부여",
|
|
1241
|
+
"hangup": "떠나기",
|
|
1242
|
+
"heading": "도구 모음",
|
|
1243
|
+
"help": "도움말",
|
|
1244
|
+
"hideWhiteboard": "화이트보드 숨기기",
|
|
1245
|
+
"invite": "사용자 초대",
|
|
1246
|
+
"kick": "참가자 추방",
|
|
1247
|
+
"laugh": "웃음",
|
|
1248
|
+
"leaveConference": "회의 떠나기",
|
|
1249
|
+
"like": "좋아요",
|
|
1250
|
+
"linkToSalesforce": "Salesforce에 연결",
|
|
1251
|
+
"lobbyButton": "로비 모드 활성화/비활성화",
|
|
1252
|
+
"localRecording": "로컬 녹화 제어 전환",
|
|
1253
|
+
"lockRoom": "회의 비밀번호 전환",
|
|
1254
|
+
"love": "하트",
|
|
1255
|
+
"lowerHand": "손 내리기",
|
|
1256
|
+
"moreActions": "추가 작업",
|
|
1257
|
+
"moreActionsMenu": "추가 작업 메뉴",
|
|
1258
|
+
"moreOptions": "추가 옵션 보기",
|
|
1259
|
+
"mute": "음소거 전환",
|
|
1260
|
+
"muteEveryone": "모두 음소거",
|
|
1261
|
+
"muteEveryoneElse": "다른 사람 모두 음소거",
|
|
1262
|
+
"muteEveryoneElsesVideoStream": "다른 사람들의 비디오 중지",
|
|
1263
|
+
"muteEveryonesVideoStream": "모든 사람의 비디오 중지",
|
|
1264
|
+
"muteGUMPending": "마이크 연결 중",
|
|
1265
|
+
"noiseSuppression": "추가 잡음 제거 (베타)",
|
|
1266
|
+
"openChat": "채팅 열기",
|
|
1267
|
+
"participants": "참가자 패널 열기. {{participantsCount}}명 참가자",
|
|
1268
|
+
"pip": "PIP 모드 전환",
|
|
1269
|
+
"privateMessage": "비공개 메세지 보내기",
|
|
1270
|
+
"profile": "프로필 수정",
|
|
1271
|
+
"raiseHand": "손 들기",
|
|
1272
|
+
"react": "메시지 반응",
|
|
1273
|
+
"reactions": "반응",
|
|
1274
|
+
"reactionsMenu": "반응 메뉴",
|
|
1275
|
+
"recording": "녹화 전환",
|
|
1276
|
+
"remoteMute": "참가자 음소거",
|
|
1277
|
+
"remoteVideoMute": "참가자의 카메라 비활성화",
|
|
1278
|
+
"security": "보안 옵션",
|
|
1279
|
+
"selectBackground": "배경 선택",
|
|
1280
|
+
"selfView": "자기 보기 전환",
|
|
1281
|
+
"shareRoom": "초대하기",
|
|
1282
|
+
"shareYourScreen": "화면 공유 전환",
|
|
1283
|
+
"shareaudio": "오디오 공유",
|
|
1284
|
+
"sharedvideo": "YouTube 비디오 공유 전환",
|
|
1285
|
+
"shortcuts": "단축키 전환",
|
|
1286
|
+
"show": "스테이지에 표시",
|
|
1287
|
+
"showWhiteboard": "화이트보드 표시",
|
|
1288
|
+
"silence": "조용히",
|
|
1289
|
+
"speakerStats": "접속자 통계 전환",
|
|
1290
|
+
"stopScreenSharing": "화면 공유 중지",
|
|
1291
|
+
"stopSharedVideo": "비디오 중지",
|
|
1292
|
+
"surprised": "놀람",
|
|
1293
|
+
"tileView": "타일뷰 전환",
|
|
1294
|
+
"toggleCamera": "카메라 전환",
|
|
1295
|
+
"toggleFilmstrip": "필름스트립 전환",
|
|
1296
|
+
"unmute": "마이크 음소거 해제",
|
|
1297
|
+
"videoblur": "비디오 흐리기 전환",
|
|
1298
|
+
"videomute": "비디오 비활성화 전환",
|
|
1299
|
+
"videomuteGUMPending": "카메라 연결 중",
|
|
1300
|
+
"videounmute": "카메라 시작"
|
|
1301
|
+
},
|
|
1302
|
+
"addPeople": "통화에 사용자 추가",
|
|
1303
|
+
"audioOnlyOff": "음성전용 모드 끄기",
|
|
1304
|
+
"audioOnlyOn": "음성전용 모드 켜기",
|
|
1305
|
+
"audioRoute": "음성 장비 선택하기",
|
|
1306
|
+
"audioSettings": "오디오 설정",
|
|
1307
|
+
"authenticate": "인증중",
|
|
1308
|
+
"boo": "야유",
|
|
1309
|
+
"callQuality": "품질 설정하기",
|
|
1310
|
+
"chat": "대화 열기/닫기",
|
|
1311
|
+
"clap": "박수",
|
|
1312
|
+
"closeChat": "대화 닫기",
|
|
1313
|
+
"closeParticipantsPane": "참가자 패널 닫기",
|
|
1314
|
+
"closeReactionsMenu": "반응 메뉴 닫기",
|
|
1315
|
+
"disableNoiseSuppression": "추가 잡음 제거 비활성화 (베타)",
|
|
1316
|
+
"disableReactionSounds": "이 회의에서 반응 소리를 비활성화할 수 있습니다",
|
|
1317
|
+
"documentClose": "문서 공유 닫기",
|
|
1318
|
+
"documentOpen": "문서 공유 열기",
|
|
1319
|
+
"download": "앱 다운로드",
|
|
1320
|
+
"e2ee": "종단간 암호화",
|
|
1321
|
+
"embedMeeting": "회의 삽입",
|
|
1322
|
+
"enableNoiseSuppression": "추가 잡음 제거 활성화 (베타)",
|
|
1323
|
+
"endConference": "모두를 위한 회의 종료",
|
|
1324
|
+
"enterFullScreen": "전체화면 보기",
|
|
1325
|
+
"enterTileView": "타일보기 시작",
|
|
1326
|
+
"exitFullScreen": "전체화면 취소",
|
|
1327
|
+
"exitTileView": "타일보기 종료",
|
|
1328
|
+
"feedback": "피드백 남기기",
|
|
1329
|
+
"giphy": "GIPHY 메뉴 전환",
|
|
1330
|
+
"hangup": "떠나기",
|
|
1331
|
+
"help": "도움말",
|
|
1332
|
+
"hideWhiteboard": "화이트보드 숨기기",
|
|
1333
|
+
"invite": "초대",
|
|
1334
|
+
"joinBreakoutRoom": "소회의실 참여",
|
|
1335
|
+
"laugh": "웃음",
|
|
1336
|
+
"leaveBreakoutRoom": "소회의실 나가기",
|
|
1337
|
+
"leaveConference": "회의 떠나기",
|
|
1338
|
+
"like": "좋아요",
|
|
1339
|
+
"linkToSalesforce": "Salesforce에 연결",
|
|
1340
|
+
"lobbyButtonDisable": "로비 모드 비활성화",
|
|
1341
|
+
"lobbyButtonEnable": "로비 모드 활성화",
|
|
1342
|
+
"login": "로그인",
|
|
1343
|
+
"logout": "로그아웃",
|
|
1344
|
+
"love": "하트",
|
|
1345
|
+
"lowerYourHand": "손을 내려주세요",
|
|
1346
|
+
"moreActions": "추가 액션",
|
|
1347
|
+
"moreOptions": "옵션 더보기",
|
|
1348
|
+
"mute": "음소거 설정/해제",
|
|
1349
|
+
"muteEveryone": "모두 음소거",
|
|
1350
|
+
"muteEveryonesVideo": "모두의 카메라 중지",
|
|
1351
|
+
"muteGUMPending": "마이크 연결 중",
|
|
1352
|
+
"noAudioSignalDesc": "시스템 설정이나 하드웨어에서 의도적으로 음소거하지 않았다면 장치를 변경하는 것을 고려하세요.",
|
|
1353
|
+
"noAudioSignalDescSuggestion": "시스템 설정이나 하드웨어에서 의도적으로 음소거하지 않았다면 제안된 장치로 전환하는 것을 고려하세요.",
|
|
1354
|
+
"noAudioSignalDialInDesc": "다음 번호를 사용하여 전화 접속할 수도 있습니다:",
|
|
1355
|
+
"noAudioSignalDialInLinkDesc": "전화 접속 번호",
|
|
1356
|
+
"noAudioSignalTitle": "마이크에서 입력이 없습니다!",
|
|
1357
|
+
"noiseSuppression": "추가 잡음 제거 (베타)",
|
|
1358
|
+
"noisyAudioInputDesc": "마이크에서 소음이 발생하는 것 같습니다. 음소거하거나 장치를 변경하는 것을 고려하세요.",
|
|
1359
|
+
"noisyAudioInputTitle": "마이크가 소음을 발생시키는 것 같습니다!",
|
|
1360
|
+
"openChat": "대화 열기",
|
|
1361
|
+
"openReactionsMenu": "반응 메뉴 열기",
|
|
1362
|
+
"participants": "참가자",
|
|
1363
|
+
"pip": "Picture-in-Picture 모드 시작",
|
|
1364
|
+
"privateMessage": "비공개 메시지 보내기",
|
|
1365
|
+
"profile": "프로필 수정",
|
|
1366
|
+
"raiseHand": "말하기 요청/해제",
|
|
1367
|
+
"raiseYourHand": "손 들어주세요",
|
|
1368
|
+
"reactionBoo": "야유 반응 보내기",
|
|
1369
|
+
"reactionClap": "박수 반응 보내기",
|
|
1370
|
+
"reactionHeart": "하트 반응 보내기",
|
|
1371
|
+
"reactionLaugh": "웃음 반응 보내기",
|
|
1372
|
+
"reactionLike": "좋아요 반응 보내기",
|
|
1373
|
+
"reactionSilence": "조용히 반응 보내기",
|
|
1374
|
+
"reactionSurprised": "놀람 반응 보내기",
|
|
1375
|
+
"reactions": "반응",
|
|
1376
|
+
"security": "보안 옵션",
|
|
1377
|
+
"selectBackground": "배경 선택",
|
|
1378
|
+
"shareRoom": "초대하기",
|
|
1379
|
+
"shareaudio": "오디오 공유",
|
|
1380
|
+
"sharedvideo": "YouTube 비디오 공유",
|
|
1381
|
+
"shortcuts": "단축키보기",
|
|
1382
|
+
"showWhiteboard": "화이트보드 표시",
|
|
1383
|
+
"silence": "조용히",
|
|
1384
|
+
"speakerStats": "접속자 통계",
|
|
1385
|
+
"startScreenSharing": "화면 공유 시작",
|
|
1386
|
+
"startSubtitles": "자막 시작",
|
|
1387
|
+
"stopAudioSharing": "오디오 공유 중지",
|
|
1388
|
+
"stopScreenSharing": "화면 공유 중지",
|
|
1389
|
+
"stopSharedVideo": "YouTube 비디오 공유 중지",
|
|
1390
|
+
"stopSubtitles": "자막 중지",
|
|
1391
|
+
"surprised": "놀람",
|
|
1392
|
+
"talkWhileMutedPopup": "음소거 상태입니다.",
|
|
1393
|
+
"tileViewToggle": "타일뷰 전환",
|
|
1394
|
+
"toggleCamera": "카메라 전환",
|
|
1395
|
+
"unmute": "마이크 음소거 해제",
|
|
1396
|
+
"videoSettings": "비디오 설정",
|
|
1397
|
+
"videomute": "카메라 시작/중지",
|
|
1398
|
+
"videomuteGUMPending": "카메라 연결 중",
|
|
1399
|
+
"videounmute": "카메라 시작"
|
|
1400
|
+
},
|
|
1401
|
+
"transcribing": {
|
|
1402
|
+
"ccButtonTooltip": "자막 시작/종료",
|
|
1403
|
+
"expandedLabel": "현재 스크립트 작성 중",
|
|
1404
|
+
"failed": "자막 작성 실패",
|
|
1405
|
+
"labelToolTip": "회의가 기록되고 있습니다.",
|
|
1406
|
+
"sourceLanguageDesc": "현재 회의 언어는 <b>{{sourceLanguage}}</b>로 설정되어 있습니다. <br/> 변경하려면 ",
|
|
1407
|
+
"sourceLanguageHere": "여기에서",
|
|
1408
|
+
"start": "자막 표시 시작",
|
|
1409
|
+
"stop": "자막 표시 중지",
|
|
1410
|
+
"subtitles": "자막",
|
|
1411
|
+
"subtitlesOff": "끄기",
|
|
1412
|
+
"tr": "번역"
|
|
1413
|
+
},
|
|
1414
|
+
"unpinParticipant": "{{participantName}} - 고정 해제",
|
|
1415
|
+
"userMedia": {
|
|
1416
|
+
"grantPermissions": "카메라와 마이크 사용 권한을 부여하십시오."
|
|
1417
|
+
},
|
|
1418
|
+
"videoSIPGW": {
|
|
1419
|
+
"busy": "자원을 확보하기 위해 노력하고 있습니다. 몇 분 후에 다시 시도하십시오.",
|
|
1420
|
+
"busyTitle": "서비스가 현재 사용 중입니다",
|
|
1421
|
+
"errorAlreadyInvited": "{{displayName}} 이미 초대되었습니다",
|
|
1422
|
+
"errorInvite": "회의가 아직 설정되지 않았습니다. 나중에 다시 시도 해주십시오.",
|
|
1423
|
+
"errorInviteFailed": "문제를 해결하기 위해 노력하고 있습니다. 나중에 다시 시도 해주십시오.",
|
|
1424
|
+
"errorInviteFailedTitle": "{{displayName}} 초대 실패",
|
|
1425
|
+
"errorInviteTitle": "초대하는 중에 오류가 발생했습니다",
|
|
1426
|
+
"pending": "{{displayName}} 이미 초대되었습니다"
|
|
1427
|
+
},
|
|
1428
|
+
"videoStatus": {
|
|
1429
|
+
"adjustFor": "조정 대상:",
|
|
1430
|
+
"audioOnly": "오디오 전용",
|
|
1431
|
+
"audioOnlyExpanded": "낮은 대역폭 모드에 있습니다. 이 모드에서는 오디오 및 화면 공유만 수신합니다.",
|
|
1432
|
+
"bestPerformance": "최고의 성능",
|
|
1433
|
+
"callQuality": "비디오 품질",
|
|
1434
|
+
"hd": "HD",
|
|
1435
|
+
"hdTooltip": "고해상도 비디오 보기",
|
|
1436
|
+
"highDefinition": "고해상도",
|
|
1437
|
+
"highestQuality": "최고 품질",
|
|
1438
|
+
"labelTooiltipNoVideo": "비디오 없음",
|
|
1439
|
+
"labelTooltipAudioOnly": "오디오 전용 모드 사용",
|
|
1440
|
+
"ld": "LD",
|
|
1441
|
+
"ldTooltip": "저해상도 비디오 보기",
|
|
1442
|
+
"lowDefinition": "저해상도",
|
|
1443
|
+
"performanceSettings": "성능 설정",
|
|
1444
|
+
"recording": "녹화 진행 중",
|
|
1445
|
+
"sd": "SD",
|
|
1446
|
+
"sdTooltip": "표준 해상도 비디오 보기",
|
|
1447
|
+
"standardDefinition": "표준 해상도",
|
|
1448
|
+
"streaming": "스트리밍 진행 중"
|
|
1449
|
+
},
|
|
1450
|
+
"videothumbnail": {
|
|
1451
|
+
"connectionInfo": "연결 정보",
|
|
1452
|
+
"demote": "방문자로 이동",
|
|
1453
|
+
"domute": "음소거",
|
|
1454
|
+
"domuteOthers": "다른 사람 모두 음소거",
|
|
1455
|
+
"domuteVideo": "카메라 비활성화",
|
|
1456
|
+
"domuteVideoOfOthers": "다른 사람의 카메라 비활성화",
|
|
1457
|
+
"flip": "뒤집기",
|
|
1458
|
+
"grantModerator": "진행자 권한 부여",
|
|
1459
|
+
"hideSelfView": "자기 보기 숨기기",
|
|
1460
|
+
"kick": "내보내기",
|
|
1461
|
+
"mirrorVideo": "내 비디오 미러링",
|
|
1462
|
+
"moderator": "진행자",
|
|
1463
|
+
"mute": "참가자 음소거",
|
|
1464
|
+
"muted": "음소거됨",
|
|
1465
|
+
"pinToStage": "스테이지에 고정",
|
|
1466
|
+
"remoteControl": "원격 제어",
|
|
1467
|
+
"screenSharing": "참가자가 화면을 공유하고 있습니다",
|
|
1468
|
+
"show": "화면에 표시",
|
|
1469
|
+
"showSelfView": "자기 보기 표시",
|
|
1470
|
+
"unpinFromStage": "고정 해제",
|
|
1471
|
+
"verify": "참가자 확인",
|
|
1472
|
+
"videoMuted": "카메라 비활성화됨",
|
|
1473
|
+
"videomute": "참가자가 카메라를 중지했습니다."
|
|
1474
|
+
},
|
|
1475
|
+
"virtualBackground": {
|
|
1476
|
+
"accessibilityLabel": {
|
|
1477
|
+
"currentBackground": "현재 배경: {{background}}",
|
|
1478
|
+
"selectBackground": "배경 선택"
|
|
1479
|
+
},
|
|
1480
|
+
"addBackground": "배경 추가",
|
|
1481
|
+
"apply": "적용",
|
|
1482
|
+
"backgroundEffectError": "배경 효과 적용 실패.",
|
|
1483
|
+
"blur": "흐리게",
|
|
1484
|
+
"deleteImage": "이미지 삭제",
|
|
1485
|
+
"desktopShare": "데스크톱 공유",
|
|
1486
|
+
"desktopShareError": "데스크톱 공유를 생성할 수 없습니다",
|
|
1487
|
+
"image1": "해변",
|
|
1488
|
+
"image2": "흰색 중립 벽",
|
|
1489
|
+
"image3": "흰색 빈 방",
|
|
1490
|
+
"image4": "검은색 바닥 램프",
|
|
1491
|
+
"image5": "산",
|
|
1492
|
+
"image6": "숲",
|
|
1493
|
+
"image7": "일출",
|
|
1494
|
+
"none": "없음",
|
|
1495
|
+
"pleaseWait": "잠시만 기다려주세요…",
|
|
1496
|
+
"removeBackground": "배경 제거",
|
|
1497
|
+
"slightBlur": "약간 흐리게",
|
|
1498
|
+
"title": "배경",
|
|
1499
|
+
"uploadedImage": "업로드된 이미지 {{index}}",
|
|
1500
|
+
"webAssemblyWarning": "WebAssembly를 지원하지 않습니다",
|
|
1501
|
+
"webAssemblyWarningDescription": "이 브라우저에서 WebAssembly가 비활성화되었거나 지원되지 않습니다"
|
|
1502
|
+
},
|
|
1503
|
+
"visitors": {
|
|
1504
|
+
"chatIndicator": "(방문자)",
|
|
1505
|
+
"joinMeeting": {
|
|
1506
|
+
"description": "현재 이 회의에서 참관인입니다.",
|
|
1507
|
+
"raiseHand": "손 들기",
|
|
1508
|
+
"title": "회의 참가",
|
|
1509
|
+
"wishToSpeak": "발언하고 싶으시면 아래에서 손을 들고 진행자의 승인을 기다려주세요."
|
|
1510
|
+
},
|
|
1511
|
+
"labelTooltip": "방문자 수: {{count}}",
|
|
1512
|
+
"notification": {
|
|
1513
|
+
"demoteDescription": "{{actor}}에 의해 여기로 보내졌습니다. 참여하려면 손을 들어주세요.",
|
|
1514
|
+
"noMainParticipantsDescription": "참가자가 회의를 시작해야 합니다. 잠시 후 다시 시도해 주세요.",
|
|
1515
|
+
"noMainParticipantsTitle": "이 회의는 아직 시작되지 않았습니다.",
|
|
1516
|
+
"noVisitorLobby": "회의에 로비가 활성화되어 있어 참여할 수 없습니다.",
|
|
1517
|
+
"notAllowedPromotion": "참가자가 먼저 귀하의 요청을 승인해야 합니다.",
|
|
1518
|
+
"title": "회의에서 방문자입니다"
|
|
1519
|
+
},
|
|
1520
|
+
"waitingMessage": "회의가 시작되면 곧 참여하실 수 있습니다!"
|
|
1521
|
+
},
|
|
1522
|
+
"volumeSlider": "볼륨 슬라이더",
|
|
1523
|
+
"welcomepage": {
|
|
1524
|
+
"accessibilityLabel": {
|
|
1525
|
+
"join": "가입",
|
|
1526
|
+
"roomname": "방 이름 입력"
|
|
1527
|
+
},
|
|
1528
|
+
"addMeetingName": "회의 이름 추가",
|
|
1529
|
+
"appDescription": "전체 팀과 화상 채팅을하십시오. 당신이 아는 모든 사람들을 초대하십시오. {{app}}은 완전히 암호화 된 100 % 오픈 소스 화상 회의 솔루션으로 계정 없이도 하루 종일, 매일 무료로 사용할 수 있습니다.",
|
|
1530
|
+
"audioVideoSwitch": {
|
|
1531
|
+
"audio": "음성",
|
|
1532
|
+
"video": "비디오"
|
|
1533
|
+
},
|
|
1534
|
+
"calendar": "캘린더",
|
|
1535
|
+
"connectCalendarButton": "캘린더를 연결하세요",
|
|
1536
|
+
"connectCalendarText": "{{app}}에서 모든 회의를 보려면 캘린더를 연결하세요. 또한 캘린더에 {{provider}} 회의를 추가하고 클릭 한 번으로 시작하세요.",
|
|
1537
|
+
"enterRoomTitle": "새 회의 시작",
|
|
1538
|
+
"getHelp": "도움 받기",
|
|
1539
|
+
"go": "계속",
|
|
1540
|
+
"goSmall": "계속",
|
|
1541
|
+
"headerSubtitle": "안전하고 고품질의 회의",
|
|
1542
|
+
"headerTitle": "Jitsi Meet",
|
|
1543
|
+
"info": "정보",
|
|
1544
|
+
"jitsiOnMobile": "모바일에서 Jitsi – 앱을 다운로드하고 어디서나 회의를 시작하세요",
|
|
1545
|
+
"join": "가입",
|
|
1546
|
+
"logo": {
|
|
1547
|
+
"calendar": "캘린더 로고",
|
|
1548
|
+
"desktopPreviewThumbnail": "데스크톱 미리보기 썸네일",
|
|
1549
|
+
"googleLogo": "구글 로고",
|
|
1550
|
+
"logoDeepLinking": "Jitsi meet 로고",
|
|
1551
|
+
"microsoftLogo": "마이크로소프트 로고",
|
|
1552
|
+
"policyLogo": "정책 로고"
|
|
1553
|
+
},
|
|
1554
|
+
"meetingsAccessibilityLabel": "회의",
|
|
1555
|
+
"mobileDownLoadLinkAndroid": "Android용 모바일 앱 다운로드",
|
|
1556
|
+
"mobileDownLoadLinkFDroid": "F-Droid용 모바일 앱 다운로드",
|
|
1557
|
+
"mobileDownLoadLinkIos": "iOS용 모바일 앱 다운로드",
|
|
1558
|
+
"moderatedMessage": "또는 <a href=\"{{url}}\" rel=\"noopener noreferrer\" target=\"_blank\">회의 URL을 미리 예약</a>하여 유일한 진행자가 되십시오.",
|
|
1559
|
+
"privacy": "개인정보",
|
|
1560
|
+
"recentList": "최근",
|
|
1561
|
+
"recentListDelete": "삭제",
|
|
1562
|
+
"recentListEmpty": "최근 목록이 현재 비어 있습니다. 팀과 채팅하면 여기에서 최근 회의를 모두 찾을 수 있습니다.",
|
|
1563
|
+
"recentMeetings": "최근 회의",
|
|
1564
|
+
"reducedUIText": "{{app}}에 오신 것을 환영합니다!",
|
|
1565
|
+
"roomNameAllowedChars": "회의 이름은 다음 문자를 포함할 수 없습니다.: ?, &, :, ', \", %, #.",
|
|
1566
|
+
"roomname": "방 이름 입력",
|
|
1567
|
+
"roomnameHint": "참여하려는 방의 이름 또는 URL을 입력하십시오. 이름을 정하고 만나는 사람들에게 같은 이름을 입력하도록 알리면됩니다.",
|
|
1568
|
+
"sendFeedback": "피드백 보내기",
|
|
1569
|
+
"settings": "설정",
|
|
1570
|
+
"startMeeting": "회의 시작",
|
|
1571
|
+
"terms": "이용약관",
|
|
1572
|
+
"title": "안전하고 모든 기능을 갖춘 완전 무료 화상 회의",
|
|
1573
|
+
"upcomingMeetings": "예정된 회의"
|
|
1574
|
+
},
|
|
1575
|
+
"whiteboard": {
|
|
1576
|
+
"accessibilityLabel": {
|
|
1577
|
+
"heading": "화이트보드"
|
|
1578
|
+
},
|
|
1579
|
+
"screenTitle": "화이트보드"
|
|
1580
|
+
}
|
|
1581
|
+
}
|