From ec67b71aa6ae0c3c73b98d21fbe7e7d456361ae0 Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Fri, 16 Apr 2021 15:48:03 +0530 Subject: [PATCH] coturn: Mention ejabberd in app description Signed-off-by: Joseph Nuthalapati Reviewed-by: James Valleroy --- plinth/modules/coturn/__init__.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/plinth/modules/coturn/__init__.py b/plinth/modules/coturn/__init__.py index 7b3a632b7..5bca036a9 100644 --- a/plinth/modules/coturn/__init__.py +++ b/plinth/modules/coturn/__init__.py @@ -7,6 +7,7 @@ import json import logging import pathlib +from django.urls import reverse_lazy from django.utils.translation import ugettext_lazy as _ from plinth import actions @@ -19,6 +20,7 @@ from plinth.modules.coturn.components import TurnConfiguration, TurnConsumer from plinth.modules.firewall.components import Firewall from plinth.modules.letsencrypt.components import LetsEncrypt from plinth.modules.users.components import UsersAndGroups +from plinth.utils import format_lazy from . import manifest @@ -35,8 +37,11 @@ _description = [ 'providing an implementation of TURN and STUN protocols. WebRTC, SIP ' 'and other communication servers can use it to establish a call between ' 'parties who are otherwise unable connect to each other.'), - _('It is not meant to be used directly by users. Servers such as ' - 'matrix-synapse need to be configured with the details provided here.'), + format_lazy( + _('It is not meant to be used directly by users. Servers such as ' + 'Matrix Synapse or ejabberd' + ' need to be configured with the details provided here.'), + ms_url=reverse_lazy('matrixsynapse:index'), e_url=('ejabberd:index')), ] app = None