Getting Translations of Statuses

Is there a way to get all of the translated names for statuses in Server/Data Center? It can be using the REST API (preferred option) or programmatically. If this isn’t possible then another option is the database table that contains the translations

EDIT: This has to be the user entered translations, not the Jira translations

Not that I’m aware of. You’d have to built your own rest api and access and then get hold of the status object that you want and then call
https://docs.atlassian.com/software/jira/docs/api/7.6.1/com/atlassian/jira/issue/IssueConstant.html#getNameTranslation--

Note of caution here: You will get bitten by the fact that jql does not handle the translated names - see [JRASERVER-39215] JQL can not use translated values for system fields - Create and track feature requests for Atlassian products.

Hi Daniel, thanks for that. Does this get the Jira translation or the translation entered on the statuses page by a user? I was wanting the latter, I may not have made that clear.