mirror of
https://github.com/django/django.git
synced 2024-11-19 07:54:07 +00:00
17b329ae08
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14595 bcc190cf-cafb-0310-a4f2-bffc1f526a37
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.")
|
|
|