~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/i18n.py

  • Committer: Patch Queue Manager
  • Date: 2011-09-08 11:01:15 UTC
  • mfrom: (6123.1.16 gpg-typo)
  • Revision ID: pqm@cupuasso-20110908110115-gbb9benwkdksvzk5
(jelmer) Fix a typo (invalid format identifier) in an error message in
 bzrlib.gpg. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
import os
27
27
import sys
28
28
 
29
 
 
30
29
_translations = None
31
30
 
32
31
 
35
34
    
36
35
    :returns: translated message as unicode.
37
36
    """
38
 
    install()
39
37
    return _translations.ugettext(message)
40
38
 
41
39
 
48
46
 
49
47
    :returns: translated message as unicode.
50
48
    """
51
 
    install()
52
49
    return _translations.ungettext(singular, plural, number)
53
50
 
54
51
 
62
59
 
63
60
    :returns: concatenated translated message as unicode.
64
61
    """
65
 
    install()
66
62
    paragraphs = message.split(u'\n\n')
67
63
    ugettext = _translations.ugettext
68
64
    # Be careful not to translate the empty string -- it holds the
70
66
    return u'\n\n'.join(ugettext(p) if p else u'' for p in paragraphs)
71
67
 
72
68
 
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
69
def installed():
81
 
    """Returns whether translations are in use or not."""
82
70
    return _translations is not None
83
71
 
84
72
 
85
73
def install(lang=None):
86
 
    """Enables gettext translations in bzr."""
87
74
    global _translations
88
75
    if installed():
89
76
        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
 
    """
102
77
    if lang is None:
103
78
        lang = _get_current_locale()
104
79
    if lang is not None:
105
80
        languages = lang.split(':')
106
81
    else:
107
82
        languages = None
108
 
    translation = _gettext.translation(
109
 
            domain,
110
 
            localedir=_get_locale_dir(locale_base),
 
83
    _translations = _gettext.translation(
 
84
            'bzr',
 
85
            localedir=_get_locale_dir(),
111
86
            languages=languages,
112
87
            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
88
 
125
89
 
126
90
def uninstall():
127
 
    """Disables gettext translations."""
128
91
    global _translations
129
92
    _translations = None
130
93
 
131
94
 
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
 
    """
 
95
def _get_locale_dir():
137
96
    if hasattr(sys, 'frozen'):
138
 
        if base is None:
139
 
            base = os.path.dirname(
 
97
        base = os.path.dirname(
140
98
                unicode(sys.executable, sys.getfilesystemencoding()))
141
99
        return os.path.join(base, u'locale')
142
100
    else:
143
 
        if base is None:
144
 
            base = os.path.dirname(unicode(__file__, sys.getfilesystemencoding()))
 
101
        base = os.path.dirname(unicode(__file__, sys.getfilesystemencoding()))
145
102
        dirpath = os.path.realpath(os.path.join(base, u'locale'))
146
103
        if os.path.exists(dirpath):
147
104
            return dirpath
190
147
        if lang:
191
148
            return lang
192
149
    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