Option to set the TextUnit id to be the same as the name in filters, especially the PropertiesFilter and XMLFilter

Issue #520 new
Mike Bryant created an issue

It would be really nice for XLIFF workflows if there was an option to set the TextUnit id to match the name in filters (at the point they create a TextUnit). This is especially important for the PropertiesFilter and XMLFilter that have the ability to extract a unique ID from the content. Many XLIFF editors and workflows use the ID and not the resname for identification. For projects that place XLIFFs under source control it would also reduce the differences between versions of the file (integer IDs get reordered on updates).

Comments (10)

  1. YvesS

    This would be doable as an option on the filter side.

    But having property value as XLIFF id value has implication in one of our output format: XLIFF2. There the id values must be NMTOKEN and there is no such rule for the property keys. So one could end up with invalid XLIFF2 files. I suppose is something that could be caught when generating XLIFF2 files and leave alone other output.

  2. Chase Tingley

    Hi @mike_bryant - do you remember offhand which XLIFF editors you've seen which don't expose the name?

  3. YvesS

    I've added a new option in the Properties filter to use the property key as the text-unit id value.

    Not for the XML Filter. There things are driven by ITS, so we would have to create a proprietary extension for the option.

  4. Mike Bryant reporter

    One example of an XLIFF editor that shows IDs instead of resnames is the "Transolution Xliff Editor". It appears Microsoft's "Multilingual Editor" is also very ID centric, but it is a very poor general purpose XLIFF editor.

  5. Mike Bryant reporter

    It appears the free web-based editor at http://xliff.brightec.co.uk/ shows IDs and ignores resnames too.

  6. Jim Hargrave (OLD)
    • changed version to M33

    Be very careful with strings as id’s. Default for the xml processor is to normalize whitespace in attributes on output. The Apple tools generate xliff with string id’s and it causes issues when they are mangled by the xml processor/writer.

  7. Log in to comment