diff --git a/actions/quassel b/actions/quassel index 8591ffc0c..e40ccc1ca 100755 --- a/actions/quassel +++ b/actions/quassel @@ -1,5 +1,4 @@ #!/usr/bin/python3 -# -*- mode: python -*- # # This file is part of Plinth. # @@ -18,7 +17,7 @@ # """ -Configuration helper for Quassel core +Configuration helper for Quassel core. """ import argparse diff --git a/plinth/modules/quassel/forms.py b/plinth/modules/quassel/forms.py index fcd3b3ad2..c8da8c883 100644 --- a/plinth/modules/quassel/forms.py +++ b/plinth/modules/quassel/forms.py @@ -16,7 +16,7 @@ # """ -Forms for quassel module. +Forms for Quassel module. """ from django import forms diff --git a/plinth/modules/quassel/templates/quassel.html b/plinth/modules/quassel/templates/quassel.html index 63575476b..286f01065 100644 --- a/plinth/modules/quassel/templates/quassel.html +++ b/plinth/modules/quassel/templates/quassel.html @@ -23,7 +23,7 @@ {% block content %} -
{% blocktrans trimmed with box_name=cfg.box_name %} @@ -31,7 +31,19 @@ "core" and a "client". This allows the core to remain connected to IRC servers, and to continue receiving messages, even when the client is disconnected. {{ box_name }} can run the Quassel - core service. + core service keeping you always online and one or more Quassel + clients from a desktop or a mobile can be used to connect and + disconnect from it. + {% endblocktrans %} +
+ ++ {% blocktrans trimmed %} + You can connect to your Quassel core on the default Quassel port + 4242. Clients to connect to Quassel from your + desktop and + mobile devices + are available. {% endblocktrans %}
diff --git a/plinth/modules/quassel/views.py b/plinth/modules/quassel/views.py index b5841e545..3918c849b 100644 --- a/plinth/modules/quassel/views.py +++ b/plinth/modules/quassel/views.py @@ -16,7 +16,7 @@ # """ -Views for quassel module. +Views for Quassel module. """ from django.contrib import messages @@ -51,7 +51,7 @@ def index(request): form = QuasselForm(initial=status, prefix='quassel') return TemplateResponse(request, 'quassel.html', - {'title': _('Quassel IRC'), + {'title': _('IRC Client (Quassel)'), 'status': status, 'form': form})