GET I18n/Resources?culture={culture}
Translates the specified text.
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| culture | The culture. | string | None. | 
Body Parameters
None.
Response Information
Resource Description
Collection of I18nXmlResourceItem| Name | Description | Type | Additional information | 
|---|---|---|---|
| Key | string | None. | |
| Value | string | None. | |
| Context | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "Key": "sample string 1",
    "Value": "sample string 2",
    "Context": "sample string 3"
  },
  {
    "Key": "sample string 1",
    "Value": "sample string 2",
    "Context": "sample string 3"
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfI18nXmlResourceItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fujifilm.Synapse.Workflow.Engine.Models">
  <I18nXmlResourceItem>
    <Context>sample string 3</Context>
    <Key>sample string 1</Key>
    <Value>sample string 2</Value>
  </I18nXmlResourceItem>
  <I18nXmlResourceItem>
    <Context>sample string 3</Context>
    <Key>sample string 1</Key>
    <Value>sample string 2</Value>
  </I18nXmlResourceItem>
</ArrayOfI18nXmlResourceItem>