blob: 6ae20f3c8699f1cb7833a07cfde19a90d3945f04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/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")
default_app_config = 'ishtar_common.apps.IshtarCommonConfig'
|