~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/i18n.py

  • Committer: Vincent Ladeuil
  • Date: 2011-06-15 11:36:05 UTC
  • mto: This revision was merged to the branch mainline in revision 5975.
  • Revision ID: v.ladeuil+lp@free.fr-20110615113605-p7zyyfry9wy1hquc
Make ContentConflict resolution more robust

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
import os
27
27
import sys
28
28
 
29
 
 
30
 
_translations = None
 
29
_translation = _gettext.NullTranslations()
31
30
 
32
31
 
33
32
def gettext(message):
35
34
    
36
35
    :returns: translated message as unicode.
37
36
    """
38
 
    install()
39
 
    return _translations.ugettext(message)
40
 
 
41
 
 
42
 
def ngettext(singular, plural, number):
43
 
    """Translate message with plural forms based on `number`.
44
 
 
45
 
    :param singular: English language message in singular form
46
 
    :param plural: English language message in plural form
47
 
    :param number: the number this message should be translated for
 
37
    return _translation.ugettext(message)
 
38
 
 
39
 
 
40
def ngettext(s, p, n):
 
41
    """Translate message based on `n`.
48
42
 
49
43
    :returns: translated message as unicode.
50
44
    """
51
 
    install()
52
 
    return _translations.ungettext(singular, plural, number)
 
45
    return _translation.ungettext(s, p, n)
53
46
 
54
47
 
55
48
def N_(msg):
62
55
 
63
56
    :returns: concatenated translated message as unicode.
64
57
    """
65
 
    install()
66
58
    paragraphs = message.split(u'\n\n')
67
 
    ugettext = _translations.ugettext
 
59
    ugettext = _translation.ugettext
68
60
    # Be careful not to translate the empty string -- it holds the
69
61
    # meta data of the .po file.
70
62
    return u'\n\n'.join(ugettext(p) if p else u'' for p in paragraphs)
71
63
 
72
64
 
73
 
def disable_i18n():
74
 
    """Do not allow i18n to be enabled.  Useful for third party users
75
 
    of bzrlib."""
76
 
    global _translations
77
 
    _translations = _gettext.NullTranslations()
78
 
 
79
 
 
80
 
def installed():
81
 
    """Returns whether translations are in use or not."""
82
 
    return _translations is not None
83
 
 
84
 
 
85
65
def install(lang=None):
86
 
    """Enables gettext translations in bzr."""
87
 
    global _translations
88
 
    if installed():
89
 
        return
90
 
    _translations = install_translations(lang)
91
 
 
92
 
 
93
 
def install_translations(lang=None, domain='bzr', locale_base=None):
94
 
    """Create a gettext translation object.
95
 
    
96
 
    :param lang: language to install.
97
 
    :param domain: translation domain to install.
98
 
    :param locale_base: plugins can specify their own directory.
99
 
 
100
 
    :returns: a gettext translations object to use
101
 
    """
 
66
    global _translation
102
67
    if lang is None:
103
68
        lang = _get_current_locale()
104
 
    if lang is not None:
105
 
        languages = lang.split(':')
106
 
    else:
107
 
        languages = None
108
 
    translation = _gettext.translation(
109
 
            domain,
110
 
            localedir=_get_locale_dir(locale_base),
111
 
            languages=languages,
 
69
    _translation = _gettext.translation(
 
70
            'bzr',
 
71
            localedir=_get_locale_dir(),
 
72
            languages=lang.split(':'),
112
73
            fallback=True)
113
 
    return translation
114
 
 
115
 
 
116
 
def add_fallback(fallback):
117
 
    """
118
 
    Add a fallback translations object.  Typically used by plugins.
119
 
 
120
 
    :param fallback: gettext.GNUTranslations object
121
 
    """
122
 
    install()
123
 
    _translations.add_fallback(fallback)
124
74
 
125
75
 
126
76
def uninstall():
127
 
    """Disables gettext translations."""
128
 
    global _translations
129
 
    _translations = None
130
 
 
131
 
 
132
 
def _get_locale_dir(base):
133
 
    """Returns directory to find .mo translations file in, either local or system
134
 
 
135
 
    :param base: plugins can specify their own local directory
136
 
    """
 
77
    global _translation
 
78
    _translation = _null_translation
 
79
 
 
80
 
 
81
def _get_locale_dir():
137
82
    if hasattr(sys, 'frozen'):
138
 
        if base is None:
139
 
            base = os.path.dirname(
 
83
        base = os.path.dirname(
140
84
                unicode(sys.executable, sys.getfilesystemencoding()))
141
85
        return os.path.join(base, u'locale')
142
86
    else:
143
 
        if base is None:
144
 
            base = os.path.dirname(unicode(__file__, sys.getfilesystemencoding()))
 
87
        base = os.path.dirname(unicode(__file__, sys.getfilesystemencoding()))
145
88
        dirpath = os.path.realpath(os.path.join(base, u'locale'))
146
89
        if os.path.exists(dirpath):
147
90
            return dirpath
179
122
def _get_current_locale():
180
123
    if not os.environ.get('LANGUAGE'):
181
124
        from bzrlib import config
182
 
        lang = config.GlobalStack().get('language')
 
125
        lang = config.GlobalConfig().get_user_option('language')
183
126
        if lang:
184
127
            os.environ['LANGUAGE'] = lang
185
128
            return lang
190
133
        if lang:
191
134
            return lang
192
135
    return None
193
 
 
194
 
 
195
 
def load_plugin_translations(domain):
196
 
    """Load the translations for a specific plugin.
197
 
 
198
 
    :param domain: Gettext domain name (usually 'bzr-PLUGINNAME')
199
 
    """
200
 
    locale_base = os.path.dirname(
201
 
        unicode(__file__, sys.getfilesystemencoding()))
202
 
    translation = install_translations(domain=domain,
203
 
        locale_base=locale_base)
204
 
    add_fallback(translation)
205
 
    return translation