Difference between revisions of "REST API:translationWorkbench Resource"

From AgileApps Support Wiki
imported>Aeric
imported>Aeric
Line 14: Line 14:
where:
where:
::* '''{type}''' - Is the internal name for one of the [[Translation Workbench]] types:  
::* '''{type}''' - Is the internal name for one of the [[Translation Workbench]] types:  
::: customlabel, ... {{TBD|}}
::::{| cellpadding="5" cellspacing="1"
action<br>
application<br>
customlabel<br>
enumeratedfield
|
field<br>
form<br>
globalpicklist<br>
homepage
|
object<br>
reportfolder<br>
report<br>
sidebar
|
validation<br>
view<br>
webtab<br>
workflow
|}
 
::* '''{category}.{token_id}''' - Is the identifier for a translated string stored in that category.
::* '''{category}.{token_id}''' - Is the identifier for a translated string stored in that category.


{
{{Query Parameters|
{{Query Parameters|
::*<tt>args</tt> - A list of one or more arguments that will be interpolated into the string at the locations assigned to them when the base string was created.}}
::*<tt>args</tt> - A list of one or more arguments that will be interpolated into the string at the locations assigned to them when the base string was created.}}

Revision as of 00:25, 16 June 2011

Get translated strings using the REST API.

Learn more: REST API Conventions and Considerations.

Requirements

Get a Translation

Method
GET
URI
https://{domain}/networking/rest/translationWorkBench/{type}/{category}.{token_id}
https://{domain}/networking/rest/translationWorkBench/{type}/{category}.{token_id}?args=param1,...

where:

action
application
customlabel
enumeratedfield

field
form
globalpicklist
homepage

object
reportfolder
report
sidebar

validation
view
webtab
workflow

  • {category}.{token_id} - Is the identifier for a translated string stored in that category.
Query Parameters
  • args - A list of one or more arguments that will be interpolated into the string at the locations assigned to them when the base string was created.
For more information, see: Specifying Query Parameters in REST APIs
Response
This sample response comes in reply to the request, http://localhost/networking/rest/translationWorkBench/customlabel/validation.record_deleted?args=5, when the user's language is Spanish.
<platform>
    <translationWorkBench>
        <key>validation.record_deleted</key>
        <translatedText>5 registros eliminados con éxito</translatedText>
    </translationWorkBench>

    <message>
        <code>0</code>
        <description>Success</description>
    </message>
</platform>
See also: REST API:Error Codes

Fields

Name Type Description
key String The ID of the translated element, in the form {category}.{token_id}. For example: validation.record_deleted
translatedText String The translation for the key, in the current user's language, with any arguments in the request interpolated into the string.