1. # This package is used to test the --exclude option of
    
  2. # the makemessages and compilemessages management commands.
    
  3. # The locale directory for this app is generated automatically
    
  4. # by the test cases.
    
  5. 
    
  6. from django.utils.translation import gettext as _
    
  7. 
    
  8. # Translators: This comment should be extracted
    
  9. dummy1 = _("This is a translatable string.")
    
  10. 
    
  11. # This comment should not be extracted
    
  12. dummy2 = _("This is another translatable string.")