summaryrefslogtreecommitdiff
path: root/src/leap/util/translations.py
blob: 14b8c0208413b06678a37dcf38950b78961f37ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import inspect
import logging

from PyQt4.QtCore import QCoreApplication
from PyQt4.QtCore import QLocale

logger = logging.getLogger(__name__)

"""
here I could not do all that I wanted.
the context is not getting passed to the xml file.
Looks like pylupdate4 is somehow a hack that does not
parse too well the python ast.
I guess we could generate the xml for ourselves as a last recourse.
"""

# XXX BIG NOTE:
# RESIST the temptation to get the translate function
# more compact, or have the Context argument passed as a variable
# It HAS to be explicit due  to how the pylupdate parser
# works.


qtTranslate = QCoreApplication.translate


def translate(*args, **kwargs):
    """
    our magic function.
    translate(Context, text, comment)
    """
    #print 'translating...'
    klsname = None
    try:
        # get class value from instance
        # using live object inspection
        prev_frame = inspect.stack()[1][0]
        self = inspect.getargvalues(prev_frame).locals.get('self')
        if self:
            # XXX will this work with QObject wrapper??
            if isinstance(LEAPTranslatable, self) and hasattr(self, 'tr'):
                print "we got a self in base class"
                return self.tr(*args)

            # Trying to  get the class name
            # but this is useless, the parser
            # has already got the context.
            klsname = self.__class__.__name__
            #print 'KLSNAME  -- ', klsname
    except:
        logger.error('error getting stack frame')
        #print 'error getting stack frame'

    if klsname:
        nargs = (klsname,) + args
        return qtTranslate(*nargs)

    else:
        nargs = ('default', ) + args
        return qtTranslate(*nargs)


class LEAPTranslatable(dict):
    """
    An extended dict that implements a .tr method
    so it can be translated on the fly by our
    magic  translate method
    """

    try:
        locale = str(QLocale.system().name()).split('_')[0]
    except:
        logger.warning("could not get system locale!")
        print "could not get system locale!"
        locale = "en"

    def tr(self, to=None):
        if not to:
            to = self.locale
        _tr = self.get(to, None)
        if not _tr:
            _tr = self.get("en", None)
        return _tr