Commit 798a8f0e authored by Michal Čihař's avatar Michal Čihař

Fix typo in message

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 9642949b
......@@ -76,7 +76,7 @@ class AutoTranslationTest(ViewTestCase):
response = self.client.post(url, follow=True)
self.assertContains(
response,
'Automatic translation completed, 1 string udated.'
'Automatic translation completed, 1 string was updated.',
)
self.assertRedirects(response, reverse('translation', kwargs=params))
......
......@@ -626,8 +626,8 @@ def auto_translation(request, project, subproject, lang):
request, updated,
_('Automatic translation completed, no strings were updated.'),
ungettext(
'Automatic translation completed, %d string was udated.',
'Automatic translation completed, %d strings were udated.',
'Automatic translation completed, %d string was updated.',
'Automatic translation completed, %d strings were updated.',
updated
)
)
......
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