blob: 2b432d9086b47c2fdb4dc0a8097295219936627c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2014-2015 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet>
from django.utils.translation import ugettext_lazy as _
# overload of translation of registration module
_(u"username")
_(u"email address")
_(u"Related item")
|