From 498d128660fc617a9c09fe603dcd8f0c65af7dde Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Mon, 29 Nov 2021 13:48:28 +0530 Subject: [PATCH 1/2] Mark Livechat WebRTC video calling as alpha --- app/livechat/server/config.ts | 1 + packages/rocketchat-i18n/i18n/en.i18n.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/livechat/server/config.ts b/app/livechat/server/config.ts index d8b2d124c15aa..0e9bbcd878a3e 100644 --- a/app/livechat/server/config.ts +++ b/app/livechat/server/config.ts @@ -619,6 +619,7 @@ Meteor.startup(function() { ], i18nDescription: 'Feature_depends_on_selected_call_provider_to_be_enabled_from_administration_settings', i18nLabel: 'Call_provider', + alert: 'The WebRTC provider is currently in alpha!
We recommend using Firefox Browser for this feature since there are some known bugs within other browsers which still needs to be fixed.
Please report bugs to github.com/RocketChat/Rocket.Chat/issues', enableQuery: omnichannelEnabledQuery, }); }); diff --git a/packages/rocketchat-i18n/i18n/en.i18n.json b/packages/rocketchat-i18n/i18n/en.i18n.json index 7e4aa128245d2..7415bdc285c73 100644 --- a/packages/rocketchat-i18n/i18n/en.i18n.json +++ b/packages/rocketchat-i18n/i18n/en.i18n.json @@ -1847,7 +1847,7 @@ "Favorite": "Favorite", "Favorite_Rooms": "Enable Favorite Rooms", "Favorites": "Favorites", - "Feature_depends_on_selected_call_provider_to_be_enabled_from_administration_settings": "This feature depends on the above selected call provider to be enabled from the administration settings.", + "Feature_depends_on_selected_call_provider_to_be_enabled_from_administration_settings": "This feature depends on the above selected call provider to be enabled from the administration settings.
For **Jitsi**, please make sure you have Jitsi Enabled under Admin -> Video Conference -> Jitsi -> Enabled.
For **WebRTC**, please make sure you have WebRTC enabled under Admin -> WebRTC -> Enabled.", "Feature_Depends_on_Livechat_Visitor_navigation_as_a_message_to_be_enabled": "This feature depends on \"Send Visitor Navigation History as a Message\" to be enabled.", "Feature_Limiting": "Feature Limiting", "Features": "Features", From 5fe21180de34aa140dba7ccae6005a2646b9d046 Mon Sep 17 00:00:00 2001 From: murtaza98 Date: Mon, 29 Nov 2021 15:45:28 +0530 Subject: [PATCH 2/2] Fix grammer issues within alert msg --- app/livechat/server/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/livechat/server/config.ts b/app/livechat/server/config.ts index 0e9bbcd878a3e..0d37ad8bf9dde 100644 --- a/app/livechat/server/config.ts +++ b/app/livechat/server/config.ts @@ -619,7 +619,7 @@ Meteor.startup(function() { ], i18nDescription: 'Feature_depends_on_selected_call_provider_to_be_enabled_from_administration_settings', i18nLabel: 'Call_provider', - alert: 'The WebRTC provider is currently in alpha!
We recommend using Firefox Browser for this feature since there are some known bugs within other browsers which still needs to be fixed.
Please report bugs to github.com/RocketChat/Rocket.Chat/issues', + alert: 'The WebRTC provider is currently in alpha!
We recommend using Firefox Browser for this feature since there are some known bugs within other browsers that still need to be fixed.
Please report bugs to github.com/RocketChat/Rocket.Chat/issues', enableQuery: omnichannelEnabledQuery, }); });