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.")
|
||
|
|