summaryrefslogtreecommitdiff
path: root/tests/i18n/commands/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/i18n/commands/__init__.py')
-rw-r--r--tests/i18n/commands/__init__.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/i18n/commands/__init__.py b/tests/i18n/commands/__init__.py
new file mode 100644
index 0000000000..ffd439140e
--- /dev/null
+++ b/tests/i18n/commands/__init__.py
@@ -0,0 +1,8 @@
+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.")
+