Is there any way to turn off localization when using the REST API with the act_as_user impersonation?
For example, if we call /rest/api/2/issue with the app user, all issue-type names will be in English:
Task, Sub-task, Epic, …
However, if we call /rest/api/2/issue with an impersonated user, the issue-type names will depend on the localization settings of that user:
Opgave, Underopgave, Episk, … (guess the language!)
We need to match names between impersonated and non-impersonated calls. We’d like to avoid making duplicate calls just to match localized names. Is there any way to turn this off or otherwise get the “view” of a user without also getting the localization changed?