Openbravo Issue Tracking System - Tools
View Issue Details
0006892Toolsopenbravo2popublic2009-01-14 18:042009-04-30 12:21
gforcada 
alostale 
normalmajoralways
scheduledopen 
5
0006892: [openbravo2po-valuetrl]Prevent non-translated strings to be recognized as translated from po tools
Hi,

One issue still remaining to be fixed is that when you have something like:

<value column="Help" isTrl="N" original="Define a new language as a system language.">B</value>

This is getting translated to po files as:
msgid "Define a new language as a system language."
msgstr "B"

And for all po tools out there this will be considered a string that is currently translated.

Po files have an option to state that a translation is fuzzy adding the following line BEFORE msgid:
#, fuzzy

With this all strings in <value> lines that have the isTrl="N" and the translation is not empty (like the one above that the translation is a B) will have a #, fuzzy line above msgid line if they are exported to po files.


I'm attaching a first alpha version, it just checks if the isTrl flag is N, but it doesn't check if the translation is empty so it ends up marking all strings as fuzzy.

Since is a really trivial patch I suppose is trivial to finish it.
comsup_sprint5, translation
patch fuzzy-line.patch (595) 2009-01-14 18:04
https://issues.openbravo.com/file_download.php?file_id=641&type=bug
Issue History
2009-01-14 18:04gforcadaNew Issue
2009-01-14 18:04gforcadaFile Added: fuzzy-line.patch
2009-01-23 10:55gforcadaNote Added: 0012554
2009-01-23 16:37jordimasIssue Monitored: jordimas
2009-01-27 12:05pheenanStatusnew => scheduled
2009-01-27 12:05pheenanAssigned To => pheenan
2009-01-27 12:05pheenanfix_in_branch => trunk
2009-01-27 12:25pheenanTag Attached: comsup_sprint5
2009-02-25 12:40gforcadaNote Added: 0014056
2009-04-30 12:21alostaleAssigned Topheenan => alostale
2009-04-30 18:12rmorleyTag Attached: translation

Notes
(0012554)
gforcada   
2009-01-23 10:55   
I think this is somewhat related to:
https://issues.openbravo.com/view.php?id=6928 [^]

Seems that the logic that marks a <value> line as translated or untranslated (and thus adding the isTrl="Y" or isTrl="N") is a little buggy.
(0014056)
gforcada   
2009-02-25 12:40   
The main problem here is that if we have a <row> like:

<row id="102" trl="N">
  <value column="Name" isTrl="N" original="Java Version">Java Version</value>
</row>

when exported to po file will be:

msgid "Java Version"
msgstr "Java Version"

and ALL po tools works like:
- if msgstr is empty -> string not translated
- if msgstr non-empty -> string translated
- if msgstr non-empty but there's a "#, fuzzy" line above msgid -> string fuzzy

So all <value isTrl="N"> that have translation have to add a #, fuzzy line, in the example above:

#, fuzzy
msgid "Java Version"
msgstr "Java Version"