Ticket #7440 (closed enhancement: fixed)
[PATCH] Polish translation file.
| Reported by: | wmichalski@… | Owned by: | jruigrok |
|---|---|---|---|
| Priority: | normal | Milestone: | 0.12 |
| Component: | i18n | Version: | 0.12dev |
| Severity: | normal | Keywords: | 0.12dev i18n |
| Cc: | wmichalski@… |
Description
This is polish translation of messages.po (attached diff file). Please notice that for compound items from html templates (xml tag i18n:msg="") translation messages does not work correctly. I think that problem lies in Geisha/Filter not in Trac project, but I am not sure. I also noticed that error.html and wiki_edit.html template cause Track to dump unformatted error message with error:
IndexError?: pop from empty list
After short investigation in template wiki_edit.html, found that code fragment causing error is:
<div id="help" i18n:msg="">
<b>Note:</b> See <a href="${href.wiki('WikiFormatting')}">WikiFormatting</a> and
<a href="${href.wiki('TracWiki')}">TracWiki</a> for help on editing wiki content.
</div>
changing to:
<div id="help" i18n:msg="">
<b>Note:</b> See
<a href="${href.wiki('TracWiki')}">TracWiki</a> for help on editing wiki content.
</div>
everything works ok, translation of course not ;). It is somehow connected with that only one statement ${...} can be inside tag marked as i18n:msg="".


