blob: a8104ce970104e85359e57383d088204517ce312 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (C) 2014-2026 Étienne Loks <etienne.loks at iggdrasil dot net>
from django.utils.translation import gettext_lazy as _
# overload of translation of registration module
_("username")
_("email address")
_("Related item")
|