Commit 15854056 authored by Michal Čihař's avatar Michal Čihař

Merge pull request #191 from lem9/master

English improvements, clarifications
parents 03ede3fc 51565a83
......@@ -9,7 +9,7 @@
</p>
<p>
{% blocktrans with site|site_title as site_title %}there has been change in translation on {{ translation }} at {{ site_title }}.{% endblocktrans %}
{% blocktrans with site|site_title as site_title %}there has been a change in translation on {{ translation }} at {{ site_title }}.{% endblocktrans %}
</p>
<table>
......
......@@ -9,7 +9,7 @@
</p>
<p>
{% blocktrans with site|site_title as site_title %}there is new suggestion evaluate on {{ translation }} at {{ site_title }}.{% endblocktrans %}
{% blocktrans with site|site_title as site_title %}there is a new suggestion to evaluate on {{ translation }} at {{ site_title }}.{% endblocktrans %}
<p>
<table>
......
......@@ -9,7 +9,7 @@
</p>
<p>
{% blocktrans with site|site_title as site_title %}there has been new translation on {{ translation }} at {{ site_title }}.{% endblocktrans %}
{% blocktrans with site|site_title as site_title %}there has been a new translation on {{ translation }} at {{ site_title }}.{% endblocktrans %}
</p>
<table>
......
......@@ -11,7 +11,7 @@
<h2>{% trans "Promoting translation projects" %}</h2>
<p>
{% trans "Weblate provides various widgets to promote your translation projects. Open one of bellow project pages to them." %}
{% trans "Weblate provides various widgets to promote your translation projects. Open one of the project pages below." %}
</p>
<ul>
......
......@@ -1477,7 +1477,7 @@ class Translation(models.Model):
def get_lock_display(self):
return mark_safe(
_('This translation is locked by %(user)s for translation!') % {
_('This translation is locked by %(user)s!') % {
'user': self.get_lock_user_display(),
}
)
......@@ -1485,7 +1485,7 @@ class Translation(models.Model):
def is_locked(self, request=None, multi=False):
'''
Check whether the translation is locked and
possibly emmits messages if request object is
possibly emits messages if request object is
provided.
'''
......
......@@ -1328,7 +1328,7 @@ def translate(request, project, subproject, lang):
if recent_changes.count() == 0 or True:
messages.info(
request,
_('There is currently no active translator for this translation, please consider becoming translator as your suggestion might stay unreviewed otherwise.')
_('There is currently no active translator for this translation, please consider becoming a translator as your suggestion might otherwise remain unreviewed.')
)
# Notify subscribed users
subscriptions = Profile.objects.subscribed_new_suggestion(
......
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