Changes between Version 14 and Version 15 of TracTicketTemplatePlugin


Ignore:
Timestamp:
Feb 9, 2010, 3:15:59 AM (14 years ago)
Author:
Richard Liao
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketTemplatePlugin

    v14 v15  
    6767  * Set field_list to choose which field should be included in template.
    6868  * Set enable_custom to false will disable My Template, which default is true.
     69 
     70== About i18n support ==
     71Current languages are:
     72 * English
     73 * Chinese(simplified)
     74 
     75If you can't find language you want, you can do it yourself.
     76 1. Init your language catalog, take et_EE for example:
     77{{{
     78python setup.py init_catalog -l et_EE
     79}}}
     80 1. Update catalog
     81 {{{
     82python setup.py update_catalog -l et_EE
     83}}}
     84 1. Do translate with your favorite editor, the language file locate in tickettemplate/loclate/et_EE/LC_MESSAGES/tickettemplate.po
     85  * Note: Save this .po file with UTF8 encoding.
     86 1. Update catalog again, for normalizing the manual edits:
     87 {{{
     88python setup.py update_catalog -l et_EE
     89}}}
     90 1. Generate the compiled catalog:
     91 {{{
     92python setup.py compile_catalog -f
     93}}}
     94 1. Reinstall the plugin
     95See [http://trac.edgewall.org/wiki/TracL10N TracL10N] for more details.
     96
     97Contributing your translation are welcome.
    6998
    7099== Example ==