Changes between Version 11 and Version 12 of DynamicFieldsPlugin


Ignore:
Timestamp:
Sep 28, 2010, 6:21:17 PM (14 years ago)
Author:
Steffen Hoffmann
Comment:

corrected and hopefully clearified i18n-related explanations

Legend:

Unmodified
Added
Removed
Modified
  • DynamicFieldsPlugin

    v11 v12  
    143143Kindly 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)]]
    144144
    145 Preparing the plugin from source requires the additional step of compiling message catalog files. This will be done automatically by invoking a suitable Babel install. Walk through:
     145Preparing the plugin from source now requires the additional step of compiling message catalog files. As long as you stick to the message catalogs served with this plugin directly, there is still nothing special to be done. Just package your plugin from source the standard way:
     146{{{
     147cd dynamicfieldsplugin
     148python ./setup.py bdist_egg
     149}}}
     150and the proper helper function calls to a suitable Babel install will be issued automatically for you.
     151
     152Only if you encounter message catalogs with translations marked 'fuzzy', including them would require special treatment, since automatic compilation trashes them by default. Walk through:
    146153{{{
    147154cd dynamicfieldsplugin
    148155python ./setup.py compile_catalog -f
    149 python ./setup.py compile_catalog_js -f
    150156python ./setup.py bdist_egg
    151157}}}
    152 Step 2 and 3 are almost obsolete, and only needed to include translations marked as `# fuzzy` by the translator, since
    153 the compilation before packaging will do message catalog compilation compile only without the extra `-f` argument.
    154 Again, for more details see the [t:wiki:CookBook/PluginL10N#Compileanduseit l10n cookbook page for Trac plugins].
     158Again, this is almost obsolete, and only needed to include translations marked as `#, fuzzy` by the translator.
     159For more details see the [t:wiki:CookBook/PluginL10N#Compileanduseit l10n cookbook page for Trac plugins].
    155160
    156161== Recent Changes ==