Internationalization
You can create a multi-language Game also pretty easily. To do so you need to do 4 simple things:
Go to the options.js file and change the
engine["MultiLanguage"]
value to true.Change your script.
The default Script looks like this:
Your new Multi Language script will have language labels that look like this:
Add translations to the strings.js file for your Interface.
Finally, add your language options to the select element in the settings page of your HTML.
The value attribute of each option has to match the language labels available. You can write on pretty much every language available for the web, so there's no limitation!
Last updated