/usr/share/pyshared/guidata/tests/translations.py is in python-guidata 1.6.1-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 16 17 18 19 20 | # -*- coding: utf-8 -*-
#
# Copyright © 2012 CEA
# Pierre Raybaut
# Licensed under the terms of the CECILL License
# (see guidata/__init__.py for details)
"""Little translation test"""
from __future__ import print_function
SHOW = False # Do not show test in GUI-based test launcher
from guidata.config import _
translations = (_("Some required entries are incorrect"),)
if __name__ == '__main__':
for text in translations:
print(text)
|