From 16ab0e4fc9b767c77248ece300ca0478e1baa4ab Mon Sep 17 00:00:00 2001 From: nbenedek Date: Wed, 15 Jun 2022 09:10:42 +0200 Subject: [PATCH] janus: improve description about coturn Reviewed-by: James Valleroy [james: Remove space] Signed-off-by: James Valleroy --- plinth/modules/janus/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plinth/modules/janus/__init__.py b/plinth/modules/janus/__init__.py index 671bb89f4..9621553c4 100644 --- a/plinth/modules/janus/__init__.py +++ b/plinth/modules/janus/__init__.py @@ -15,13 +15,16 @@ from plinth.modules.backups.components import BackupRestore from plinth.modules.coturn.components import TurnTimeLimitedConsumer from plinth.modules.firewall.components import Firewall from plinth.package import Packages +from plinth.utils import format_lazy from . import manifest _description = [ _('Janus is a lightweight WebRTC server.'), _('A simple video conference room is included.'), - _('A STUN/TURN server (such as Coturn) is required to use Janus.'), + format_lazy( + _('Coturn is required to ' + 'use Janus.'), coturn_url=reverse_lazy('coturn:index')), ] app = None