More punctuation and minor errors changed

This commit is contained in:
Ruben Lubbes 2015-12-07 19:29:56 +01:00 committed by Sunil Mohan Adapa
parent 841439ba73
commit fad7448417
4 changed files with 5 additions and 5 deletions

View File

@ -49,7 +49,7 @@ class ConfigurationForm(forms.Form):
label=ugettext_lazy('Server domain'), required=False,
help_text=\
ugettext_lazy('Select your pagekite server. Set "pagekite.net" to use '
'the default pagekite.net server'),
'the default pagekite.net server.'),
widget=forms.TextInput())
server_port = forms.IntegerField(
label=ugettext_lazy('Server port'), required=False,
@ -65,7 +65,7 @@ class ConfigurationForm(forms.Form):
label=ugettext_lazy('Kite secret'),
help_text=\
ugettext_lazy('A secret associated with the kite or the default secret '
'for your account if no secret is set on the kite'))
'for your account if no secret is set on the kite.'))
def save(self, request):
"""Save the form on submission after validation."""

View File

@ -37,7 +37,7 @@ default directory, ensure that the new directory exists and is writable by \
rpc_username = forms.CharField(
label=_('Username'),
help_text=_('Username to login to the web interface'))
help_text=_('Username to login to the web interface.'))
rpc_password = forms.CharField(
label=_('Password'),

View File

@ -47,7 +47,7 @@
{% trans "Transmission daemon is running" %}
{% else %}
<span class='running-status inactive'></span>
{% trans "Transmission daemon is not running" %}
{% trans "Transmission daemon is not running." %}
{% endif %}
</p>

View File

@ -260,7 +260,7 @@ def _should_show_install_view(request, package_names):
exception = transaction.collect_result()
if not exception:
messages.success(request,
_('Installed and configured packages successfully'))
_('Installed and configured packages successfully.'))
return False
else:
error_string = getattr(exception, 'error_string', str(exception))