skip to Main Content

You can translate text for a Competition and Contest Label, Description and Terms and Conditions into a specific language. Go to Settings → Languages to add and store a new language.  You can read more about how to add additional Languages here.

When no Languages are added, Step 6 in Simple competition creation is skipped.

TRANSLATIONS fields

EXAMPLES

» Languages Object

Optional

Select languages needed for translating your Competition and Contest Name, Description and Terms and Conditions.
» Label String

Optional

The translated Name of the Competition and Contest that players see.
» Description String

Optional

The translated Competition and Contest Description visible to players.

 

» Terms Conditions String

Optional

The translated Competition and Contest Terms and Conditions that players see in the leaderboard.

APP Example:

LanguagesEnglish
NameEnd of the year Competition
DescriptionA competition to commemorate the end of the year!
Terms ConditionsLog in and play!

API Example:

{
     "jsonClass": "Contest",
     ...
     "translations": {
          "en": [
               {
                    "jsonClass": "Translation",
                    "fieldName": "label",
                    "text": "End of the year Competition"
               },
               {
                    "jsonClass": "Translation",
                    "fieldName": "description",
                    "text": "A competition to commemorate the end of the year!"
               },
               {
                     "jsonClass": "Translation",
                    "fieldName": "termsConditions",
                    "text": "Log in and play!"
               }
               ]
          },
          "translatableFields": [
               "label",
               "description",
               "termsConditions"
          ],   
...

}

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

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

CONTINUE – Click Next and continue to the next step.

Back To Top