Open GoogleCodeExporter opened 8 years ago
What is the actual format of the messages? Are they Java MessageFormat
messages? If so, the .properties format handler knows how to parse the
placeholders inside {} (though it doesn't handle quoting - see
https://code.google.com/p/pseudolocalization-tool/source/browse/trunk/java/com/g
oogle/i18n/pseudolocalization/format/JavaProperties.java#L41 ). You can force
this format with --type=properties on the command line.
If it isn't actually a Java properties file or if the messages aren't
MessageFormat-syntax, it would be easy to write your own format like
JavaProperties -- just have a static initializer register the format and
reference your custom class in a --ext flag.
If you want to write a new format and submit it, I would be happy to review it
-- just use JavaProperties as an example. Alternatively, if it is a standard
format that isn't too complicated I would be happy to write it.
Finally, if this is integrated into some localization process, you could use
the Message API and mark that text as non-localizable.
Original comment by jat@jaet.org
on 13 Oct 2013 at 5:34
Original issue reported on code.google.com by
ravindra...@gmail.com
on 10 Oct 2013 at 5:37