mirror of
https://github.com/django/django.git
synced 2024-12-01 15:42:04 +01:00
9 lines
237 B
Python
9 lines
237 B
Python
from django.utils.translation import ugettext as _
|
|
|
|
# Translators: This comment should be extracted
|
|
dummy1 = _("This is a translatable string.")
|
|
|
|
# This comment should not be extracted
|
|
dummy2 = _("This is another translatable string.")
|
|
|