computerline1z / okapi

Automatically exported from code.google.com/p/okapi
0 stars 0 forks source link

Several properties with same type values in TMX #224

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Some TMX files now have several properties with the same type value:

<tu ...>
...
<prop type="x-Context">0, 0</prop>
<prop type="x-Context">2032174, 2032174</prop>
<prop type="x-Context">2032205, 2032205</prop>
<prop type="x-Context">58179519984456, 58179519984456</prop>
<prop type="x-Context">58180406546977, 58180406964051</prop>
<prop type="x-Origin">TM</prop>

I'm not sure if we support this properly or not in the TMX filter.
We need to check that at some point.

Original issue reported on code.google.com by yves.sav...@gmail.com on 2 May 2012 at 7:27

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
To clarify.

In the TMX filter, currently the props and notes are read-only so re-writing 
works ok. The property is combined under one name so the above x-Content tags 
would result in one property:

x-Context="0, 0, 2032174, 2032174, 2032205, 2032205, 58179519984456, 
58179519984456, 58180406546977, 58180406964051"

Until we actually do something with those properties it's probably not an issue.

Original comment by fli...@enlaso.com on 12 Jun 2012 at 5:57