2010-11-17 23:37:33 +08:00
|
|
|
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.")
|
|
|
|
|