"Translate" a locale-independent key string to arbitrary locale?
Hi all,
This has been bugging me to no end:
I can get the key string for the current locale easily by calling:
app.findKeyStrings('[Basic Paragraph]')
//result: $ID/NormalParagraphStyle
But now I need to "translate" that key string into a different locale (let's say French?)
app.translateKeyString('$ID/NormalParagraphStyle') will only return '[Basic Paragraph]'.
Is there any way to do it except creating some giant lookup table that will probably never be up to date?