How can I receive the status, priorities, ... in the language desired via SOAPI API. I tried it with n German User and an English Users, but I always receive English values (JIRA 4.4).
The documentation does not mention anything about this issue.
Translations for Statuses, Priorities and Resolutions are handled somewhat differently to all other translations in JIRA. The values provided in the language resourcebundles can (and indeed often are) be overridden in the user interface (Administartion -> issues -> Issue Atrributes -> Statuses, or something like that, and then clicking on the transate link). This means that getName on a Priority object (or indeed any Issue Constant) returns the English name. In the underlying JIRA you can get the translated name with getTranslatedName - unfortunately we don't serialize the translated name at all in SOAP/RPC
We do now serialize it in JSON-RPC which means if you use REST you can get at the translated names and descriptions, but unfortunately not with SOAP
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.