skip to Main Content

You can translate text for the Achievement label and description into a specific language. If you need to add additional languages, go to Settings → Languages. You can read more about how to add an additional language to the additional languages list in Achievement translations here.

Please note that if no Languages are added, this step is skipped and not shown in Achievement creation Step 7.

TRANSLATIONS fields

EXAMPLES

» Languages Object

Optional

Select languages for translation of your Achievement Name and Description.

 

» Name String

Optional

The translated name of the Achievement that the player sees when they receive the Achievement.

 

» Description String

Optional

The translated Achievement description visible to players.

 

APP Example:

LanguagesEnglish
NameWelcome back
DescriptionDaily login

API Example:

{
    "jsonClass": "Achievement",
    ...
    "translations": {
        "en-GB": [
            {
                "jsonClass": "Translation",
                "fieldName": "name",
                "text": "Welcome back"
            },
            {
                "jsonClass": "Translation",
                "fieldName": "description",
                "text": "Daily login"
            }
        ]
    },
    "translatableFields": [
        "name",
        "description"
    ]
    ...
}

The API example provides only a simplified version of the POST body. A full example of POST Achievement can be found in the Achievements APP API documentation here.

PREVIOUS – Click Previous and go back to the previous step.

CONTINUE – Click Next and continue to the next step.

Back To Top