Commit 69129b9f authored by Michal Čihař's avatar Michal Čihař

Do not make these fail on import

parent 1b5ea212
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
Fake file to translate messages from django-registration and django.contrib.auth. Fake file to translate messages from django-registration and django.contrib.auth.
''' '''
def _(s):
return s
def fake(): def fake():
_(u'This username is already taken. Please choose another.') _(u'This username is already taken. Please choose another.')
_(u'You must type the same password each time') _(u'You must type the same password each time')
......
...@@ -6,6 +6,9 @@ Generated using: ...@@ -6,6 +6,9 @@ Generated using:
./manage.py dumpdata --format=yaml lang | grep fields:| sed 's/.*name: / _("/; s/, nplu.*/")/' ./manage.py dumpdata --format=yaml lang | grep fields:| sed 's/.*name: / _("/; s/, nplu.*/")/'
''' '''
def _(s):
return s
def fake(): def fake():
_("Afrikaans") _("Afrikaans")
_("Akan") _("Akan")
......
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