Step 6: Simple Competition translations
You can specify localised text for the Contest and Competitions label, description and terms and conditions to be translated into a specific language. If you need to add additional languages, go to Settings → Languages and add a new language to be stored. You can read more about how to add an additional Language to the list of accessible languages in the Contest translation here.
TRANSLATIONS
EXAMPLES
Languages | Optional Object | Select languages needed for your Contest Name, Description and Terms and Conditions to be translated to. |
Label | Optional String | The translated name of the Contest that the player sees when he or she participates in the Contest. |
Description | Optional String | The translated Contests description visible to players on the participated Contest. |
Terms Conditions | Optional String | The translated Terms and conditions about the Contest for the player to see in the leaderboard. |
APP Example:
Languages | English |
Name | End of the year Competition |
Description | A competition to commemorate the end of the year! |
Terms Conditions | Log in and play! |
API Example:
{ "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" ], ... } |
Click Next and continue to the next step.