summaryrefslogtreecommitdiff
path: root/tests/messages/data/project/ignored/this_wont_normally_be_here.py
blob: b96f5426074bf032769fa122b9117654ea9818e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
# -*- coding: utf-8 -*-

# This file won't normally be in this directory.
# It IS only for tests

from gettext import ngettext

def foo():
    # Note: This will have the TRANSLATOR: tag but shouldn't
    # be included on the extracted stuff
    print ngettext('FooBar', 'FooBars', 1)