]> SALOME platform Git repositories - tools/eficas.git/blob - Extensions/localisation.py
Salome HOME
mse a jour du 07/03/2016 pour sauvegarde
[tools/eficas.git] / Extensions / localisation.py
1 # -*- coding: utf-8 -*-
2 # copyright 2012 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
3 # contact http://www.logilab.fr -- mailto:contact@logilab.fr
4 #
5 # This program is free software: you can redistribute it and/or modify it under
6 # the terms of the GNU Lesser General Public License as published by the Free
7 # Software Foundation, either version 2.1 of the License, or (at your option)
8 # any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
13 # details.
14 #
15 # You should have received a copy of the GNU Lesser General Public License along
16 # with this program. If not, see <http://www.gnu.org/licenses/>.
17 """
18 Creates and loads two ``QTranslator`` objects, one for pure Qt, one for Eficas,
19 and installs them to a ``QApplication``.
20
21 """
22
23 from determine import monEnvQT5
24 if monEnvQT5 :
25    from PyQt5.QtCore import QTranslator
26 else :
27    from PyQt4.QtCore import QTranslator
28
29 qt_translator = QTranslator()
30 eficas_translator = QTranslator()
31
32 def localise(application, locale=None ):
33     """
34     localise(QApplication) -> None
35
36     Loads and installs to a ``QApplication`` two ``QTranslator``
37     objects, one for pure Qt for translating the strings 
38     available in Qt, and one or Eficas, for translating 
39     the strings specified precisely for Eficas.
40     If the Qt base translator cannot be loaded with the locale
41     specified by the user, one attempts to load Qt base 
42     translator with the system locale.
43     If no locale is specified by the user, the system locale
44     is used instead, for both Qt base and Eficas translators.
45     """
46     if monEnvQT5 :
47        from PyQt5.QtCore import QLibraryInfo
48        from PyQt5.QtCore import QLocale
49        from PyQt5.QtWidgets import QApplication
50     else :
51        from PyQt4.QtCore import QLibraryInfo
52        from PyQt4.QtCore import QLocale
53        from PyQt4.QtGui import QApplication
54
55     sys_locale = QLocale.system().name()
56
57     if locale is None:
58         #locale = sys_locale
59         locale="fr"
60
61     #global qt_translator
62     #if qt_translator.load("qt_" + locale,
63     #                      QLibraryInfo.location(QLibraryInfo.TranslationsPath)):
64     #    application.installTranslator(qt_translator)
65     #elif qt_translator.load("qt_" + sys_locale,
66     #                        QLibraryInfo.location(QLibraryInfo.TranslationsPath)):
67     #    print "Qt base translator with default locale loaded!"
68     #    application.installTranslator(qt_translator)
69         # Try to load Qt base translator according to system locale.
70     #else:
71     #    print "Unable to load Qt base translator!"
72     
73     global eficas_translator
74     import os
75     monPath=os.path.join(os.path.dirname(__file__),'..','UiQT4')
76     if eficas_translator.load("eficas_" + locale, monPath):
77         QApplication.installTranslator(eficas_translator)
78     else:
79         print "Unable to load Eficas translator!"
80
81     
82
83 if __name__ == "__main__":
84     import sys
85     localise(sys.argv[1])