quassel: Minor styling and UI message chanages

- Add information about Quassel clients and usage.

- Expand introduction.

- Update titles for consistency.

- Minor styling
This commit is contained in:
Sunil Mohan Adapa 2015-12-12 15:38:03 +05:30
parent 644ab8db9f
commit 3c895f58f5
4 changed files with 18 additions and 7 deletions

View File

@ -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

View File

@ -16,7 +16,7 @@
#
"""
Forms for quassel module.
Forms for Quassel module.
"""
from django import forms

View File

@ -23,7 +23,7 @@
{% block content %}
<h2>{% trans "Quassel IRC" %}</h2>
<h2>{% trans "IRC Client (Quassel)" %}</h2>
<p>
{% 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 %}
</p>
<p>
{% blocktrans trimmed %}
You can connect to your Quassel core on the default Quassel port
4242. Clients to connect to Quassel from your
<a href="http://quassel-irc.org/downloads">desktop</a> and
<a href="http://quasseldroid.iskrembilen.com/">mobile</a> devices
are available.
{% endblocktrans %}
</p>

View File

@ -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})