Commit 7470eede authored by Chris Oelmueller's avatar Chris Oelmueller

Remove some double spaces

parent 757f86fc
......@@ -294,7 +294,7 @@ Weblate uses privileges system based on Django. It defines following extra privi
* Can upload translation [Users, Managers]
* Can overwrite with translation upload [Users, Managers]
* Can define author of translation upload [Managers]
* Can define author of translation upload [Managers]
* Can force committing of translation [Managers]
* Can update translation from git [Managers]
* Can push translations to remote git [Managers]
......
......@@ -20,7 +20,7 @@ commitgit <project|project/subproject>
.. django-admin:: commitgit
Commits any possible pending changes to backend git repository.
Commits any possible pending changes to backend git repository.
You can either define which project or subproject to update (eg.
``weblate/master``) or use ``--all`` to update all existing subprojects.
......
......@@ -210,7 +210,7 @@ All machine translations are available on single tab on translation page.
Checks
------
Weblate does wide range of quality checks on messages. The following section
Weblate does wide range of quality checks on messages. The following section
describes them in more detail. The checks take account also special rules for
different languages, so if you think the result is wrong, please report a bug.
......
......@@ -56,7 +56,7 @@ class BeginSpaceCheck(TargetCheck):
'Source and translation do not both start with same number of spaces'
)
def check_single(self, source, target, unit, cache_slot):
def check_single(self, source, target, unit, cache_slot):
# One letter things are usually decimal/thousand separators
if len(source) <= 1 and len(target) <= 1:
return False
......@@ -77,7 +77,7 @@ class EndSpaceCheck(TargetCheck):
name = _('Trailing space')
description = _('Source and translation do not both end with a space')
def check_single(self, source, target, unit, cache_slot):
def check_single(self, source, target, unit, cache_slot):
# One letter things are usually decimal/thousand separators
if len(source) <= 1 and len(target) <= 1:
return False
......
......@@ -31,17 +31,17 @@ COLOR_DATA = {
'grey': {
'bar': (0, 67.0 / 255, 118.0 / 255),
'border': (0, 0, 0),
'text': (0, 0, 0),
'text': (0, 0, 0),
},
'white': {
'bar': (0, 67.0 / 255, 118.0 / 255),
'border': (0, 0, 0),
'text': (0, 0, 0),
'text': (0, 0, 0),
},
'black': {
'bar': (0, 67.0 / 255, 118.0 / 255),
'border': (255, 255, 255),
'text': (255, 255, 255),
'text': (255, 255, 255),
},
}
......
......@@ -3,7 +3,7 @@
{% block content %}
<p>{% trans "Your password has been set. You may go ahead and log in now." %}</p>
<p>{% trans "Your password has been set. You may go ahead and log in now." %}</p>
<p><a href="{{ login_url }}">{% trans 'Log in' %}</a></p>
......
......@@ -36,7 +36,7 @@ MANAGERS = ADMINS
DATABASES = {
'default': {
# Use 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
# Use 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'ENGINE': 'django.db.backends.sqlite3',
# Database name or path to database file if using sqlite3.
'NAME': 'weblate.db',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment