blob: e9d2097477d9c8ffba2419b983ba9f93015390c5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (C) 2014-2025 É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")
|