Translations
Translations are the process of converting the meaning of a written message (text) from one language to another. The goal is to convey the same message, feeling, and tone in the target language as the original source language.
The Translation Object
Key-Value Object. Where Key is Translation ID and Value is Translated Content
Dictionary of keystring and value string . THE TRANSLATION OBJECT
{
  "login.form.email": "Email",
  "login.form.password": "Password",
  "login.form.login": "Login",
  "login.form.cancel": "Cancel"
}
 GET /api/v1/spaces/{spaceId}/translations/{locale}
Retrieve all Translations by Locale
The endpoint allows you to retrieve all translations by locale. In case Locale is not present in the Localess, it will return the default locale translations. In case cache version is not present, it will redirect to the latest version.
Parameters
- Name
- spaceId
- Type
- Required string in path
- Description
- Unique identifier for the Space object. 
 
- Name
- locale
- Type
- Required string in path
- Description
- Locale unique identifier (ISO 639-1). 
 
- Name
- cv
- Type
- Optional string in query
- Description
- Cache version. 
 
Returns
- Description
- Return the Translations Object if the request succeeded. 
 
Response
{
  "login.form.email": "Email",
  "login.form.password": "Password",
  "login.form.login": "Login",
  "login.form.cancel": "Cancel"
}