1# -*- coding: utf-8 -*-
2# file2.py for tests
3
4from gettext import ngettext
5
6def foo():
7    # Note: This will have the TRANSLATOR: tag but shouldn't
8    # be included on the extracted stuff
9    print ngettext('foobar', 'foobars', 1)
10