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 <njoseph@riseup.net>
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Joseph Nuthalapati 2021-02-21 17:58:21 +05:30 committed by Sunil Mohan Adapa
parent 2ffde1b646
commit b7007eb873
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -21,7 +21,7 @@ from plinth.modules.backups.components import BackupRestore
from plinth.modules.coturn.components import TurnConfiguration, TurnConsumer from plinth.modules.coturn.components import TurnConfiguration, TurnConsumer
from plinth.modules.firewall.components import Firewall from plinth.modules.firewall.components import Firewall
from plinth.modules.letsencrypt.components import LetsEncrypt 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 from . import manifest
@ -41,10 +41,10 @@ _description = [
'synchronization and does not require phone numbers to work. Users on a ' 'synchronization and does not require phone numbers to work. Users on a '
'given Matrix server can converse with users on all other Matrix ' 'given Matrix server can converse with users on all other Matrix '
'servers via federation.'), 'servers via federation.'),
_('To communicate, you can use the ' format_lazy(
'<a href="https://matrix.org/docs/projects/">available clients</a> ' _('Matrix Synapse needs a STUN/TURN server for audio/video calls. '
'for mobile, desktop and the web. ' 'Install the <a href={coturn_url}>Coturn</a> app or configure '
'<a href="https://element.io/">Element</a> client is recommended.') 'an external server.'), coturn_url=reverse_lazy('coturn:index'))
] ]
depends = ['coturn'] depends = ['coturn']