/usr/lib/python2.7/dist-packages/pgxnclient/i18n.py is in pgxnclient 1.2.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | """
pgxnclient -- internationalization support
"""
# Copyright (C) 2011-2012 Daniele Varrazzo
# This file is part of the PGXN client
def gettext(msg):
# TODO: real l10n
return msg
_ = gettext
def N_(msg):
"""Designate a string to be found by gettext but not to be translated."""
return msg
|