Changes between Version 36 and Version 37 of AnnouncerPlugin


Ignore:
Timestamp:
Jun 29, 2010, 7:36:54 PM (14 years ago)
Author:
Steffen Hoffmann
Comment:

add hint on reqired message catalog compilation to i18n/l10n section

Legend:

Unmodified
Added
Removed
Modified
  • AnnouncerPlugin

    v36 v37  
    157157 python setup.py install
    158158}}}
     159
     160For the new 0.12/trunk branches see the i18n/l10n section below for an '''[#Abouti18nl10nsupport important hint on egg creation]''' that applies to system wide installations as well.
    159161
    160162After you have installed the AnnouncerPlugin, you must carefully evaluate the modules you wish to use and enable them. The simplest method of doing this is through 0.11's built in Admin panels.
     
    219221Kindly provided by [[Image(http://sw.transifex.net/2/static/charts/images/tx-logo-micro.png, link=http://www.transifex.net/, title=the open translation platform, valign=bottom)]]
    220222
     223Preparing the plugin from source requires the additional step of compiling message catalog files. Walk through:
     224{{{
     225cd announcerplugin
     226python ./setup.py egg_info
     227python ./setup.py compile_catalog -f
     228python ./setup.py bdist_egg
     229}}}
     230If you missed the 3rd step, you'll get an error in the 4th step complaining about missing `locale` directory.
     231This is just a side-effect, because there are no complied message catalogs for inclusion into Python egg, hence the whole path is missing.[[BR]]
     232To exclude translations marked as `# fuzzy` by the translator, you'll want to omit the extra `-f` argument to message catalog compilation.
     233Again, for more details see the [t:wiki:CookBook/PluginL10N#Compileanduseit l10n cookbook page for Trac plugins].
     234
    221235== Recent Changes ==
    222236