/usr/share/pyshared/ase/gui/i18n.py is in python-ase 3.6.0.2515-1.
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 | import os
import locale
import gettext
# This module enables localization using gettext. If this module has
# been imported, translations will be loaded from mo-files when
# possible.
domain = 'ag'
localedir = '%s/po/' % os.path.dirname(__file__)
gettext.bindtextdomain(domain, localedir)
gettext.textdomain(domain)
translation = gettext.translation(domain, localedir, fallback=True)
translation.install(unicode=True)
|