195
def load_plugin_translations(domain):
196
"""Load the translations for a specific plugin.
198
:param domain: Gettext domain name (usually 'bzr-PLUGINNAME')
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)