From b7007eb8733e20481d07aa75b7c929ace27a3cfe Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Sun, 21 Feb 2021 17:58:21 +0530 Subject: [PATCH] matrix-synapse: Update description to talk about TURN configuration Sunil: - Minor update to the TURN server message. - Drop updating the FAQ link since there may not be much time for translators to translate the changed message due to our current release schedule. The old link still works. Signed-off-by: Joseph Nuthalapati Signed-off-by: Sunil Mohan Adapa Reviewed-by: Sunil Mohan Adapa --- plinth/modules/matrixsynapse/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plinth/modules/matrixsynapse/__init__.py b/plinth/modules/matrixsynapse/__init__.py index 27063e24b..6d2484ff5 100644 --- a/plinth/modules/matrixsynapse/__init__.py +++ b/plinth/modules/matrixsynapse/__init__.py @@ -21,7 +21,7 @@ from plinth.modules.backups.components import BackupRestore from plinth.modules.coturn.components import TurnConfiguration, TurnConsumer from plinth.modules.firewall.components import Firewall from plinth.modules.letsencrypt.components import LetsEncrypt -from plinth.utils import is_non_empty_file +from plinth.utils import format_lazy, is_non_empty_file from . import manifest @@ -41,10 +41,10 @@ _description = [ 'synchronization and does not require phone numbers to work. Users on a ' 'given Matrix server can converse with users on all other Matrix ' 'servers via federation.'), - _('To communicate, you can use the ' - 'available clients ' - 'for mobile, desktop and the web. ' - 'Element client is recommended.') + format_lazy( + _('Matrix Synapse needs a STUN/TURN server for audio/video calls. ' + 'Install the Coturn app or configure ' + 'an external server.'), coturn_url=reverse_lazy('coturn:index')) ] depends = ['coturn']