This file is indexed.

/usr/share/pyshared/hotot/i18n.py is in hotot-gtk 1:0.9.8.14-2.

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
19
20
21
22
# -*- coding: UTF-8 -*-
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79:
# Author: Huang Jiahua <jhuangjiahua@gmail.com>
# License: LGPLv3+
# Last modified:

app = 'hotot'

import os, sys
import gettext
import json
import re

if os.path.isdir(os.path.dirname(sys.argv[0]) + '/../build/mo'):
    gettext.install(app, os.path.dirname(sys.argv[0]) + '/../build/mo', unicode=True)
elif os.path.isdir(os.path.dirname(sys.argv[0]) + '/build/mo'):
    gettext.install(app, os.path.dirname(sys.argv[0]) + '/build/mo', unicode=True)
else:
    gettext.install(app, unicode=True)

if __name__=="__main__":
    print _('')