def foo():
# TRANSLATOR: This will be a translator coment,
# that will include several lines
- print _('bar')
+ print(_('bar'))
def foo():
# Note: This will have the TRANSLATOR: tag but shouldn't
# be included on the extracted stuff
- print ngettext('foobar', 'foobars', 1)
+ print(ngettext('foobar', 'foobars', 1))
def foo():
# Note: This will have the TRANSLATOR: tag but shouldn't
# be included on the extracted stuff
- print ngettext('FooBar', 'FooBars', 1)
+ print(ngettext('FooBar', 'FooBars', 1))