Originally asked by Stefan Ernst on 04 November 2021 (original question)
We had originally used
replica.type?.name == “Problem”
in a script to identify issue types. However this leads to a problem when the issue type is translated locally in Jira. Either the sync looks up the german or the english name and we can’t determine which way it is. We have tried both
replica.type?.name == “Bug” and replica.type?.name == “Fehler”
as an example and it would work one time and not work the other time.
What is the best way to make this translation safe? Is Exalate able to just use untranslatedName?