@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,1166 @@
|
|
|
1
|
+
{
|
|
2
|
+
"addPeople": {
|
|
3
|
+
"add": "Nced",
|
|
4
|
+
"addContacts": "Snubget inermisen-ik·im",
|
|
5
|
+
"contacts": "inermisen",
|
|
6
|
+
"copyInvite": "Nɣel tinubga n temlilit",
|
|
7
|
+
"copyLink": "Nɣel aseɣwen n temlilit",
|
|
8
|
+
"copyStream": "Nɣel aseɣwen n usuddes usrid",
|
|
9
|
+
"countryNotSupported": "Ur nessefrak ara akka tura tawehhit-a.",
|
|
10
|
+
"countryReminder": "Tessawaleḍ-d beṛṛa n Marikan? Ttil-k·m wali ma tebdiḍ s tengalt n tmurt!",
|
|
11
|
+
"defaultEmail": "Imayl-ik•im amezwer",
|
|
12
|
+
"disabled": "Ur tezmireḍ ara ad tesnubgteḍ medden.",
|
|
13
|
+
"failedToAdd": "Timerna n yimttekkiyen ur teddi ara",
|
|
14
|
+
"footerText": "Asuḍen yensa.",
|
|
15
|
+
"googleEmail": "Imayl n Google",
|
|
16
|
+
"inviteMoreHeader": "Alla kečč i / kem i yellan deg temlilit",
|
|
17
|
+
"inviteMoreMailSubject": "Ddu ɣer temlilit {{appName}}",
|
|
18
|
+
"inviteMorePrompt": "Nced-d imdanen-nniḍen",
|
|
19
|
+
"linkCopied": "Aseɣwen ittwanɣel ɣer \"Ɣef afus\"",
|
|
20
|
+
"noResults": "Ulac igmaḍ n unadi yemṣadan",
|
|
21
|
+
"outlookEmail": "Imayl n Outlook",
|
|
22
|
+
"phoneNumbers": "uṭṭunen n tiliɣri",
|
|
23
|
+
"searching": "Anadi…",
|
|
24
|
+
"shareInvite": "Bḍu tinubga n temlilit",
|
|
25
|
+
"shareLink": "Bḍu aseɣwen n usarag i usnubget n wiyaḍ",
|
|
26
|
+
"shareStream": "Bḍu aseɣwen n usuddem usrid",
|
|
27
|
+
"sipAddresses": "tansiwin sip",
|
|
28
|
+
"telephone": "Tiliɣri: {{number}}",
|
|
29
|
+
"title": "Snubget-d imdanen ɣer temlilit-a",
|
|
30
|
+
"yahooEmail": "Imayl n Yahoo"
|
|
31
|
+
},
|
|
32
|
+
"audioDevices": {
|
|
33
|
+
"bluetooth": "Bluetooth",
|
|
34
|
+
"headphones": "Isawaḍen n uqerru",
|
|
35
|
+
"none": "Ulac ibenkan n umeslaw i yellan",
|
|
36
|
+
"phone": "Tiliɣri",
|
|
37
|
+
"speaker": "Asawaḍ"
|
|
38
|
+
},
|
|
39
|
+
"audioOnly": {
|
|
40
|
+
"audioOnly": "Imesli kan"
|
|
41
|
+
},
|
|
42
|
+
"calendarSync": {
|
|
43
|
+
"addMeetingURL": "Rnu aseɣwen n temlilit",
|
|
44
|
+
"confirmAddLink": "Tebɣiḍ ad ternuḍ aseɣwen n Corptime i uneḍru-a?",
|
|
45
|
+
"error": {
|
|
46
|
+
"appConfiguration": "Amsidef n uwitay ur yettuswel ara akken iwata.",
|
|
47
|
+
"generic": "Tella-d tuccḍa. Ttxil-k·m senqed iɣewwaren n uwitay-inek·inem neɣ ɛreḍ asnirem n uwitay.",
|
|
48
|
+
"notSignedIn": "Tella-d tuccḍa lawan n usesteb i wakken ad nwali ineḍuyen n uwitay. Ttxil-k·m senqed iɣewwaren n uwitay syen ɛreḍ anekcum tikkelt-nniḍen."
|
|
49
|
+
},
|
|
50
|
+
"join": "Ttekki",
|
|
51
|
+
"joinTooltip": "Ddu ɣer temlilit",
|
|
52
|
+
"nextMeeting": "timlilit tuḍfirt",
|
|
53
|
+
"noEvents": "Ulac ineḍruyen ɣer sdat yettusɣiwsen.",
|
|
54
|
+
"ongoingMeeting": "timlilit tetteddu",
|
|
55
|
+
"permissionButton": "Ldi iɣewwaren",
|
|
56
|
+
"permissionMessage": "Tasiregt n uwitay tettusra i wakken ad twaliḍ timlilit-ik.im ɣef usnas.",
|
|
57
|
+
"refresh": "Smiren awitay",
|
|
58
|
+
"today": "Ass-a"
|
|
59
|
+
},
|
|
60
|
+
"chat": {
|
|
61
|
+
"enter": "Kcem taxxamt",
|
|
62
|
+
"error": "Izen-inek·inem ur yettwazen ara. Taɣzint: {{error}}",
|
|
63
|
+
"fieldPlaceHolder": "Aru izen-inek·inem da",
|
|
64
|
+
"message": "Izen",
|
|
65
|
+
"messageAccessibleTitle": "{{user}} ad d-yeqqar:",
|
|
66
|
+
"messageAccessibleTitleMe": "ad qqareɣ:",
|
|
67
|
+
"messageTo": "Izen uslig i {{recipient}}",
|
|
68
|
+
"messagebox": "Aru izen",
|
|
69
|
+
"nickname": {
|
|
70
|
+
"popover": "Fren meffer isem",
|
|
71
|
+
"title": "Sekcem meffer isem i useqdec n usqerdec",
|
|
72
|
+
"titleWithPolls": "Sekcem meffer isem i useqdec n usqerdec"
|
|
73
|
+
},
|
|
74
|
+
"noMessagesMessage": "Ulac iznan akka tura deg temlilit. Bdu adiwenni da!",
|
|
75
|
+
"privateNotice": "Izen uslig i {{recipient}}",
|
|
76
|
+
"sendButton": "Azen",
|
|
77
|
+
"smileysPanel": "Afeggag n Emoji",
|
|
78
|
+
"tabs": {
|
|
79
|
+
"chat": "Asqerdec",
|
|
80
|
+
"polls": "Tifranin"
|
|
81
|
+
},
|
|
82
|
+
"title": "Asqerdec",
|
|
83
|
+
"titleWithPolls": "Asqerdec",
|
|
84
|
+
"you": "kečč·kemm"
|
|
85
|
+
},
|
|
86
|
+
"chromeExtensionBanner": {
|
|
87
|
+
"buttonText": "Sbedd asiɣzef Chrome",
|
|
88
|
+
"close": "Mdel",
|
|
89
|
+
"dontShowAgain": "Ur iyi-d-ssutur ara aya tikkelt-nniḍen",
|
|
90
|
+
"installExtensionText": "Sbedd asiɣzef i umsidef n uwitay n Google d Office 365"
|
|
91
|
+
},
|
|
92
|
+
"connectingOverlay": {
|
|
93
|
+
"joiningRoom": "Tetteqqneḍ ɣer temlilit-ik·im…"
|
|
94
|
+
},
|
|
95
|
+
"connection": {
|
|
96
|
+
"ATTACHED": "Isedda",
|
|
97
|
+
"AUTHENTICATING": "Asesteb",
|
|
98
|
+
"AUTHFAIL": "Asesteb ur yeddi ara",
|
|
99
|
+
"CONNECTED": "Yeqqen",
|
|
100
|
+
"CONNECTING": "Tuqqna",
|
|
101
|
+
"CONNFAIL": "Tuqqna ur teddi yara",
|
|
102
|
+
"DISCONNECTED": "Ur yeqqin ara",
|
|
103
|
+
"DISCONNECTING": "Tuffɣa",
|
|
104
|
+
"ERROR": "Tuccḍa",
|
|
105
|
+
"FETCH_SESSION_ID": "Awway n usulay n tɣimit…",
|
|
106
|
+
"GET_SESSION_ID_ERROR": "Tuccḍa deg wawway n usulay n tɣimit: {{code}}",
|
|
107
|
+
"GOT_SESSION_ID": "Awway n usulay n tɣimit… Yemmed",
|
|
108
|
+
"LOW_BANDWIDTH": "Tettwasens tvidyut i {{displayName}} i wakken ad tettwaḥraz tehri n tseftit"
|
|
109
|
+
},
|
|
110
|
+
"connectionindicator": {
|
|
111
|
+
"address": "Tansa:",
|
|
112
|
+
"audio_ssrc": "Imesli SSRC:",
|
|
113
|
+
"bandwidth": "Tehri n tesfift yettuṛaǧun:",
|
|
114
|
+
"bitrate": "Aktum imsin:",
|
|
115
|
+
"bridgeCount": "Amḍan n uqeddac: ",
|
|
116
|
+
"codecs": "Codecs (A/V) : ",
|
|
117
|
+
"connectedTo": "Yeqqen ɣer:",
|
|
118
|
+
"framerate": "Afmiḍi n ukatar:",
|
|
119
|
+
"less": "Sken-d drus",
|
|
120
|
+
"localaddress": "Tansa tadigant:",
|
|
121
|
+
"localaddress_plural": "Tansiwin tidigganin:",
|
|
122
|
+
"localport": "Tawwurt tadigant:",
|
|
123
|
+
"localport_plural": "Tiwwura tidiganin:",
|
|
124
|
+
"maxEnabledResolution": "tuzna tafellayt",
|
|
125
|
+
"more": "Sken-d ugar",
|
|
126
|
+
"packetloss": "Asṛuḥu n ukemmus:",
|
|
127
|
+
"participant_id": "Id n umtteki:",
|
|
128
|
+
"quality": {
|
|
129
|
+
"good": "Telha",
|
|
130
|
+
"inactive": "D arurmid",
|
|
131
|
+
"lost": "Iruḥ",
|
|
132
|
+
"nonoptimal": "Mačči d win igerrzen",
|
|
133
|
+
"poor": "D igellil"
|
|
134
|
+
},
|
|
135
|
+
"remoteaddress": "Tansa tanmeggagt:",
|
|
136
|
+
"remoteaddress_plural": "Tansiwin tinmeggagin:",
|
|
137
|
+
"remoteport": "Tawwurt tanmeggagt:",
|
|
138
|
+
"remoteport_plural": "Tiwwura tinmeggagin:",
|
|
139
|
+
"resolution": "Ferru:",
|
|
140
|
+
"savelogs": "Sekles iɣmisen",
|
|
141
|
+
"status": "Tuqqna:",
|
|
142
|
+
"transport": "Tumnayt:",
|
|
143
|
+
"transport_plural": "Tumnayin:",
|
|
144
|
+
"video_ssrc": "Tavidyut SSRC:"
|
|
145
|
+
},
|
|
146
|
+
"dateUtils": {
|
|
147
|
+
"earlier": "Zik",
|
|
148
|
+
"today": "Ass-a",
|
|
149
|
+
"yesterday": "Iḍelli"
|
|
150
|
+
},
|
|
151
|
+
"deepLinking": {
|
|
152
|
+
"appNotInstalled": "Tesriḍ asnas n uziraz {{app}} i wakken ad tettekkiḍ deg temlilit-a ɣef tiliɣri-inek·inem.",
|
|
153
|
+
"description": "Ulac d acu yeḍran? Neɛreḍ ad nseddu timlilit-inek·inem deg usnas n tnarit {{app}}. Ɛreḍ tikkelt-nniḍen neɣ seddu-tt deg usnas web {{app}}.",
|
|
154
|
+
"descriptionWithoutWeb": "Ulac d acu yeḍran? Neɛreḍ ad nseddu timlilit-inek·inem deg usnas n tnarit {{app}}.",
|
|
155
|
+
"downloadApp": "Sider-d asnas",
|
|
156
|
+
"ifDoNotHaveApp": "Ma yella mazal urɛad ur tesɛiḍ ara asnas:",
|
|
157
|
+
"ifHaveApp": "Ma yella tesɛiḍ yakan asnas:",
|
|
158
|
+
"joinInApp": "Ttekki deg usarag s useqdec n usnas",
|
|
159
|
+
"launchWebButton": "Seddu deg web",
|
|
160
|
+
"title": "Seddu timlilit-ik·im deg {{app}}…",
|
|
161
|
+
"tryAgainButton": "Ɛreḍ tikkelt-nniḍen ɣef tnarit"
|
|
162
|
+
},
|
|
163
|
+
"defaultLink": "md. {{url}}",
|
|
164
|
+
"defaultNickname": "am. Jayn Pink",
|
|
165
|
+
"deviceError": {
|
|
166
|
+
"cameraError": "Ugur deg unekcum ɣer tkamirat-inek·inem",
|
|
167
|
+
"cameraPermission": "Ugur deg wawway n tsiregt n tkamiṛat",
|
|
168
|
+
"microphoneError": "Ugur deg unekcum ɣer usawaḍ-inek·inem",
|
|
169
|
+
"microphonePermission": "Ugur deg wawway n tsiregt n usawaḍ"
|
|
170
|
+
},
|
|
171
|
+
"deviceSelection": {
|
|
172
|
+
"noPermission": "Ur d-tettunefk ara tsiregt",
|
|
173
|
+
"previewUnavailable": "Ulac taskant",
|
|
174
|
+
"selectADevice": "Fren ibenk",
|
|
175
|
+
"testAudio": "Urar imesli n usekyed"
|
|
176
|
+
},
|
|
177
|
+
"dialOut": {
|
|
178
|
+
"statusMessage": "tura d {{status}}"
|
|
179
|
+
},
|
|
180
|
+
"dialog": {
|
|
181
|
+
"Back": "Uɣal",
|
|
182
|
+
"Cancel": "Sefsex",
|
|
183
|
+
"IamHost": "Nekk d asenneftaɣ",
|
|
184
|
+
"Ok": "IH",
|
|
185
|
+
"Remove": "Sfeḍ",
|
|
186
|
+
"Share": "Bḍu",
|
|
187
|
+
"Submit": "Azen",
|
|
188
|
+
"WaitForHostMsg": "Asarag mazal ur yebdi ara. Ma yella d kečč·kemm i d asenneftaɣ, ttxil-k·m ilaq usesteb. Ma yella xaṭi, ttxil-k·m rǧu asenneftaɣ ad d-yaweḍ.",
|
|
189
|
+
"WaitingForHostTitle": "Aṛaǧu n usenneftaɣ…",
|
|
190
|
+
"Yes": "Ih",
|
|
191
|
+
"accessibilityLabel": {
|
|
192
|
+
"liveStreaming": "Asuddim usrid"
|
|
193
|
+
},
|
|
194
|
+
"add": "Rnu",
|
|
195
|
+
"allow": "Sireg",
|
|
196
|
+
"alreadySharedVideoMsg": "Imttekki-nniḍen yebḍa-d yakan tavidyut. Asarag-a yessirig kan yiwet n tvidyut yettwabḍan yal tikkelt.",
|
|
197
|
+
"alreadySharedVideoTitle": "Ala yiwet n tvidyut yettwabḍan yettusirgen yal tikkelt",
|
|
198
|
+
"applicationWindow": "Asfaylu n usnas",
|
|
199
|
+
"authenticationRequired": "Tlaq tuqqna",
|
|
200
|
+
"cameraConstraintFailedError": "Takamiṛat-ik·im ur tqudar ara kra n tlisa yettusran.",
|
|
201
|
+
"cameraNotFoundError": "Ur nufi ara takamirat.",
|
|
202
|
+
"cameraNotSendingData": "Ur nessaweḍ ara ad nekcem er tkamiṛat-inek·inem. Ma ulac aɣilif wali ma yella usnas-nniḍen yesseqdacen ibenk-a, fren ibenk-nniḍen seg wumuɣ n yiɣewwaren neɣ ɛreḍ ad talseḍ asmiren n usnas.",
|
|
203
|
+
"cameraNotSendingDataTitle": "Anekcum ɣer tkamiṛat ulamek",
|
|
204
|
+
"cameraPermissionDeniedError": "Ur tefkiḍ ara tisirag i useqdec n tkamiṛat-inek·inem. Mazal tzemreḍ ad tettekkiḍ deg usarag maca wiyaḍ ur ak·akem-id-ttwalin ara. Seqdec taqeffalt n tkamiṛat deg ufeggag n tansiwin i wakken ad tefruḍ ugur.",
|
|
205
|
+
"cameraTimeoutError": "Ur yezmir ara ad ibdu aɣbalu n tvudyut. Yemmut umenḍar!",
|
|
206
|
+
"cameraUnknownError": "Ur tezmireḍ ara ad tesqedceḍ takamiṛat, ur neẓri ara acuɣer.",
|
|
207
|
+
"cameraUnsupportedResolutionError": "Takamiṛat-ik·im ur tessefrak ara afray tvidyut yettusran.",
|
|
208
|
+
"close": "Mdel",
|
|
209
|
+
"conferenceDisconnectMsg": "Ilaq-ak·am ad tesneqdeḍ tuqqna-inek·inem ɣer uzeṭṭa. Allus n tuqqna deg {{seconds}} tisinin…",
|
|
210
|
+
"conferenceDisconnectTitle": "Tettwasuffɣeḍ.",
|
|
211
|
+
"conferenceReloadMsg": "Nettaɛraḍ ad nṣeggem aya. Allus n tuqqna deg {{seconds}} tisinin…",
|
|
212
|
+
"conferenceReloadTitle": "Nesḥassef, yella wayen ur nteddu ara akken ilaq.",
|
|
213
|
+
"confirm": "Sentem",
|
|
214
|
+
"confirmNo": "Uhu",
|
|
215
|
+
"confirmYes": "Ih",
|
|
216
|
+
"connectError": "Nesḥassef! Yella wayen ur nteddu ara akken iwata, ur nezmir ara ad neqqen ɣer usarag.",
|
|
217
|
+
"connectErrorWithMsg": "Nesḥassef! Yella wayen ur nteddu ara akken iwata, ur nezmir ara ad neqqen ɣer usarag: {{msg}}",
|
|
218
|
+
"connecting": "Yetteqqen",
|
|
219
|
+
"contactSupport": "Anermis n tallelt",
|
|
220
|
+
"copied": "Yenɣel",
|
|
221
|
+
"copy": "Nɣel",
|
|
222
|
+
"dismiss": "Agwi",
|
|
223
|
+
"displayNameRequired": "Azul! Isem-ik·im?",
|
|
224
|
+
"done": "Immed",
|
|
225
|
+
"e2eeDescription": "Awgelhen seg yixef er yixef d ARMITAN akka tura. Ma ulac aɣilif err deg walliɣ-ik·im armad n uwgelhen seg yixef ɣer yixef ad issens akken iwata imeẓla i d-yettwamudden tama n yiqeddacen am: usekles, asuddem usrid d uttekki s tiliɣri. Err deg wallaɣ-ik·im daɣen, timlilit ad teddu kan i yimdanen i yettekkan seg yiminiggen yessefraken aragen i izemren ad ttwaskecmen.",
|
|
226
|
+
"e2eeDisabledDueToMaxModeDescription": "Ur yezmir ara ad irmed awgelhen si ixef-ɣer-yixef acku aṭas i yellan n yimettekiyen.",
|
|
227
|
+
"e2eeLabel": "Tasarut E2EE",
|
|
228
|
+
"e2eeWarning": "Ɣur-k·m: Mačči akk imttekkiyen n temlilit-a ttbanen ssefraken awgelhen seg yixef ɣer yixef. Ma yella tesremdeḍ-t, ur ssawaḍen ara ad ak·am-id-walin, ur ssawaḍen ad ak·am-d-slen.",
|
|
229
|
+
"e2eeWillDisableDueToMaxModeDescription": "Ɣur-k.m: Awgelhen si ixef-ɣer-yixef ad yens s wudem awurman ma rnan-d ugar n yimettekiyen.",
|
|
230
|
+
"embedMeeting": "Sleɣ timlilit",
|
|
231
|
+
"enterDisplayName": "Ttxil-k·m sekcem isem-ik·im da",
|
|
232
|
+
"error": "Tuccḍa",
|
|
233
|
+
"gracefulShutdown": "Ameẓlu-nneɣ akka tura yensa i uṣeggem. Ma ulac aɣilif ɛreḍ tikkelt-nniḍen.",
|
|
234
|
+
"grantModeratorDialog": "Tebγiḍ s tidet ad tefkeḍ izerfan n usektem i {{participantName}}?",
|
|
235
|
+
"grantModeratorTitle": "Efk izerfan n usektem",
|
|
236
|
+
"hideShareAudioHelper": "Ur d-skan ara adiweni-agi tikelt nniḍen",
|
|
237
|
+
"incorrectPassword": "Isem n useqdac neɣ awal uffir ud arameɣt",
|
|
238
|
+
"incorrectRoomLockPassword": "Awal uffir d arameɣtu",
|
|
239
|
+
"internalError": "Nesḥassef! Yella wayen ur nteddu ara akken iwata. Tuccḍa i d-iteddun i d-yeḍran: {{error}}",
|
|
240
|
+
"internalErrorTitle": "Tuccḍa tagensant",
|
|
241
|
+
"kickMessage": "Tzemreḍ ad tremseḍ {{participantDisplayName}} i wugar n telqayt.",
|
|
242
|
+
"kickParticipantButton": "Suffeɣ",
|
|
243
|
+
"kickParticipantDialog": "Tebɣiḍ s tidet ad tsuffɣeḍ imttekki-a?",
|
|
244
|
+
"kickParticipantTitle": "Suffeɣ amttekki-a?",
|
|
245
|
+
"kickTitle": "Ay! {{participantDisplayName}} isuffeɣ-ik·ikem-d seg temlilit",
|
|
246
|
+
"liveStreaming": "Asuddem usrid",
|
|
247
|
+
"liveStreamingDisabledBecauseOfActiveRecordingTooltip": "D awezɣi ma yili yermed usekles",
|
|
248
|
+
"liveStreamingDisabledTooltip": "Beddu n usuddem usrid yensa.",
|
|
249
|
+
"localUserControls": "Isenqaden n useqdac adigan",
|
|
250
|
+
"lockMessage": "Asekkeṛ n usarag ur yeddi ara.",
|
|
251
|
+
"lockRoom": "Rnu timlilit $t(lockRoomPasswordUppercase)",
|
|
252
|
+
"lockTitle": "Asekkeṛ ur yeddi ara",
|
|
253
|
+
"login": "Aseqdac",
|
|
254
|
+
"logoutQuestion": "S tidet tebɣiḍ ad teffɣeḍ rnu ad tesḥebseḍ asarag?",
|
|
255
|
+
"logoutTitle": "Tufɣa",
|
|
256
|
+
"maxUsersLimitReached": "Talast n umḍan afellay n yimttekkiyen yewweḍ. Asarag yeččur. Ma ulac aɣilif nermes bab n temlilit neɣ ɛreḍ ticki!",
|
|
257
|
+
"maxUsersLimitReachedTitle": "Talast n usekles tewweḍ",
|
|
258
|
+
"micConstraintFailedError": "Asawaḍ-inek·inem ur iqudar ara kra n tlisa yettusran.",
|
|
259
|
+
"micNotFoundError": "Ur yettwawef ara usawaḍ.",
|
|
260
|
+
"micNotSendingData": "Ruḥ ɣer yiɣewwaren n uselkim-inek·inem i wakken ad talseḍ armad n usawaḍ-inek·inem, rnu semsawi aswir-ines",
|
|
261
|
+
"micNotSendingDataTitle": "Asawaḍ-inek·inem yettwasgugem seg yiɣewwaren n unagraw-inek·inem",
|
|
262
|
+
"micPermissionDeniedError": "Ur tefkiḍ ara tisirag i useqdec n usawa-inek·inem. Mazal tzemreḍ ad tettekkiḍ deg usarag maca wiyaḍ ur ak·akem-id-sellen ara. Seqdec taqeffalt n tkamiṛat deg ufeggag n tansiwin i wakken ad tefruḍ ugur.",
|
|
263
|
+
"micTimeoutError": "Ur yezmir ara ad ibdu aɣbalu n yimesli. Yemmut umenḍar!",
|
|
264
|
+
"micUnknownError": "Ur tezmireḍ ara ad tesqedceḍ asawaḍ, ur neẓri ara acuɣer.",
|
|
265
|
+
"moderationAudioLabel": "Sireg imttekiyen ad ksen iesli i yiman-nsen",
|
|
266
|
+
"moderationVideoLabel": "Sireg imttekiyen ad bdun tavidyut i yiman-nsen",
|
|
267
|
+
"muteEveryoneDialog": "Tebɣiḍ s tidet ad tsenseḍ yal yiwen? Ur tettizmireḍ ara ad talseḍ armad-nsen, maca zemren ad alsen armad melmi i bɣan.",
|
|
268
|
+
"muteEveryoneDialogModerationOn": "Zemren imttekiyen ad aznen asuter n umeslay deg yal lawan.",
|
|
269
|
+
"muteEveryoneElseDialog": "Akken ara yens yimesli, ur tettizmireḍ ara ad talseḍ armad-ines, maca zemren ad alsen armad-ines melmi i bɣan.",
|
|
270
|
+
"muteEveryoneElseTitle": "Sgugem yal yiwen slid {{whom}}?",
|
|
271
|
+
"muteEveryoneElsesVideoDialog": "Ticki takamiṛat tensa, ur tettizmireḍ ara ad talseḍ armad-ines, maca nutni zemren ad alsen armad-ines melmi i bɣan.",
|
|
272
|
+
"muteEveryoneElsesVideoTitle": "Seḥbes tavidyut n yal yiwen ala {{whom}}?",
|
|
273
|
+
"muteEveryoneSelf": "iman-ik·im",
|
|
274
|
+
"muteEveryoneStartMuted": "Yal yiwen ad yebdu s tsusmi seg tura",
|
|
275
|
+
"muteEveryoneTitle": "Sgugem yal yiwen?",
|
|
276
|
+
"muteEveryonesVideoDialog": "Zemren imttekiyen ad remden tavidyut-nsen deg yal lawan.",
|
|
277
|
+
"muteEveryonesVideoDialogModerationOn": "Zemren imttekiyen ad aznen asuter ad remden tavidyut-nsen deg yal lawan.",
|
|
278
|
+
"muteEveryonesVideoDialogOk": "Désactiver",
|
|
279
|
+
"muteEveryonesVideoTitle": "Seḥbes tavidyut n yal yiwen?",
|
|
280
|
+
"muteParticipantBody": "Ur tettizmireḍ ara ad talseḍ armad-nsen, maca zemren ad alsen armad melmi i bɣan.",
|
|
281
|
+
"muteParticipantButton": "Kkes imesli",
|
|
282
|
+
"muteParticipantDialog": "Tebɣiḍ s tidet ad tsenseḍ imttekki-a? Ur tettizmireḍ ara ad talseḍ armad-nsen, maca zemren ad alsen armad melmi i bɣan.",
|
|
283
|
+
"muteParticipantTitle": "Sgugem imttekki-a?",
|
|
284
|
+
"muteParticipantsVideoBody": "Ur tezmareḍ ara ad talseḍ armad n tkamiṛat , maca zemren ad alsen armad melmi i bɣan.",
|
|
285
|
+
"muteParticipantsVideoButton": "Seḥbes tavidyut n Youtube",
|
|
286
|
+
"muteParticipantsVideoDialog": "Tebɣiḍ s tidet ad tsenseḍ takamiṛat n umttekki-a? Ur tettizmireḍ ara ad talseḍ armad-is, maca nutni zemren ad alsen armad melmi i bɣan.",
|
|
287
|
+
"muteParticipantsVideoTitle": "Seḥbes takamiṛat n yimttekki-a?",
|
|
288
|
+
"noDropboxToken": "Ajiṭun n Dropbox mačči d ameɣtu",
|
|
289
|
+
"password": "Awal uffir",
|
|
290
|
+
"passwordLabel": "Timlilit tettwamdel sɣur yiwen yimttekki. Ttil-k·m sekcem $t(lockRoomPassword) i uttekki.",
|
|
291
|
+
"passwordNotSupported": "Iɣewwaren n temlilit $t(lockRoomPassword) ur ttusefraken ara.",
|
|
292
|
+
"passwordNotSupportedTitle": "$t(lockRoomPasswordUppercase) ur yettusefrak ara",
|
|
293
|
+
"passwordRequired": "$t(lockRoomPasswordUppercase) yettusra",
|
|
294
|
+
"permissionCameraRequiredError": "Tasiregt n tkamiṛat tettwasra i uttekki deg yisaragen s tvidyut. Ma ulac aɣilif, sireg-itt deg Yiɣewwaren",
|
|
295
|
+
"permissionErrorTitle": "Isra tisirag",
|
|
296
|
+
"permissionMicRequiredError": "Tasiregt n usawad tettwasra i uttekki deg yisaragen s umeslaw. Ma ulac aɣilif, sireg-it deg Yiɣewwaren",
|
|
297
|
+
"popupError": "Iminig-ik·im yessewḥal isfuyla udhimen n usmel-a. Ma ulac aɣilif rmed isfuyla udhimen deg yiɣewwaren n yiminig-inek·inem syen ɛreḍ tikkelt-nniḍen.",
|
|
298
|
+
"popupErrorTitle": "Isfuyla udhimen ttusweḥlen",
|
|
299
|
+
"readMore": "ugar",
|
|
300
|
+
"recording": "Asekles",
|
|
301
|
+
"recordingDisabledBecauseOfActiveLiveStreamingTooltip": "D awezɣi ma yili yermed usuddem usrid",
|
|
302
|
+
"recordingDisabledTooltip": "Beddu n usekles yensa.",
|
|
303
|
+
"rejoinNow": "Rnu tura",
|
|
304
|
+
"remoteControlAllowedMessage": "{{user}} yeqbel asuter-ik·im n usenqed anmeggag!",
|
|
305
|
+
"remoteControlDeniedMessage": "{{user}} yugi asuter-ik·im n usenqed anmeggag!",
|
|
306
|
+
"remoteControlErrorMessage": "Tella-d tuccḍa mi ara nettaɛraḍ ad nsuter tisirag n usenqed anmeggag seg {{user}}!",
|
|
307
|
+
"remoteControlRequestMessage": "Tebɣam ad tsirgem {{user}} ad yessenqed tanarit-nwen?",
|
|
308
|
+
"remoteControlShareScreenWarning": "Err ddehn-ik·im, ma yella tsateḍ ɣef \"Sireg\" ad tebḍuḍ agdil-inek·inem!",
|
|
309
|
+
"remoteControlStopMessage": "Tiɣimit n usenqed anmeggag tfukk!",
|
|
310
|
+
"remoteControlTitle": "Asenqed agemmaḍ n tnarit",
|
|
311
|
+
"remoteUserControls": "Isenqaden n useqdac anmeggag n {{username}}",
|
|
312
|
+
"removePassword": "Kkes $t(lockRoomPassword)",
|
|
313
|
+
"removeSharedVideoMsg": "D tidet tebɣiḍ ad tekkseḍ tavidyut-inek·inem yettwabḍan?",
|
|
314
|
+
"removeSharedVideoTitle": "Kkes tavidyut yettwabḍan",
|
|
315
|
+
"reservationError": "Tuccḍa deg unagraw n uḥerri",
|
|
316
|
+
"reservationErrorMsg": "Tangalt n tuccḍa: {{code}}, izen: {{msg}}",
|
|
317
|
+
"retry": "Ɛreḍ tikkelt-nniḍen",
|
|
318
|
+
"screenSharingAudio": "Bḍu ameslaw",
|
|
319
|
+
"screenSharingFailed": "Suref-aɣ! Yella wayen ur neddi ara akken iwata, ur nessaweḍ ara ad nsenker beṭṭu n ugdil!",
|
|
320
|
+
"screenSharingFailedTitle": "Beṭṭu n ugdil ur yeddi ara!",
|
|
321
|
+
"screenSharingPermissionDeniedError": "Nesḥassef! Yella wayen ur nteddu ara akken iwata d tsirag n beṭṭu n ugdil. Ma ulac aɣilif ales asali syen ɛreḍ tikkelt-nniḍen.",
|
|
322
|
+
"sendPrivateMessage": "Tremseḍ-d melmi kan izen uslig. Tebɣiḍ ad terreḍ fell-as s wudem uslig neɣ tebɣiḍ ad tazneḍ izen-inek·inem ɣer ugraw?",
|
|
323
|
+
"sendPrivateMessageCancel": "Azen ɣer ugraw",
|
|
324
|
+
"sendPrivateMessageOk": "Azen s wudem uslig",
|
|
325
|
+
"sendPrivateMessageTitle": "Azen s wudem uslig?",
|
|
326
|
+
"serviceUnavailable": "Ulac ameẓlu",
|
|
327
|
+
"sessTerminated": "Yekfa usiwel",
|
|
328
|
+
"sessionRestarted": "Allus n usenker n usiwel s ttawil n tqenṭert",
|
|
329
|
+
"shareAudio": "Continuer",
|
|
330
|
+
"shareAudioTitle": "Amek ara tebḍuḍ imesli",
|
|
331
|
+
"shareAudioWarningD1": "ilaq ad tesḥebseḍ beṭṭu n ugdil send beṭṭu n yimesli inek.inem.",
|
|
332
|
+
"shareAudioWarningD2": "tesriḍ ad talseḍ asenker n beṭṭu n ugdil rnu senqed taxtiṛt \"bḍu ameslaw\".",
|
|
333
|
+
"shareAudioWarningH1": "Ma yella tebɣiḍ ad tebḍuḍ kan ameslaw:",
|
|
334
|
+
"shareAudioWarningTitle": "Ilaq ad tesḥebseḍ beṭṭu n ugdil send beṭṭu n umeslaw",
|
|
335
|
+
"shareMediaWarningGenericH2": "Ma yella tebɣiḍ ad tebḍuḍ agdil d umeslaw",
|
|
336
|
+
"shareScreenWarningD1": "ilaq ad tesḥebseḍ beṭṭu n umeslaw send beṭṭu n ugdil.",
|
|
337
|
+
"shareScreenWarningD2": "tesriḍ ad tesḥebseḍ beṭṭu n umeslaw, senker beṭṭu n ugdil rnu senqed taxtiṛt \"bḍu ameslaw\".",
|
|
338
|
+
"shareScreenWarningH1": "Ma yella tebɣiḍ ad tebḍuḍ kan agdil:",
|
|
339
|
+
"shareScreenWarningTitle": "Ilaq ad tesḥebseḍ beṭṭu n umeslaw send beṭṭu n ugdil",
|
|
340
|
+
"shareVideoLinkError": "Ttxil-k·m mudd-d aseɣwen n Youtube ameɣtu.",
|
|
341
|
+
"shareVideoTitle": "Bḍu tavidyut",
|
|
342
|
+
"shareYourScreen": "Bḍut agdil-ik·im",
|
|
343
|
+
"shareYourScreenDisabled": "Beṭṭu n ugdil yensa.",
|
|
344
|
+
"sharedVideoLinkPlaceholder": "Aseɣwen n Youtube neɣ aseɣwen n tvidyut srid",
|
|
345
|
+
"startLiveStreaming": "Bdu asuddem usrid",
|
|
346
|
+
"startRecording": "Bdu asekles",
|
|
347
|
+
"startRemoteControlErrorMessage": "Tella-d tuccḍa mi nettaɛraḍ ad nebdu tiɣimit n usenqed anmeggag!",
|
|
348
|
+
"stopLiveStreaming": "Seḥbes asuddem usrid",
|
|
349
|
+
"stopRecording": "Seḥbes asekles",
|
|
350
|
+
"stopRecordingWarning": "S tidet tebɣiḍ ad tesḥebseḍ asekles?",
|
|
351
|
+
"stopStreamingWarning": "S tidet tebɣiḍ ad tesḥebseḍ asuddem usrid?",
|
|
352
|
+
"streamKey": "Tasarut n usuddem usrid",
|
|
353
|
+
"thankYou": "Tanemmirt ɣef useqdec n {{appName}}!",
|
|
354
|
+
"token": "ajuṭu",
|
|
355
|
+
"tokenAuthFailed": "Suref-aɣ, ur tesɛiḍ ara tisirag ad tettekkiḍ deg usiwel-a.",
|
|
356
|
+
"tokenAuthFailedTitle": "Asesteb ur yeddi ara",
|
|
357
|
+
"transcribing": "Aseskel",
|
|
358
|
+
"unlockRoom": "Kkes timlilit $t(lockRoomPassword)",
|
|
359
|
+
"user": "Aseqdac",
|
|
360
|
+
"userIdentifier": "Asulay n useqdac",
|
|
361
|
+
"userPassword": "Awal uffir n useqdac",
|
|
362
|
+
"videoLink": "Aseɣwen n tvidyut",
|
|
363
|
+
"viewUpgradeOptions": "Wali iɣewaṛen n uleqqem",
|
|
364
|
+
"viewUpgradeOptionsContent": "I wakken ad tesεuḍ anekcum war talast ɣer tmahilin premium am usekles, azemmem, asuddem RTMP & wayen-nniḍen, ilaq ad tleqqmeḍ aɣawas-ik·im.",
|
|
365
|
+
"viewUpgradeOptionsTitle": "Tufid-d tamahilt premium!",
|
|
366
|
+
"yourEntireScreen": "Meṛṛa agdil-inek·inem"
|
|
367
|
+
},
|
|
368
|
+
"documentSharing": {
|
|
369
|
+
"title": "Yebḍa isemli"
|
|
370
|
+
},
|
|
371
|
+
"e2ee": {
|
|
372
|
+
"labelToolTip": "Taywalt s umeslaw akked tvidyut deg usiwel-a tettwawgelhen seg yixef ɣer yixef"
|
|
373
|
+
},
|
|
374
|
+
"embedMeeting": {
|
|
375
|
+
"title": "Sleɣ timlilit-a"
|
|
376
|
+
},
|
|
377
|
+
"feedback": {
|
|
378
|
+
"average": "D alemmas",
|
|
379
|
+
"bad": "Diri-t",
|
|
380
|
+
"detailsLabel": "Ini-yi-d ugar fell-as.",
|
|
381
|
+
"good": "Yelha",
|
|
382
|
+
"rateExperience": "Ttxil-k·m ktazel tarmit-ik·im n temlilit",
|
|
383
|
+
"star": "Itri",
|
|
384
|
+
"veryBad": "Diri-t maḍi",
|
|
385
|
+
"veryGood": "Yelha maḍi"
|
|
386
|
+
},
|
|
387
|
+
"helpView": {
|
|
388
|
+
"title": "Agens n tallalt"
|
|
389
|
+
},
|
|
390
|
+
"incomingCall": {
|
|
391
|
+
"answer": "Tiririt",
|
|
392
|
+
"audioCallTitle": "Asiwel i ikcem-d",
|
|
393
|
+
"decline": "Agwi",
|
|
394
|
+
"productLabel": "seg Corptime Conference",
|
|
395
|
+
"videoCallTitle": "Asiwel s tvidyut ikcem-d"
|
|
396
|
+
},
|
|
397
|
+
"info": {
|
|
398
|
+
"accessibilityLabel": "Sken talɣut",
|
|
399
|
+
"addPassword": "Rnu $t(lockRoomPassword)",
|
|
400
|
+
"cancelPassword": "Sefsex $t(lockRoomPassword)",
|
|
401
|
+
"conferenceURL": "Aseɣwen:",
|
|
402
|
+
"copyNumber": "Nɣel uṭṭun",
|
|
403
|
+
"country": "Tamurt",
|
|
404
|
+
"dialANumber": "I uttekki deg temlilit-inek·inem, suddes yiwen seg wuṭṭunen-a syen sekcem tangalt pin.",
|
|
405
|
+
"dialInConferenceID": "PIN:",
|
|
406
|
+
"dialInNotSupported": "Suref-aɣ, tuqqna akka tura ur yettusefrak ara.",
|
|
407
|
+
"dialInNumber": "Suddes uṭṭun:",
|
|
408
|
+
"dialInSummaryError": "Tella-d tuccḍa deg tririt n telɣut n tuqqna, tura. Ma ulac aɣilif ɛreḍ tikkelt-nniḍen ticki.",
|
|
409
|
+
"dialInTollFree": "Siwel baṭel",
|
|
410
|
+
"genericError": "Suref-aɣ, yella wayen ur nteddu ara akken iwata.",
|
|
411
|
+
"inviteLiveStream": "I uwali n usuddem usrid n temlilit-a, sit ɣef useɣwen-a: {{url}}",
|
|
412
|
+
"invitePhone": "I uttekki s tiliɣri, sit da: {{number}},,{{conferenceID}}#\n",
|
|
413
|
+
"invitePhoneAlternatives": "Tettnadiḍ uṭṭun-nniḍen n usiwel?\nWali uṭṭunen n tiliɣri i temlilit: {{url}}\n\n\nMa yella teqqneḍ s tilifun n texxamt, ttekki war ma teqqneḍ ɣer umeslaw: {{silentUrl}}",
|
|
414
|
+
"inviteSipEndpoint": "I tmerna s useqdec n tansa n SIP, sekcem wa: {{sipUri}}",
|
|
415
|
+
"inviteTextiOSInviteUrl": "Sit ɣef useɣwen-a i wakken ad ternuḍ: {{inviteUrl}}.",
|
|
416
|
+
"inviteTextiOSJoinSilent": "Ma yella tetteqneḍ s wuṭṭun n texxamt, seqdec aseɣwen-a i wakken ad ternuḍ war ma teqqneḍ ɣer umeslaw: {{silentUrl}}.",
|
|
417
|
+
"inviteTextiOSPersonal": "{{name}} isnubget-ik·ikem ɣer temlilit.",
|
|
418
|
+
"inviteTextiOSPhone": "I tmerna s wuṭṭun n tiliɣri, seqdec uṭṭun-a: {{number}},,{{conferenceID}}#. Ma yella tettnadiḍ uṭṭun-nniḍen, ha-tt-a tebdart teččur: {{didUrl}}.",
|
|
419
|
+
"inviteURLFirstPartGeneral": "Tettwanecdeḍ ad tettekkiḍ deg temlilit.",
|
|
420
|
+
"inviteURLFirstPartPersonal": "{{name}} isnubget-ik·ikem ɣer temlilit.\n",
|
|
421
|
+
"inviteURLSecondPart": "\nRnu ɣer temlilit:\n{{url}}\n",
|
|
422
|
+
"label": "Talɣut n temlilit",
|
|
423
|
+
"liveStreamURL": "Asuddim usrid:",
|
|
424
|
+
"moreNumbers": "Ugar n wuṭṭunen",
|
|
425
|
+
"noNumbers": "Ulac uṭṭun n usiwel.",
|
|
426
|
+
"noPassword": "Ula d yiwen",
|
|
427
|
+
"noRoom": "Ulac taxxamt i yettwafernen i usiwel ɣer-s.",
|
|
428
|
+
"numbers": "Uṭṭunen n usiwel",
|
|
429
|
+
"password": "$t(lockRoomPasswordUppercase) :",
|
|
430
|
+
"sip": "Tansiwin SIP",
|
|
431
|
+
"title": "Bḍu",
|
|
432
|
+
"tooltip": "Bḍu aseɣwen d telɣut n tuqqna n temlilit-a"
|
|
433
|
+
},
|
|
434
|
+
"inlineDialogFailure": {
|
|
435
|
+
"msg": "Yewwet-aɣ ciṭuḥ wugur.",
|
|
436
|
+
"retry": "Ɛreḍ tikkelt-nniḍen",
|
|
437
|
+
"support": "Tallalt",
|
|
438
|
+
"supportMsg": "Ma yella aya mazal iḍerru, nermes-aɣ-d ɣer"
|
|
439
|
+
},
|
|
440
|
+
"inviteDialog": {
|
|
441
|
+
"alertText": "Ancad n kra n yimttekkiyen ur yeddi ara.",
|
|
442
|
+
"header": "Nced",
|
|
443
|
+
"searchCallOnlyPlaceholder": "Sekcem uṭṭun n tiliɣri",
|
|
444
|
+
"searchPeopleOnlyPlaceholder": "Nadi imttekkiyen",
|
|
445
|
+
"searchPlaceholder": "Imttekki neɣ uṭṭun n tiliɣri",
|
|
446
|
+
"send": "Azen"
|
|
447
|
+
},
|
|
448
|
+
"jitsiHome": "{{logo}} Alugu, iseɣwan ɣer usebter agejdan",
|
|
449
|
+
"keyboardShortcuts": {
|
|
450
|
+
"focusLocal": "Err ddehn-ik·im ɣer tavidiyut-ik·im",
|
|
451
|
+
"focusRemote": "Err ddehn-ik·im ɣer tvdyutin n wiyaḍ",
|
|
452
|
+
"fullScreen": "Rmed neɣ ffeɣ seg ugdil aččuran",
|
|
453
|
+
"keyboardShortcuts": "Inegzumen n unasiw",
|
|
454
|
+
"localRecording": "Sken neɣ ffer isenqaden idiganen n usekles",
|
|
455
|
+
"mute": "Rmed neɣ sens asawaḍ",
|
|
456
|
+
"pushToTalk": "Sit akken ad temmeslayeḍ",
|
|
457
|
+
"raiseHand": "Sali neɣ ṣubb afus-ik·im",
|
|
458
|
+
"showSpeakerStats": "Sken addaden n yimsiwel",
|
|
459
|
+
"toggleChat": "Ldi neɣ mdel agalis n usqerdec",
|
|
460
|
+
"toggleFilmstrip": "Sken neɣ ffer tinfulin n tvidyutin",
|
|
461
|
+
"toggleParticipantsPane": "Sken neɣ ffer agalis n yimttekkiyen",
|
|
462
|
+
"toggleScreensharing": "Uɣal gar tkamiṛat d beṭṭu n ugdil",
|
|
463
|
+
"toggleShortcuts": "Sken neɣ ffer inegzumen n unasiw",
|
|
464
|
+
"videoMute": "Sker neɣ seḥbes takamiṛat inek·inem"
|
|
465
|
+
},
|
|
466
|
+
"liveStreaming": {
|
|
467
|
+
"busy": "Aql-aɣ nxeddem ad d-neslelli tiɣbula n usuddem. Ma ulac aɣilif, ɛreḍ tikkelt-nniḍen deg kra n tesdidin.",
|
|
468
|
+
"busyTitle": "Meṛṛa igalisen akka tura ceɣlen",
|
|
469
|
+
"changeSignIn": "Beddel imiḍanen.",
|
|
470
|
+
"choose": "Fren asuddem usrid",
|
|
471
|
+
"chooseCTA": "Fren taxtiṛit n usuddem. Aql-ak·akem tura tkecmeḍ s {{email}}.",
|
|
472
|
+
"enterStreamKey": "Sekcem tasarut-ik·im n usuddem usrid n Youtube da.",
|
|
473
|
+
"error": "Asuddem usrid ur yeddi ara. Ttxilek ɛreḍ tikkelt-nniḍen.",
|
|
474
|
+
"errorAPI": "Tella-d tuccḍa deg unekcum ɣer tnezwit-inek·inem ɣef Youtube. Ma ulac aɣilif ɛreḍ anekcum tikkelt-nniḍen.",
|
|
475
|
+
"errorLiveStreamNotEnabled": "Asuddem usrid ur yettwarmed ara deg {{email}}. Ma ulac aɣilif rmed asuddem usrid neɣ kcem ɣer umiḍan s usuddem usrid yettwaremden.",
|
|
476
|
+
"expandedOff": "Asuddes usrid yettuseḥbes",
|
|
477
|
+
"expandedOn": "Timlilit ha-tt-a akka tura tettɛeddi-d deg Youtuba.",
|
|
478
|
+
"expandedPending": "Asuddem usrid ha-t-an ad yebdu…",
|
|
479
|
+
"failedToStart": "Ur yesmurres wusrid deg uqlaɛ",
|
|
480
|
+
"getStreamKeyManually": "Ur nessaweḍ ara ad d-nerr ula d yiwen n usuddem usrid. Ɛreḍ ad d-tawiḍ tasarut-ik·im n usuddem usrid seg Youtube.",
|
|
481
|
+
"googlePrivacyPolicy": "Tasertit tabaḍnit n Google",
|
|
482
|
+
"invalidStreamKey": "Tasarut n usuddem usrid yezmer mačči d tameɣtut.",
|
|
483
|
+
"limitNotificationDescriptionNative": "Asuddem-inek·inem ad yesɛu kan {{limit}} tesdidin. I usuddem war talast ɛreḍ {{app}}.",
|
|
484
|
+
"limitNotificationDescriptionWeb": "Seg wakken yegget usuter, asuddem-inek·inem ad yesɛu talast n {{limit}} tesdidin. I usuddem n war tilas, ɛreḍ <a href={{url}} rel='noopener noreferrer' target='_blank'>{{app}}</a>.",
|
|
485
|
+
"off": "Asuddem usrid yettuḥbes",
|
|
486
|
+
"offBy": "{{name}} iseḥbes asuddem usrid",
|
|
487
|
+
"on": "Yebda usuddem usrid",
|
|
488
|
+
"onBy": "{{name}} yebda asuddem usrid",
|
|
489
|
+
"pending": "Beddu n usuddem usrid…",
|
|
490
|
+
"serviceName": "Ameẓlu n usuddem usrid",
|
|
491
|
+
"signIn": "Qqen s Google",
|
|
492
|
+
"signInCTA": "Qqen neɣ sekcem tasarut-ik·im n usuddem usrid seg Youtube.",
|
|
493
|
+
"signOut": "Ffeɣ",
|
|
494
|
+
"signedInAs": "Aql-ak·akem akka tura teqqneḍ d:",
|
|
495
|
+
"start": "Bdu asuddem usrid",
|
|
496
|
+
"streamIdHelp": "D acu-t wa?",
|
|
497
|
+
"unavailableTitle": "Ulac asuddem usrid",
|
|
498
|
+
"youtubeTerms": "Tiwtilin n yimeẓla n Youtube"
|
|
499
|
+
},
|
|
500
|
+
"lobby": {
|
|
501
|
+
"allow": "Sireg",
|
|
502
|
+
"backToKnockModeButton": "Ulac awal uffir, suter attekki deg ubdil-is",
|
|
503
|
+
"dialogTitle": "Askar Lobby",
|
|
504
|
+
"disableDialogContent": "Askar Lobby akka tura yettwarmed. Tamahilt-a ad teḍmen timlilit-ik·im seg yir imttekkiyen, ur ttizmiren ara ad d-kecmen ɣer-s. Tebɣiḍ ad tt-tsenseḍ?",
|
|
505
|
+
"disableDialogSubmit": "Sens",
|
|
506
|
+
"emailField": "Sekcem tansa-inek·inem n yimayl",
|
|
507
|
+
"enableDialogPasswordField": "Sbadu awal uffir (d afrayan)",
|
|
508
|
+
"enableDialogSubmit": "Rmed",
|
|
509
|
+
"enableDialogText": "Askar Lobby ad yeǧǧ timlilit-ik·im tettummesten s usireg n unekcum n yimdanen seld aqbal alɣan sɣur amaẓrag.",
|
|
510
|
+
"enterPasswordButton": "Sekcem awal uffir n temlilit",
|
|
511
|
+
"enterPasswordTitle": "Sekcem awal uffir i uttekki deg temlilit",
|
|
512
|
+
"errorMissingPassword": "Ma ulac aɣilif, sekcem awal n uεeddi n temlilit",
|
|
513
|
+
"invalidPassword": "Yir awal uffir",
|
|
514
|
+
"joinRejectedMessage": "Asuter-inek·inem n uttekki yettwagi sɣur amaẓrag.",
|
|
515
|
+
"joinTitle": "Ttekki deg temlilit",
|
|
516
|
+
"joinWithPasswordMessage": "Aneɛruḍ n uttekki s wawal uffir, ttxil-k·m rǧu…",
|
|
517
|
+
"joiningMessage": "Ad tettekkiḍ deg temlilit akken kan ara yeqbel walbaɛḍ asuter-inek·inem",
|
|
518
|
+
"joiningTitle": "Asuter n uttekki deg temlilit…",
|
|
519
|
+
"joiningWithPasswordTitle": "Attekki s wawal uffir…",
|
|
520
|
+
"knockButton": "Suter attekki",
|
|
521
|
+
"knockTitle": "Yella win yebɣan ad ittekki deg temlilit",
|
|
522
|
+
"knockingParticipantList": "Tadbart n yimttekkiyen n usṭebṭeb",
|
|
523
|
+
"nameField": "Sekcem isem-ik·im",
|
|
524
|
+
"notificationLobbyAccessDenied": "{{targetParticipantName}} yettwagi ad yernu sɣur {{originParticipantName}}",
|
|
525
|
+
"notificationLobbyAccessGranted": "{{targetParticipantName}} yettusireg ad yernu sɣur {{originParticipantName}}",
|
|
526
|
+
"notificationLobbyDisabled": "Lobby yettwasens sɣur {{originParticipantName}}",
|
|
527
|
+
"notificationLobbyEnabled": "Lobby yettwarmed sɣur {{originParticipantName}}",
|
|
528
|
+
"notificationTitle": "Taxxamt n uraǧu",
|
|
529
|
+
"passwordField": "Sekcem awal uffir n temlilit",
|
|
530
|
+
"passwordJoinButton": "Semlil",
|
|
531
|
+
"title": "Taxxamt n uraǧu",
|
|
532
|
+
"toggleLabel": "Rmed Lobby"
|
|
533
|
+
},
|
|
534
|
+
"localRecording": {
|
|
535
|
+
"clientState": {
|
|
536
|
+
"off": "Insa",
|
|
537
|
+
"on": "Irmed",
|
|
538
|
+
"unknown": "D arussin"
|
|
539
|
+
},
|
|
540
|
+
"dialogTitle": "Isenqaden n usekles adigan",
|
|
541
|
+
"duration": "Tanzagt",
|
|
542
|
+
"durationNA": "N/A",
|
|
543
|
+
"encoding": "Asettengel",
|
|
544
|
+
"label": "LOR",
|
|
545
|
+
"labelToolTip": "Asekles adigan iteddu",
|
|
546
|
+
"localRecording": "Asekles adigan",
|
|
547
|
+
"me": "Nekk",
|
|
548
|
+
"messages": {
|
|
549
|
+
"engaged": "Asekles adigan yedda.",
|
|
550
|
+
"finished": "Asekles n tɣimit {{token}} yemmed. Ttxil-k·m azen afaylu yettwaskelsen i umaẓrag.",
|
|
551
|
+
"finishedModerator": "Asekles n tɣimit {{token}} ifukk. Asekles n umeslaw adigan yettwaḥrez. Ma ulac aɣilif suter deg yimttekkiyen-nniḍen ad d-aznen iseklas-nsen.",
|
|
552
|
+
"notModerator": "Kečč·kemm mačči d amaẓrag. Ur tezmireḍ ara ad tebduḍ neɣ ad tesḥebseḍ asekles adigan."
|
|
553
|
+
},
|
|
554
|
+
"moderator": "Aseɣyad",
|
|
555
|
+
"no": "Uhu",
|
|
556
|
+
"participant": "Imttekki",
|
|
557
|
+
"participantStats": "Addad n yimttekki",
|
|
558
|
+
"sessionToken": "Ajuṭu n tɣimit",
|
|
559
|
+
"start": "Bdu asekles",
|
|
560
|
+
"stop": "Seḥbes asekles",
|
|
561
|
+
"yes": "Ih"
|
|
562
|
+
},
|
|
563
|
+
"lockRoomPassword": "awal uffir",
|
|
564
|
+
"lockRoomPasswordUppercase": "Mot de passe",
|
|
565
|
+
"lonelyMeetingExperience": {
|
|
566
|
+
"button": "Snubget-d wiyaḍ",
|
|
567
|
+
"youAreAlone": "D kečč·kemm kan i yellan deg temlilit"
|
|
568
|
+
},
|
|
569
|
+
"me": "nek",
|
|
570
|
+
"notify": {
|
|
571
|
+
"OldElectronAPPTitle": "Ur teǧhid ara tɣellist!",
|
|
572
|
+
"allowAction": "Sireg",
|
|
573
|
+
"allowedUnmute": "Tzemreḍ ad tekkseḍ asgugem i usawaḍ-ik·im, ad tesnekreḍ takamiṛat neɣ ad tebḍuḍ agdil.",
|
|
574
|
+
"connectedOneMember": "{{name}} yerna ɣer temlilit",
|
|
575
|
+
"connectedThreePlusMembers": "{{name}} d {{count}} wiyaḍ rnan ɣer temlilit",
|
|
576
|
+
"connectedTwoMembers": "{{first}} d {{second}} rnan ɣer temlilit",
|
|
577
|
+
"disconnected": "yeffeɣ",
|
|
578
|
+
"focus": "Afukus n usarag",
|
|
579
|
+
"focusFail": "{{component}} ulac-it - ɛreḍ deg {{ms}} tesinin",
|
|
580
|
+
"groupTitle": "Ilɣa",
|
|
581
|
+
"hostAskedUnmute": "Imḍebber yebɣa ad temmeslayeḍ",
|
|
582
|
+
"invitedOneMember": "{{name}} yettwanced-d",
|
|
583
|
+
"invitedThreePlusMembers": "{{name}} d {{count}} wiyaḍ ttwanecden-d",
|
|
584
|
+
"invitedTwoMembers": "{{first}} d {{second}} ttwanecden-d",
|
|
585
|
+
"kickParticipant": "{{kicked}} isuffeɣ-it {{kicker}}",
|
|
586
|
+
"me": "Nekk",
|
|
587
|
+
"moderationInEffectCSDescription": "Ma ulac aɣilif, rfed afus-ik·im ma tebɣiḍ ad tebḍuḍ agdil.",
|
|
588
|
+
"moderationInEffectCSTitle": "Beṭṭu n ugdil yettusewḥel sɣur yimḍebber",
|
|
589
|
+
"moderationInEffectDescription": "Ma ulac aɣilif, rfed afus-ik·im ma tebɣiḍ ad temmeslayeḍ.",
|
|
590
|
+
"moderationInEffectTitle": "Asawaḍ-ik·im yettwasgugem sɣur yimḍebber",
|
|
591
|
+
"moderationInEffectVideoDescription": "Ma ulac aɣilif, rfed afus-ik·im ma tebɣiḍ ad tesnekreḍ takamiṛat.",
|
|
592
|
+
"moderationInEffectVideoTitle": "Takamiṛat-ik·im tettusewḥel sɣur yimḍebber",
|
|
593
|
+
"moderationRequestFromModerator": "Asenneftaɣ yebɣa ad tekkseḍ asgugem",
|
|
594
|
+
"moderationRequestFromParticipant": "Ibɣa ad imeslay",
|
|
595
|
+
"moderationStartedTitle": "Asektem yebda",
|
|
596
|
+
"moderationStoppedTitle": "Asektem yensa",
|
|
597
|
+
"moderationToggleDescription": "sɣur {{participantDisplayName}}",
|
|
598
|
+
"moderator": "Izerfan n usektem ttwamudden",
|
|
599
|
+
"muted": "Tebdiḍ asqerdec s tsusmi.",
|
|
600
|
+
"mutedRemotelyDescription": "Tzemreḍ ad d-terreḍ imesli melmi i tebɣiḍ ad d-temmeslayeḍ. Sens-it mi ara tfakkeḍ ameslay i wakken ad tesbeɛdeḍ zzhir ɣef temlilit.",
|
|
601
|
+
"mutedRemotelyTitle": "Yesgugem-ik·ikem {{moderator}}",
|
|
602
|
+
"mutedTitle": "Tettwasgugmeḍ!",
|
|
603
|
+
"newDeviceAction": "Seqdec",
|
|
604
|
+
"newDeviceAudioTitle": "Ibenk amaynut n umeslaw yettwaf-d",
|
|
605
|
+
"newDeviceCameraTitle": "Tettwaf-d tkamiṛat tamaynut",
|
|
606
|
+
"oldElectronClientDescription1": "Akka i nettwali tesseqdaceḍ lqem aqbur n umsaɣ Corptime Conference i yesɛan uguren n tɣellist yettwassnen. Ma ulac aɣilif ḍmen ad tleqqmeḍ ",
|
|
607
|
+
"oldElectronClientDescription2": "lqem akk aneggaru",
|
|
608
|
+
"oldElectronClientDescription3": " tura!",
|
|
609
|
+
"passwordRemovedRemotely": "$t(lockRoomPasswordUppercase) yettwakkes sɣur yimttekki-nniḍen",
|
|
610
|
+
"passwordSetRemotely": "$t(lockRoomPasswordUppercase) yettusbadu sɣur yimttekki-nniḍen",
|
|
611
|
+
"raiseHandAction": "Rfed afus",
|
|
612
|
+
"raisedHand": "{{name}} yebɣa ad d-yemmeslay.",
|
|
613
|
+
"reactionSounds": "Sens imesli",
|
|
614
|
+
"screenShareNoAudio": " Tabewwaḍt n umeslaw n beṭṭu ur tettwaṛcam ara deg ugdil n tefrant n usfaylu.",
|
|
615
|
+
"screenShareNoAudioTitle": "Ur yezmir ara ad yebḍu ameslaw n unagraw!",
|
|
616
|
+
"somebody": "Albaɛḍ",
|
|
617
|
+
"startSilentDescription": "Ttekki deg temlilit i wakken ad tremdeḍ ameslaw",
|
|
618
|
+
"startSilentTitle": "Terniḍ s war tuffɣa n umeslaw!",
|
|
619
|
+
"suboptimalBrowserWarning": "Nkukra ɣef termit-ik·im n temlilit ur tettili ara tgerrez da. Nettmuqul ttawilat s wamek ara nqeɛɛed aya, maca sya ɣer yimir ɛreḍ ad tesqedceḍ yiwen seg <a href='{{recommendedBrowserPageLink}}' target='_blank'>yiminigen yettusefraken s lekmal</a>.",
|
|
620
|
+
"suboptimalExperienceTitle": "Alɣu n yiminig",
|
|
621
|
+
"unmute": "Sgugem",
|
|
622
|
+
"videoMutedRemotelyDescription": "Tzemreḍ ad ad t-tremdeḍ melmi tebɣiḍ.",
|
|
623
|
+
"videoMutedRemotelyTitle": "Tavidyut-ik·im tettwasens sɣur {{moderator}}"
|
|
624
|
+
},
|
|
625
|
+
"participantsPane": {
|
|
626
|
+
"actions": {
|
|
627
|
+
"admit": "Steεref",
|
|
628
|
+
"admitAll": "Steεref s kullec",
|
|
629
|
+
"allow": "Sireg i yimttekkiyen ad:",
|
|
630
|
+
"allowVideo": "Sireg tavidyut",
|
|
631
|
+
"askUnmute": "Suter tririt n ṣṣut",
|
|
632
|
+
"audioModeration": "Kksen asgugem i yiman-nsen",
|
|
633
|
+
"blockEveryoneMicCamera": "Sewḥel asawaḍ d tkamiṛat n yal yiwen",
|
|
634
|
+
"invite": "Snubget-d albaɛḍ",
|
|
635
|
+
"mute": "Asusam",
|
|
636
|
+
"muteAll": "Sgugem meṛṛa",
|
|
637
|
+
"muteEveryoneElse": "Sgugem-iten i meṛṛa",
|
|
638
|
+
"reject": "Agi",
|
|
639
|
+
"stopEveryonesVideo": "Seḥbes tavidyut n yal yiwen",
|
|
640
|
+
"stopVideo": "Seḥbes tavidyut n Youtube",
|
|
641
|
+
"unblockEveryoneMicCamera": "Serreḥ i usawaḍ d tkamiṛat n yal yiwen",
|
|
642
|
+
"videoModeration": "Bdan tavidyut-nsen"
|
|
643
|
+
},
|
|
644
|
+
"close": "Mdel",
|
|
645
|
+
"headings": {
|
|
646
|
+
"lobby": "Lobby ({{count}})",
|
|
647
|
+
"participantsList": "Imttekkiyen n temlilit ({{count}})",
|
|
648
|
+
"waitingLobby": "Araǧu deg lobby ({{count}})"
|
|
649
|
+
},
|
|
650
|
+
"title": "Imttekkiyen"
|
|
651
|
+
},
|
|
652
|
+
"passwordDigitsOnly": "Alamma d {{number}} yizwilen",
|
|
653
|
+
"passwordSetRemotely": "Yettusbadu sɣur yimttekki-nniḍen",
|
|
654
|
+
"polls": {
|
|
655
|
+
"answer": {
|
|
656
|
+
"skip": "Ttu",
|
|
657
|
+
"submit": "Azen"
|
|
658
|
+
},
|
|
659
|
+
"create": {
|
|
660
|
+
"addOption": "Rnu aɣewwaṛ",
|
|
661
|
+
"answerPlaceholder": "Aɣewwaṛ {{index}}",
|
|
662
|
+
"cancel": "Sefex",
|
|
663
|
+
"create": "Rnu asenqed",
|
|
664
|
+
"pollOption": "Taxtiṛt n usenqed {{index}}",
|
|
665
|
+
"pollQuestion": "Asteqsi n usenqed",
|
|
666
|
+
"questionPlaceholder": "Efk asteqsi",
|
|
667
|
+
"removeOption": "Kkes aɣewwaṛ",
|
|
668
|
+
"send": "Azen"
|
|
669
|
+
},
|
|
670
|
+
"errors": {
|
|
671
|
+
"notUniqueOption": "tifranin ilaq ad ilin d imaynuten"
|
|
672
|
+
},
|
|
673
|
+
"notification": {
|
|
674
|
+
"description": "Ldi iccer n yisenqad i ufran",
|
|
675
|
+
"title": "Asenqed amaynut yettwarna ɣer temlilt-a"
|
|
676
|
+
},
|
|
677
|
+
"results": {
|
|
678
|
+
"changeVote": "Beddel tafrant",
|
|
679
|
+
"empty": "Ulac akka tura isenqaden deg temlilit. Bdu asenqed da!",
|
|
680
|
+
"hideDetailedResults": "Ffer tilɣa",
|
|
681
|
+
"showDetailedResults": "Sken talqayt",
|
|
682
|
+
"vote": "Tafrant"
|
|
683
|
+
}
|
|
684
|
+
},
|
|
685
|
+
"poweredby": "yemmug-d sɣur",
|
|
686
|
+
"prejoin": {
|
|
687
|
+
"audioAndVideoError": "Tuccḍa deg umeslaw d tvidyut:",
|
|
688
|
+
"audioDeviceProblem": "Yella wugur d yibenk-ik·im n umeslaw",
|
|
689
|
+
"audioOnlyError": "Tuccḍa deg umeslaw:",
|
|
690
|
+
"audioTrackError": "Asnulfu n tezlit ulamek.",
|
|
691
|
+
"callMe": "Siwel-iyi-d",
|
|
692
|
+
"callMeAtNumber": "Siwel-iyi-d ɣer wuṭṭun-a:",
|
|
693
|
+
"calling": "Asiwel",
|
|
694
|
+
"configuringDevices": "Amtawi n yibenkan…",
|
|
695
|
+
"connectedWithAudioQ": "Teqqneḍ s umeslaw?",
|
|
696
|
+
"connection": {
|
|
697
|
+
"good": "Tuqqna-inek·inem internet tettban tgerrez!",
|
|
698
|
+
"nonOptimal": "Tuqqna-inek·inem internet ur tgerrez ara maḍi",
|
|
699
|
+
"poor": "Tuqqna-inek·inem internet txuṣṣ aṭas"
|
|
700
|
+
},
|
|
701
|
+
"connectionDetails": {
|
|
702
|
+
"audioClipping": "Negmen ad yettwagzem umeslaw-inek·inem.",
|
|
703
|
+
"audioHighQuality": "Negmen belli ameslaw-inek·inem ad yesεu taɣara igerrzen aṭas.",
|
|
704
|
+
"audioLowNoVideo": "Negmen belli taɣara n umeslaw-inek·inem ad tili tṣubb yerna ulac tavidyut.",
|
|
705
|
+
"goodQuality": "Gedha! Taɣara n umidyat-inek·inem ad tili tgerrez aṭas.",
|
|
706
|
+
"noMediaConnectivity": "Ur nessaweḍ ara ad nserked tuqqna n umidya i usekyed-a. Ssebba n waya deg tudet d aɣrab n tmes neɣ d NAT.",
|
|
707
|
+
"noVideo": "Negmen belli tavidyut-ik·im ad tili txuṣ aṭas.",
|
|
708
|
+
"undetectable": "Ma mazal ur tezmireḍ ara ad tsiwleḍ deg yiminig, Wali ma yella imsmeɣrzen n imesli, asawaḍ akked tkamiṛat qaɛsen ne alla, daɣen ma yella tefkiḍ izerfan i yiminig ad iseqdec asawaḍ akked tkamiṛat, daɣen ma yella tesɛiḍ lqem aneggaru n yiminig. Ma mazal ugur, nermes aneflay n usnas web.",
|
|
709
|
+
"veryPoorConnection": "Negmen belli taɣara n usiwel-inek·inem ad yili ixuṣ aṭas.",
|
|
710
|
+
"videoFreezing": "Nerǧa d akken tavidyut ad teḥbes, ad tuɣal d taberkant neɣ texreb.",
|
|
711
|
+
"videoHighQuality": "Negmen belli tavidyut-ik·im ad tesεu taɣara igerrzen.",
|
|
712
|
+
"videoLowQuality": "Nerǧa tavidyut ad tenɣes deg tɣara deg wayen icudden ɣer ubeqqeḍ ines.",
|
|
713
|
+
"videoTearing": "Nerǧa tavidyut ad tenɣes deg ipiksilen neɣ ad tesɛu cammat."
|
|
714
|
+
},
|
|
715
|
+
"copyAndShare": "Nɣel & bḍu aseɣwen n temlilit",
|
|
716
|
+
"dialInMeeting": "Qqen ɣer temlilit",
|
|
717
|
+
"dialInPin": "Qqen ɣer temlilit syen sekcem tangalt PIN:",
|
|
718
|
+
"dialing": "Siwel",
|
|
719
|
+
"doNotShow": "Ur d-skan ara tikkelt-nniḍen",
|
|
720
|
+
"errorDialOut": "Asuddes n wuṭṭun d awezɣi",
|
|
721
|
+
"errorDialOutDisconnected": "Asuddes n wuṭṭun d awezɣi. Yeffeɣ seg tuqqna",
|
|
722
|
+
"errorDialOutFailed": "Asuddes n wuṭṭun d awezɣi. Asiwel ur yeddi ara",
|
|
723
|
+
"errorDialOutStatus": "Tuccḍa deg wawway n waddad n usiḍen",
|
|
724
|
+
"errorMissingName": "Ma ulac aɣilif, sekcem isem-ik·im i waken ad ternuḍ ɣer temlilit",
|
|
725
|
+
"errorNoPermissions": "Ilaq ad tremdeḍ anekcum ɣer usawaḍ d tkamiṛat",
|
|
726
|
+
"errorStatusCode": "Tuccḍa deg usuddes n wuṭṭun, tangalt n waddad: {{status}}",
|
|
727
|
+
"errorValidation": "Asentem n wuṭṭun ur yeddi ara",
|
|
728
|
+
"iWantToDialIn": "Bɣiɣ ad qqneɣ ɣer",
|
|
729
|
+
"initiated": "Yebda usiwel",
|
|
730
|
+
"joinAudioByPhone": "Ttekki s umeslaw n tiliɣri",
|
|
731
|
+
"joinMeeting": "Ttekki deg temlilit",
|
|
732
|
+
"joinWithoutAudio": "Ttekki s war ameslaw",
|
|
733
|
+
"keyboardShortcuts": "Rmed inegzumen n unasiw",
|
|
734
|
+
"linkCopied": "Aseɣwen yettwanɣel 'ɣef wafus'",
|
|
735
|
+
"lookGood": "Asawaḍ-inek·inem akka i d-yettban, iteddu akken ilaq",
|
|
736
|
+
"or": "neɣ",
|
|
737
|
+
"premeeting": "Timlilit tuzwirt",
|
|
738
|
+
"screenSharingError": "Tuccḍa deg beṭṭu n ugdil:",
|
|
739
|
+
"startWithPhone": "Bdu s umeslaw n tiliɣri",
|
|
740
|
+
"videoOnlyError": "Tuccḍa deg tvidyut:",
|
|
741
|
+
"videoTrackError": "Asnulfu n track n tvidyut ulamek.",
|
|
742
|
+
"viewAllNumbers": "wali akk uṭṭunen"
|
|
743
|
+
},
|
|
744
|
+
"presenceStatus": {
|
|
745
|
+
"busy": "Yecɣel",
|
|
746
|
+
"calling": "Yessawal…",
|
|
747
|
+
"connected": "Yeqqen",
|
|
748
|
+
"connecting": "Yetteqqen…",
|
|
749
|
+
"connecting2": "Yetteqqen*…",
|
|
750
|
+
"disconnected": "Yeffeɣ",
|
|
751
|
+
"expired": "Yemmut",
|
|
752
|
+
"ignored": "Yettwanef",
|
|
753
|
+
"initializingCall": "Awennez n usiwel…",
|
|
754
|
+
"invited": "Yettwancad",
|
|
755
|
+
"rejected": "Yettwagi",
|
|
756
|
+
"ringing": "Yettṣuni…."
|
|
757
|
+
},
|
|
758
|
+
"profile": {
|
|
759
|
+
"avatar": "avaṭar",
|
|
760
|
+
"setDisplayNameLabel": "Sbadu isem n uskan",
|
|
761
|
+
"setEmailInput": "Sekcem-d imayl",
|
|
762
|
+
"setEmailLabel": "Sbadu imayl-inek·inem n Gravatar",
|
|
763
|
+
"title": "Amaɣnu"
|
|
764
|
+
},
|
|
765
|
+
"raisedHand": "Bɣiɣ ad d-mmeslayeɣ",
|
|
766
|
+
"recording": {
|
|
767
|
+
"authDropboxText": "Sali-d ɣer Dropbox",
|
|
768
|
+
"availableSpace": "Tella tallunt: {{spaceLeft}} MAṬ (azal {{duration}} tesdidin n usekles)",
|
|
769
|
+
"beta": "BETA",
|
|
770
|
+
"busy": "Aql-aɣ nxeddem ad d-neslelli tiɣbula n usekles. Ma ulac aɣilif, ɛreḍ tikkelt-nniḍen deg kra n tesdidin.",
|
|
771
|
+
"busyTitle": "Meṛṛa iseklas akka tura ceɣlen",
|
|
772
|
+
"copyLink": "Sukken aseɣwen",
|
|
773
|
+
"error": "Asekles ur yeddi ara. Ttxil ɛreḍ tikkelt-nniḍen.",
|
|
774
|
+
"errorFetchingLink": "Tuccḍa lawan n tririt n useɣwen n usekles.",
|
|
775
|
+
"expandedOff": "Asekles yettuseḥbes",
|
|
776
|
+
"expandedOn": "Timlilit ha-tt-a akka tura tettwaseklas.",
|
|
777
|
+
"expandedPending": "Asekles ha-t-an yebda….",
|
|
778
|
+
"failedToStart": "Beddu n usekles ur yeddi ara",
|
|
779
|
+
"fileSharingdescription": "Bḍu asekles d yimttekkiyen n temlilit",
|
|
780
|
+
"limitNotificationDescriptionNative": "Seg tuget n usuter, asekles-inek·inem ad yesɛu kan {{limit}} tesdidin. I yiseklas war tilas, ɛreḍ <3>{{app}}</3>.",
|
|
781
|
+
"limitNotificationDescriptionWeb": "Seg tuget n usuter, asekles-inek·inem ad yesɛu kan {{limit}} tesdidin. I yiseklas war tilas, ɛreḍ <a href={{url}} rel='noopener noreferrer' target='_blank'>{{app}}</a>.",
|
|
782
|
+
"linkGenerated": "Nsirew-d aseɣwen i usekles-inek·inem.",
|
|
783
|
+
"live": "SRID",
|
|
784
|
+
"loggedIn": "Yekcem s {{userName}}",
|
|
785
|
+
"off": "Asekles yettuseḥbes",
|
|
786
|
+
"offBy": "{{name}} iseḥbes asekles",
|
|
787
|
+
"on": "Asekles",
|
|
788
|
+
"onBy": "{{name}} yebda asekles",
|
|
789
|
+
"pending": "Aheyyi n usekles n temlilit…",
|
|
790
|
+
"rec": "REC",
|
|
791
|
+
"serviceDescription": "Asekles-inek·inem ad yettwasekles s umeẓlu n usekles",
|
|
792
|
+
"serviceDescriptionCloud": "Asekles deg usigna",
|
|
793
|
+
"serviceName": "Ameẓlu n usekles",
|
|
794
|
+
"signIn": "Qqen",
|
|
795
|
+
"signOut": "Ffeɣ",
|
|
796
|
+
"title": "Asekles",
|
|
797
|
+
"unavailable": "Suref-aɣ! {{serviceName}} akka tura ulac-it. Aql-aɣ nxeddem ad nefru ugur. Ma ulac aɣilif ɛreḍ tikkelt-nniḍen ticki.",
|
|
798
|
+
"unavailableTitle": "Ulac asekles",
|
|
799
|
+
"uploadToCloud": "Sali ɣer usigna"
|
|
800
|
+
},
|
|
801
|
+
"sectionList": {
|
|
802
|
+
"pullToRefresh": "Jbed-d i usnirem"
|
|
803
|
+
},
|
|
804
|
+
"security": {
|
|
805
|
+
"about": "Tzemreḍ ad ternuḍ $t(lockRoomPassword) ɣer temlilit-ik·im. Imttekkiyen sran ad d-mudden $t(lockRoomPassword) send ad ttwaqeblen ad ttekkin deg temlilit.",
|
|
806
|
+
"aboutReadOnly": "Imttekkiyen imaẓragen zemren ad rnun $t(lockRoomPassword) ɣer temlilit-ik·im. Imttekkiyen sran ad d-mudden $t(lockRoomPassword) send ad ttwaqeblen ad ttekkin deg temlilit.",
|
|
807
|
+
"insecureRoomNameWarning": "Isem n texxamt yella ccekk deg-s. Imttekkiyen ur tebɣiḍ ara zemren ad d-rnun ɣer usarag-ik·im. Xemmem ad tḥarzeḍ timlilit-ik·im s useqdec n tqeffalt n tɣellist.",
|
|
808
|
+
"securityOptions": "Tixtiṛiyin n tɣellist"
|
|
809
|
+
},
|
|
810
|
+
"settings": {
|
|
811
|
+
"calendar": {
|
|
812
|
+
"about": "Amsidef n uwitay {{appName}} yettuseqdac i unekcum aɣelsan ɣer uwitay-inek·inem i wakken ad d-iɣer ineḍruyen i d-iteddun.",
|
|
813
|
+
"disconnect": "Yeffeɣ",
|
|
814
|
+
"microsoftSignIn": "Qqen s Microsoft",
|
|
815
|
+
"signedIn": "Anekcum amiran ɣer yineḍruyen n uwitay i {{email}}. Sit ɣef tqeffalt ffeɣ i useḥbes n unekcum ɣer yineḍruyen n uwitay.",
|
|
816
|
+
"title": "Awitay"
|
|
817
|
+
},
|
|
818
|
+
"desktopShareFramerate": "Anya n beṭṭu n tnarit",
|
|
819
|
+
"desktopShareHighFpsWarning": "Beṭṭu n tnarit s unya afellay izmer ad isaẓay tuqqna, Ilaq ales n tnekra n beṭṭu n ugdil akken asbadu amaynut ad iddu.",
|
|
820
|
+
"desktopShareWarning": "Ilaq ad talseḍ asenker n beṭṭu n ugdil i yiɣewwaren imaynuten i wakken ad ṭṭfen ibeddilen.",
|
|
821
|
+
"devices": "Ibenkan",
|
|
822
|
+
"followMe": "Yal amdan iy-ṭṭafaren",
|
|
823
|
+
"framesPerSecond": "tugniwin s tasint",
|
|
824
|
+
"incomingMessage": "Iteddu-d yizen",
|
|
825
|
+
"language": "Tutlayt",
|
|
826
|
+
"loggedIn": "Tkecmeḍ s yisem {{name}}",
|
|
827
|
+
"microphones": "Isawaḍen",
|
|
828
|
+
"moderator": "Aseɣyad",
|
|
829
|
+
"more": "Ugar",
|
|
830
|
+
"name": "ISem",
|
|
831
|
+
"noDevice": "Ula d yiwen",
|
|
832
|
+
"participantJoined": "Yerna-d yimttekki",
|
|
833
|
+
"participantLeft": "Imttekki azelmaḍ",
|
|
834
|
+
"playSounds": "Rmed ṣṣut",
|
|
835
|
+
"reactions": "Tisedmirin n temlilit",
|
|
836
|
+
"sameAsSystem": "Kifkif akked unagraw ({{label}})",
|
|
837
|
+
"selectAudioOutput": "Tuffɣa n umeslaw",
|
|
838
|
+
"selectCamera": "Takamiṛatt",
|
|
839
|
+
"selectMic": "Asawaḍ",
|
|
840
|
+
"sounds": "Imeslan",
|
|
841
|
+
"speakers": "Imsiwilen",
|
|
842
|
+
"startAudioMuted": "Yettwagugem waddad n yal yiwen",
|
|
843
|
+
"startVideoMuted": "Yeffer waddad n yal yiwen",
|
|
844
|
+
"talkWhileMuted": "Mmeslay ma yettwakkes ṣṣut",
|
|
845
|
+
"title": "Iɣewwaren"
|
|
846
|
+
},
|
|
847
|
+
"settingsView": {
|
|
848
|
+
"advanced": "Talqayt",
|
|
849
|
+
"alertCancel": "Semmet",
|
|
850
|
+
"alertOk": "IH",
|
|
851
|
+
"alertTitle": "Ɣur-k·m",
|
|
852
|
+
"alertURLText": "URL n uqeddac yettwaskecmen d arameɣtu",
|
|
853
|
+
"buildInfoSection": "Talɣut n lebni",
|
|
854
|
+
"conferenceSection": "Asarag",
|
|
855
|
+
"disableCallIntegration": "Amsidef n usiwel adigan yensa",
|
|
856
|
+
"disableCrashReporting": "Sens tuzna n yineqqisen",
|
|
857
|
+
"disableCrashReportingWarning": "Tebɣiḍ s tidet ad tsenseḍ tuzna n yineqqisen? Aɣewwar ad yeddu seld allus n uskar n usnas.",
|
|
858
|
+
"disableP2P": "Sens askar n wudem ɣer wudem",
|
|
859
|
+
"displayName": "Isem n uskan",
|
|
860
|
+
"email": "Imayl",
|
|
861
|
+
"header": "Iɣewwaren",
|
|
862
|
+
"profileSection": "Amaɣnu",
|
|
863
|
+
"serverURL": "URL n uqeddac",
|
|
864
|
+
"showAdvanced": "Sken iɣewwaren leqqayen",
|
|
865
|
+
"startWithAudioMuted": "Bdu s umeslaw yettwasgugmen",
|
|
866
|
+
"startWithVideoMuted": "Bdu s tvidyut yettwasgugmen",
|
|
867
|
+
"version": "Lqem"
|
|
868
|
+
},
|
|
869
|
+
"share": {
|
|
870
|
+
"dialInfoText": "\n\n=====\n\nTebɣiḍ kan ad teqqneḍ s tiliɣri-inek·inem?\n\n{{defaultDialInNumber}}Sit ɣef useɣwen-a i wakken ad twaliḍ uṭṭunen n tuqqna n tiliɣri i temlilit-a\n{{dialInfoPageUrl}}",
|
|
871
|
+
"mainText": "Sit ɣef useɣwen i d-iteddun i wakken ad tettekkiḍ deg temlilit:\n{{roomUrl}}"
|
|
872
|
+
},
|
|
873
|
+
"speaker": "Asawaḍ",
|
|
874
|
+
"speakerStats": {
|
|
875
|
+
"hours": "{{count}} isragen",
|
|
876
|
+
"minutes": "{{count}} n tesdidin",
|
|
877
|
+
"name": "Isem",
|
|
878
|
+
"search": "Nadi",
|
|
879
|
+
"searchHint": "Nadi imttekkiyen",
|
|
880
|
+
"seconds": "{{count}} n tsinin",
|
|
881
|
+
"speakerStats": "Addad n yimsiwel",
|
|
882
|
+
"speakerTime": "Akud n yimsiwel"
|
|
883
|
+
},
|
|
884
|
+
"startupoverlay": {
|
|
885
|
+
"genericTitle": "Timlilit tesra aseqdec n usawaḍ d tkamiṛat inek·inem.",
|
|
886
|
+
"policyText": " ",
|
|
887
|
+
"title": "{{app}} yesra ad yesseqdec asawaḍ d tkamiṛat-inek·inem."
|
|
888
|
+
},
|
|
889
|
+
"suspendedoverlay": {
|
|
890
|
+
"rejoinKeyTitle": "Kcem",
|
|
891
|
+
"text": "Sit deg taqeffalt <i>Kcem</i> akken ad teqqneḍ.",
|
|
892
|
+
"title": "Asiwel-inek s uvidyu yettwaseḥbes acku aselkim-agi igen."
|
|
893
|
+
},
|
|
894
|
+
"toolbar": {
|
|
895
|
+
"Settings": "Iɣewwaren",
|
|
896
|
+
"accessibilityLabel": {
|
|
897
|
+
"Settings": "Sken/Fneẓ iɣewwaren",
|
|
898
|
+
"audioOnly": "Rmed/Sens imesli kan",
|
|
899
|
+
"audioRoute": "Fren ibenk n yimesli",
|
|
900
|
+
"boo": "Boo",
|
|
901
|
+
"callQuality": "Sefrek taɣara n tvidyut",
|
|
902
|
+
"cc": "Ffer/Sken iduzwilen",
|
|
903
|
+
"chat": "Ffer/Sken asfaylu n udiwenni",
|
|
904
|
+
"clap": "Aṣeffaq",
|
|
905
|
+
"collapse": "Ḍfes",
|
|
906
|
+
"document": "Ldi / Mdel isemli yettwabḍan",
|
|
907
|
+
"download": "Sali-d isnasen-nneɣ",
|
|
908
|
+
"embedMeeting": "Sleɣ timlilit",
|
|
909
|
+
"expand": "Développer",
|
|
910
|
+
"feedback": "Eǧǧ tamuɣli",
|
|
911
|
+
"fullScreen": "Ɛeddi ɣer ugdil aččuran",
|
|
912
|
+
"grantModerator": "Mudd tisirag n usektem",
|
|
913
|
+
"hangup": "Eǧǧ asiwel",
|
|
914
|
+
"help": "Tallelt",
|
|
915
|
+
"invite": "Snubget imdanen",
|
|
916
|
+
"kick": "Suffeɣ amttekki",
|
|
917
|
+
"laugh": "Taḍsa",
|
|
918
|
+
"like": "Adebbuz d asawen",
|
|
919
|
+
"lobbyButton": "Rmed/sens askar Lobby",
|
|
920
|
+
"localRecording": "Ɛeddi ɣer yisenqaden n usekles adigan",
|
|
921
|
+
"lockRoom": "Snefli awal uffir n temlilit",
|
|
922
|
+
"moreActions": "Ldi/mdel umuɣ n wugar n tigawin",
|
|
923
|
+
"moreActionsMenu": "Umuɣ n wugar n tigawin",
|
|
924
|
+
"moreOptions": "Sken ugar n textiṛiyin",
|
|
925
|
+
"mute": "Rmed/Sens ameslaw",
|
|
926
|
+
"muteEveryone": "Sgugem yal yiwen",
|
|
927
|
+
"muteEveryoneElse": "Sgugem-iten i meṛṛa",
|
|
928
|
+
"muteEveryoneElsesVideo": "Sens tavidyut n yal yiwen",
|
|
929
|
+
"muteEveryonesVideo": "Sens tavidyut n yal yiwen",
|
|
930
|
+
"participants": "Imttekkiyen",
|
|
931
|
+
"pip": "Rmed/Sens askar tugna deg tugna",
|
|
932
|
+
"privateMessage": "Azen izen uslig",
|
|
933
|
+
"profile": "Ẓreg amaɣnu-ik",
|
|
934
|
+
"raiseHand": "Seqluqel afus yettwarefden",
|
|
935
|
+
"reactionsMenu": "Ldi / Mdel umuɣ n tsedmirin",
|
|
936
|
+
"recording": "Rmed/Sens asekles",
|
|
937
|
+
"remoteMute": "Sgugem imttekki",
|
|
938
|
+
"remoteVideoMute": "Sens takamiṛat n yimttekki",
|
|
939
|
+
"security": "Tixtiṛiyin n tɣellist",
|
|
940
|
+
"selectBackground": "Fren agilal",
|
|
941
|
+
"shareRoom": "Snubget-d albaɛḍ",
|
|
942
|
+
"shareYourScreen": "Rmed/Sens beṭṭu n ugdil",
|
|
943
|
+
"shareaudio": "Bḍu ameslaw",
|
|
944
|
+
"sharedvideo": "Rmed/Sens beṭṭu n tvidyut",
|
|
945
|
+
"shortcuts": "Rmed/Sens inegzumen",
|
|
946
|
+
"show": "Sken ɣef usayes",
|
|
947
|
+
"silence": "Tasusmi",
|
|
948
|
+
"speakerStats": "Sken/Ffer tiddadanin n yimsiwel",
|
|
949
|
+
"surprised": "Awham",
|
|
950
|
+
"tileView": "Err askan d aɛban",
|
|
951
|
+
"toggleCamera": "Rmed/sens takamiṛat",
|
|
952
|
+
"toggleFilmstrip": "Sken/Ffer tilemyin",
|
|
953
|
+
"videoblur": "Rmed/Sens arway n tvidyut",
|
|
954
|
+
"videomute": "Rmed/Sens tavidyut"
|
|
955
|
+
},
|
|
956
|
+
"addPeople": "Rnu-d imdanen ɣer usiwel-inek·inem",
|
|
957
|
+
"audioOnlyOff": "Sens askar n tehri n tesfift adday",
|
|
958
|
+
"audioOnlyOn": "Rmed askar n tehri n tesfift adday",
|
|
959
|
+
"audioRoute": "Fren ibenk n yimesli",
|
|
960
|
+
"audioSettings": "Iɣewwaren n umeslaw",
|
|
961
|
+
"authenticate": "Sesteb",
|
|
962
|
+
"boo": "Boo",
|
|
963
|
+
"callQuality": "Sefrek taɣara n tvidyut",
|
|
964
|
+
"chat": "Ldi / Mdel asqerdec",
|
|
965
|
+
"clap": "Aṣeffaq",
|
|
966
|
+
"closeChat": "Mdel asqerdec",
|
|
967
|
+
"closeReactionsMenu": "Mdel umuɣ n tsedmirin",
|
|
968
|
+
"disableReactionSounds": "Tzemreḍ ad tsenseḍ imesliyen n tsedmirt i temlilit-a",
|
|
969
|
+
"documentClose": "Mdel isemli yettwabḍan",
|
|
970
|
+
"documentOpen": "Ldi isemli yettwabḍan",
|
|
971
|
+
"download": "Sali-d isnasen-nneɣ",
|
|
972
|
+
"e2ee": "Awgelhen seg yixef ɣer yixef",
|
|
973
|
+
"embedMeeting": "Sleɣ timlilit",
|
|
974
|
+
"enterFullScreen": "Wali agdil aččuran",
|
|
975
|
+
"enterTileView": "Kcem ɣer uskan aɛban",
|
|
976
|
+
"exitFullScreen": "Ffeɣ seg ugdil aččuran",
|
|
977
|
+
"exitTileView": "Ffeɣ seg uskan aɛban",
|
|
978
|
+
"feedback": "Eǧǧ tamuɣli",
|
|
979
|
+
"hangup": "Eǧǧ",
|
|
980
|
+
"help": "Tallelt",
|
|
981
|
+
"invite": "Snubget imdanen",
|
|
982
|
+
"laugh": "Taḍsa",
|
|
983
|
+
"like": "Adebbuz d asawen",
|
|
984
|
+
"lobbyButtonDisable": "Sens askar Lobby",
|
|
985
|
+
"lobbyButtonEnable": "Rmed askar Lobby",
|
|
986
|
+
"login": "Qqen",
|
|
987
|
+
"logout": "Tufɣa",
|
|
988
|
+
"lowerYourHand": "Ṣubb afus-ik·im",
|
|
989
|
+
"moreActions": "Ugar n tigawin",
|
|
990
|
+
"moreOptions": "Ugar n textiṛiyin",
|
|
991
|
+
"mute": "Sgugem / Kkes tagugmi",
|
|
992
|
+
"muteEveryone": "Sgugem yal yiwen",
|
|
993
|
+
"muteEveryonesVideo": "Sens takamiṛat n yal yiwen",
|
|
994
|
+
"noAudioSignalDesc": "Ma yella ur tɛemmdeḍ ara asensi-ines seg yiɣewwaren n unagraw neɣ n warrum, muqel ad tbeddleḍ ibenk.",
|
|
995
|
+
"noAudioSignalDescSuggestion": "Ma yella ur tɛemmdeḍ ara asensi-ines seg yiɣewwaren n unagraw neɣ n warrum, muqel ad tbeddleḍ ibenk i d-yettwasumren.",
|
|
996
|
+
"noAudioSignalDialInDesc": "Tzemreḍ daɣen ad teqqneḍ s useqde n:",
|
|
997
|
+
"noAudioSignalDialInLinkDesc": "Uṭṭunen n unekcum",
|
|
998
|
+
"noAudioSignalTitle": "Ulac akk anekcum i d-yekkan seg usawaḍ-inek·inem!",
|
|
999
|
+
"noisyAudioInputDesc": "La d-yettban usawaḍ-inek·inem yesɛa zzhir, ma ulac aɣimif muqel ad tesgugmeḍ neɣ ad tesnifleḍ ibenk.",
|
|
1000
|
+
"noisyAudioInputTitle": "Asawad-ik·im yettban-d deg-s zzhir!",
|
|
1001
|
+
"openChat": "Ldi asqerdec",
|
|
1002
|
+
"openReactionsMenu": "Ldi umuɣ n tsedmirin",
|
|
1003
|
+
"participants": "Imttekkiyen",
|
|
1004
|
+
"pip": "Kcem ɣer uskar tugna deg tugna",
|
|
1005
|
+
"privateMessage": "Azen izen uslig",
|
|
1006
|
+
"profile": "Ẓreg amaɣnu-ik",
|
|
1007
|
+
"raiseHand": "Sali / Ṣubb afus-ik·im",
|
|
1008
|
+
"raiseYourHand": "Rfed afus-ik·im",
|
|
1009
|
+
"reactionBoo": "Azen tasedmirt n boo",
|
|
1010
|
+
"reactionClap": "Azen tasedmirt n useffaq",
|
|
1011
|
+
"reactionLaugh": "Azen tasedmert n teḍsa",
|
|
1012
|
+
"reactionLike": "Azen tasedmert n udebbuz d asawen",
|
|
1013
|
+
"reactionSilence": "Azen tasedmirt n tsusmi",
|
|
1014
|
+
"reactionSurprised": "Azen tasedmirt n ubati",
|
|
1015
|
+
"security": "Tixtiṛiyin n tɣellist",
|
|
1016
|
+
"selectBackground": "Fren agilal",
|
|
1017
|
+
"shareRoom": "Snubget-d albaɛḍ",
|
|
1018
|
+
"shareaudio": "Bḍu ameslaw",
|
|
1019
|
+
"sharedvideo": "Bḍu tavidyut",
|
|
1020
|
+
"shortcuts": "Wali inegzumen",
|
|
1021
|
+
"silence": "Tasusmi",
|
|
1022
|
+
"speakerStats": "Addad n yimsiwlen",
|
|
1023
|
+
"startScreenSharing": "Bdu beṭṭu n ugdil",
|
|
1024
|
+
"startSubtitles": "Bdu iduzwilen",
|
|
1025
|
+
"stopAudioSharing": "Seḥbes beṭṭu n umeslaw",
|
|
1026
|
+
"stopScreenSharing": "Seḥbes beṭṭu n ugdil",
|
|
1027
|
+
"stopSharedVideo": "Seḥbes tavidyut",
|
|
1028
|
+
"stopSubtitles": "Seḥbes iduzwilen",
|
|
1029
|
+
"surprised": "Awham",
|
|
1030
|
+
"talkWhileMutedPopup": "Tettaɛraḍeḍ ad d-temmeslayeḍ? Tettwasgugmeḍ.",
|
|
1031
|
+
"tileViewToggle": "Err askan d aɛban",
|
|
1032
|
+
"toggleCamera": "Rmed/sens takamiṛat",
|
|
1033
|
+
"videoSettings": "Iɣewwaren n tvidyut",
|
|
1034
|
+
"videomute": "Seqleɛ / Seḥbes takamirat"
|
|
1035
|
+
},
|
|
1036
|
+
"transcribing": {
|
|
1037
|
+
"ccButtonTooltip": "Bdu / Seḥbes izwal isnawanen",
|
|
1038
|
+
"error": "Ur yeddi ara useskel. Ɛreḍ tikkelt-nniḍen.",
|
|
1039
|
+
"expandedLabel": "Aseskel iteddu akka tura",
|
|
1040
|
+
"failedToStart": "Aseskel yegguma ad yebdu",
|
|
1041
|
+
"labelToolTip": "Timlilit ha-tt-an la tettwaseskal",
|
|
1042
|
+
"off": "Aseskel yettwaḥbes",
|
|
1043
|
+
"pending": "Aheyyi i useskel n temlilit…",
|
|
1044
|
+
"start": "Bdu askan n yizwal isnawanen",
|
|
1045
|
+
"stop": "Seḥbes askan n yiduzwilen",
|
|
1046
|
+
"tr": "TR"
|
|
1047
|
+
},
|
|
1048
|
+
"userMedia": {
|
|
1049
|
+
"grantPermissions": "Ttxil-k efk-d tasiregt n beṭṭu n tkamiṛat d umikṛufun-ik."
|
|
1050
|
+
},
|
|
1051
|
+
"videoSIPGW": {
|
|
1052
|
+
"busy": "Aql-aɣ nxeddem ad d-neslelli tiɣbula. Ma ulac aɣilif, ɛreḍ tikkelt-nniḍen deg kra n tesdidin.",
|
|
1053
|
+
"busyTitle": "Ameẓlu n texxamt yecɣel akka tura",
|
|
1054
|
+
"errorAlreadyInvited": "{{displayName}} yettwanced-d yakan",
|
|
1055
|
+
"errorInvite": "Asarag mazal ur yeqɛid ara akka tura. Ttxil-k·m ɛreḍ tikkelt-nniḍen ticki.",
|
|
1056
|
+
"errorInviteFailed": "Aql-aɣ nxeddem ad nefru ugur-a. Ma ulac aɣilif, ɛreḍ tikkelt-nniḍen ticki.",
|
|
1057
|
+
"errorInviteFailedTitle": "Asnubget n {{displayName}} ur yeddi ara",
|
|
1058
|
+
"errorInviteTitle": "Tuccḍa deg usnubget n texxamt",
|
|
1059
|
+
"pending": "{{displayName}} yettwanced-d"
|
|
1060
|
+
},
|
|
1061
|
+
"videoStatus": {
|
|
1062
|
+
"audioOnly": "AUD",
|
|
1063
|
+
"audioOnlyExpanded": "Aql-ak·akem deg uskar n tehri n tesfift taddayt. Deg uskar-a ad d-tremseḍ kan ameslaw d beṭṭu n ugdil.",
|
|
1064
|
+
"callQuality": "Taɣara n tvidyut",
|
|
1065
|
+
"hd": "HD",
|
|
1066
|
+
"hdTooltip": "Awali n tvidyut n tbadut tafellayt",
|
|
1067
|
+
"highDefinition": "Tabadut tafellayt",
|
|
1068
|
+
"labelTooiltipNoVideo": "Ulac tavidyut",
|
|
1069
|
+
"labelTooltipAudioOnly": "Askar n tehri n tesfift adday yermed",
|
|
1070
|
+
"ld": "LD",
|
|
1071
|
+
"ldTooltip": "Awali n tvidyut n tbadut taddayt",
|
|
1072
|
+
"lowDefinition": "Tabadut taddayt",
|
|
1073
|
+
"sd": "SD",
|
|
1074
|
+
"sdTooltip": "Awali n tvidyut s tbadut taslugant",
|
|
1075
|
+
"standardDefinition": "Tabadut taslugant"
|
|
1076
|
+
},
|
|
1077
|
+
"videothumbnail": {
|
|
1078
|
+
"connectionInfo": "Talɣut n tuqqna",
|
|
1079
|
+
"domute": "Kkes imesli",
|
|
1080
|
+
"domuteOthers": "Sgugem-iten i meṛṛa",
|
|
1081
|
+
"domuteVideo": "Sens takamiṛat",
|
|
1082
|
+
"domuteVideoOfOthers": "Sens takamiṛat n yal yiwen",
|
|
1083
|
+
"flip": "Tuttya",
|
|
1084
|
+
"grantModerator": "Mudd tisirag n usektem",
|
|
1085
|
+
"kick": "Suffeɣ",
|
|
1086
|
+
"moderator": "Aseɣyad",
|
|
1087
|
+
"mute": "Imttekki yettwasgugem",
|
|
1088
|
+
"muted": "Yettwasgugem",
|
|
1089
|
+
"remoteControl": "Bdu / Asenqed agemmaḍ",
|
|
1090
|
+
"show": "Sken ɣef usayes",
|
|
1091
|
+
"videoMuted": "Tensa tkamiṛat",
|
|
1092
|
+
"videomute": "Imttekki isseḥbes takamiṛat"
|
|
1093
|
+
},
|
|
1094
|
+
"virtualBackground": {
|
|
1095
|
+
"addBackground": "Rnu agilal",
|
|
1096
|
+
"apply": "Snes",
|
|
1097
|
+
"backgroundEffectError": "Asnes n yisemda n ugilal yecceḍ.",
|
|
1098
|
+
"blur": "Aluɣu",
|
|
1099
|
+
"deleteImage": "Kkes tugna",
|
|
1100
|
+
"desktopShare": "Bḍu tanarit",
|
|
1101
|
+
"desktopShareError": "Ur izmir ara ad ibḍu tanarit",
|
|
1102
|
+
"image1": "Taftist",
|
|
1103
|
+
"image2": "Aɣrab acebḥan arawsan",
|
|
1104
|
+
"image3": "Taxxamt tacebḥant tilemt",
|
|
1105
|
+
"image4": "Taftilt n wannag aberkan",
|
|
1106
|
+
"image5": "Adrar",
|
|
1107
|
+
"image6": "Tiẓgi ",
|
|
1108
|
+
"image7": "Alluy n yiṭṭij",
|
|
1109
|
+
"none": "Ula d yiwen",
|
|
1110
|
+
"pleaseWait": "Ttxil-k rǧu…",
|
|
1111
|
+
"removeBackground": "Kkes agilal",
|
|
1112
|
+
"slightBlur": "Cwiṭ n uluɣu",
|
|
1113
|
+
"title": "Igilalen uhlisen",
|
|
1114
|
+
"uploadedImage": "Sali-d tugna {{index}}",
|
|
1115
|
+
"webAssemblyWarning": "WebAssembly ur yettusefrak ara"
|
|
1116
|
+
},
|
|
1117
|
+
"volumeSlider": "Tigri n ubleɣ",
|
|
1118
|
+
"welcomepage": {
|
|
1119
|
+
"accessibilityLabel": {
|
|
1120
|
+
"join": "Sit i wakken ad ternuḍ",
|
|
1121
|
+
"roomname": "Sekcem-d isem n tzeqqa"
|
|
1122
|
+
},
|
|
1123
|
+
"addMeetingName": "Rnu isem n temlilit",
|
|
1124
|
+
"appDescription": "Aha bdu, adiwenni s tvidyut d terbaɛt meṛṛa. Ihi, nced-d wid akk i tessneḍ. {{app}} d tifrat n usarag s tvidyut yettwawgelhen s lekmal, 100% n uɣbalu yeldin i tzemreḍ ad tesqedceḍ ass kamel, yal ass, baṭel - war ma tesriḍ kra n umiḍan.",
|
|
1125
|
+
"audioVideoSwitch": {
|
|
1126
|
+
"audio": "Taɣect",
|
|
1127
|
+
"video": "Tavidyut"
|
|
1128
|
+
},
|
|
1129
|
+
"calendar": "Awitay",
|
|
1130
|
+
"connectCalendarButton": "Qqen awitay-inek·im",
|
|
1131
|
+
"connectCalendarText": "Qqen awitay-inek·inem i wakken ad twaliḍ meṛṛa timliliyin-inek·inem deg {{app}}. Daɣen, rnu timliliyin {{provider}} ɣer uwitay-inek·inem syen senker-itent s yiwen n usiti.",
|
|
1132
|
+
"enterRoomTitle": "Bdu timlilit tamaynut",
|
|
1133
|
+
"getHelp": "Awi tallalt",
|
|
1134
|
+
"go": "DDU",
|
|
1135
|
+
"goSmall": "Ddu",
|
|
1136
|
+
"headerSubtitle": "Timliliyin n tɣellist d tɣara meqqren",
|
|
1137
|
+
"headerTitle": "Corptime Conference",
|
|
1138
|
+
"info": "Talɣut",
|
|
1139
|
+
"jitsiOnMobile": "Corptime ɣef uziraz - sader isnasen-nneɣ syen tebduḍ timlilit seg wanda i tebɣiḍ",
|
|
1140
|
+
"join": "SNULFU-D / KCEM",
|
|
1141
|
+
"logo": {
|
|
1142
|
+
"calendar": "Alugu n umitay",
|
|
1143
|
+
"desktopPreviewThumbnail": "Tanfult n teskant n tnarit",
|
|
1144
|
+
"googleLogo": "Alugu n Google",
|
|
1145
|
+
"logoDeepLinking": "Alugu Corptime Conference",
|
|
1146
|
+
"microsoftLogo": "Alugu n Microsoft",
|
|
1147
|
+
"policyLogo": "Alugu n tsertit"
|
|
1148
|
+
},
|
|
1149
|
+
"mobileDownLoadLinkAndroid": "Sader asnas n uziraz i Android",
|
|
1150
|
+
"mobileDownLoadLinkFDroid": "Sader asnas n uziraz i F-Droid",
|
|
1151
|
+
"mobileDownLoadLinkIos": "Sader asnas n uziraz i iOS",
|
|
1152
|
+
"moderatedMessage": "Neɣ <a href=\"{{url}}\" rel=\"noopener noreferrer\" target=\"_blank\">ḥerr zik URL n temlilit</a> anida i telliḍ d kečč kan i d imḍebber.",
|
|
1153
|
+
"privacy": "Tabaḍnit",
|
|
1154
|
+
"recentList": "Melmi kan",
|
|
1155
|
+
"recentListDelete": "Kkes",
|
|
1156
|
+
"recentListEmpty": "Tabdart-ik·im tamirant d tilemt akka tura. Mmeslay d terbaɛt-ik·im rnu ad tafeḍ akk timliliyin timiranin da.",
|
|
1157
|
+
"reducedUIText": "Ansuf ɣer {{app}}!",
|
|
1158
|
+
"roomNameAllowedChars": "Isem n temlilit ur ilaq ara ad ilin deg-s isekkilen-a: ?, &, :, ', \", %, #.",
|
|
1159
|
+
"roomname": "Sekcem-d isem n tzeqqa",
|
|
1160
|
+
"roomnameHint": "Sekcem isem neɣ URL n texxamt wuɣur tebɣiḍ ad tedduḍ. Tzemreḍ ad tgeḍ isem, eǧǧ kan imdanen ara temlileḍ ad t-isinen iwakken ad skecmen yiwen n yisem.",
|
|
1161
|
+
"sendFeedback": "Azen takti-inek·inem",
|
|
1162
|
+
"startMeeting": "Bdu timlilit",
|
|
1163
|
+
"terms": "Tiwtilin",
|
|
1164
|
+
"title": "Asarag s tvidyut d aɣelsan, d ummid yerna baṭel"
|
|
1165
|
+
}
|
|
1166
|
+
}
|