# Internationalization

You can create a multi-language Game also pretty easily. To do so you need to do 4 simple things:

1. Go to the options.js file and change the `engine["MultiLanguage"]` value to true.
2. Change your script.

The default Script looks like this:

```javascript
var script = {
    "Start":[
        "Hi, welcome to your first Visual Novel with Monogatari."
    ]
}
```

Your new Multi Language script will have language labels that look like this:

```javascript
var script = {
    "English":{
        "Start":[
            "Hi, welcome to your first Visual Novel with Monogatari."
        ]
    },
    "Español":{
        "Start":[
            "Hola, bienvenido a tu primer Novela Visual con Monogatari."
        ]
    }
}
```

1. Add translations to the strings.js file for your Interface.
2. Finally, add your language options to the select element in the settings page of your HTML.

```markup
<select data-action="set-language">
    <option value="English">English</option>
    <option value="Español">Español</option>
</select>
```

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!


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.monogatari.io/documentation/1.0.0/configuration/internationalization.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
