In this section, you will learn how to build voice applications that support multiple languages.
i18n works by separating the content (the text/speech) from the application logic, to make it easier to switch languages.
Jovo uses a package called i18next to support multilanguage voice apps. You can find all relevant information here: i18next Documentation.
The easiest way to configure i18n is to use the built-in functionality that requires a separate folder for all language resources:
To get started, create a folder called i18n
in /app
and add the languageResources
using the locale ID (e.g. en-US.json
, de-DE.json
, en-GB.json
, etc.). The file structure should look like this:
{
"translation": {
"WELCOME": "Welcome",
"WELCOME_WITH_PARAMETER": "Welcome {{firstname}} {{lastname}}",
"WELCOME_ARRAY": [
"Welcome",
"Hey",
"Hello"
]
}
}
You can find out more about how these files are structured here: i18next Essentials.
If you follow these conventions, there is no need to additionally add anything to your app configuration.
If you want to add files from a different path, you can do so in your config.js
file:
For example, it could look like this:
// config.js file
i18n: {
resources: {
'en-US': require('./path/to/files/en-US'),
'de-DE': require('./path/to/files/de-DE'),
}
},
Also possible:
// config.js file
i18n: {
filesDir: './path/to/files/',
},
You can also add additional configurations that are available for i18next. Those can be added like this:
// config.js file
i18n: {
returnNull: false,
fallbackLng: 'en-US',
},
You can find a list of i18next configuration options here.
In your app logic, you can then use this.t('key')
to access the right string. It is also possible to use parameters with this.t('key', {parameter: 'value'})
.
Here is some example code for the languageResources object above:
app.setHandler({
LAUNCH() {
this.tell(this.t('WELCOME'));
},
HelloWorldIntent() {
this.tell(this.t('WELCOME_WITH_PARAMETER', {firstname: 'John', lastname: 'Doe'}));
},
});
You can also use it with the Jovo SpeechBuilder, like so:
app.setHandler({
LAUNCH() {
let speech = this.speechBuilder()
.addT('WELCOME');
this.tell(speech);
},
});
Or with the ready-made speechBuilder object:
app.setHandler({
LAUNCH() {
this.tell(this.$speech.addT('WELCOME'));
},
});
If you're using the SpeechBuilder, you can also use arrays inside your languageResources
for randomized output.
For this, returnObjects
config for i18next needs to be enabled (default since Jovo Framework v1.0.0
).
For example, your languageResources
could look like this:
{
"translation": {
"WELCOME": [
"Welcome",
"Hey",
"Hello"
]
}
}
If you're then using a speechBuilder instance, it will use this array to add variety by returning randomized output:
app.setHandler({
LAUNCH() {
let speech = this.speechBuilder()
.addT('WELCOME');
this.tell(speech);
},
});
So, without changing any of the code in your handlers, you can vary your output by simply adding new elements to your languageResources
.