This article explains how to launch the Learnosity interface in different language modes, and how content for translations is handled.
What parts of Learnosity can be translated?
There are two main tasks to using Learnosity with another language:
1. User interface label bundles
The text in the Learnosity user interface can be shown in another language using label bundles. If a bundle exists for your chosen language, you can simply change the language bundle. Otherwise, you may need to do some translation to create a new language bundle.
2. Content in your Item bank
All content in your Item bank, including Questions, Items and Activities must be manually translated, separately. All translations must be done ahead of time, and should be saved separately from the English versions. Note: there is no "just in time" translation feature in Learnosity.
Disclaimer
These label bundles provided by Learnosity were created to illustrate the capabilities for translation of the Learnosity interface. Note, many of these language bundles are machine-translated, so you will want to verify all of these translations with native speakers before putting them into production. See the GitHub page for information about the provided translations, some of which were translated by volunteers.
Due to our fast pace of innovation, some new features in the product will not be reflected in the translations, yet.
Setting up a translation of Learnosity in a language other than English
By default, the Learnosity interface shows all text in English: United States (en-US) mode. You can get started with another language by trying the label bundles in our internationalization repository, and it's easy to create your own.
Currently, Learnosity has the following proof-of-concept translated label bundles:
- Arabic: (Egyptian) (ar-EG)
- Chinese: (Simplified) (zh-CN)
- Dutch: (Netherlands) (nl-NL)
- English: (United Kingdom) (en-GB)
- English: (United States) - Default (en-US)
- French: (fr-FR)
- German: (de-DE)
- Hindi: (hi-IN)
- Italian: (it-IT)
- Japanese: (ja-JP)
- Korean: (ko-KR)
- Portuguese: (pt-PT)
- Russian: (ru-RU)
- Spanish: (es-ES)
- Swedish: (sv-SE)
- Tagalog: (tl-PH)
- Vietnamese: (vi-VN)
Selecting a language and label bundle
In your application code, when you first initialize the Learnosity API, you can call one or more label bundles, as explained on our documentation page.
Broadly, you will need to take the following steps:
- Go and download the desired language label bundle files from our repository. Store those where your application can reach them.
- Configure your initialization options to load those files and set up the request object to select the language.
Code examples
There are two main approaches for setting up the request object.
Create an object in an associative array
You can create an object in an array (better for cross-language comprehension):
...
const labelBundle = {
actionsave: 'guardar',
actionsubmit: 'enviar'
};
...
Load the bundles in a string
Alternatively, load the bundles in a string, as a JSON object, and then decode it, to turn it into an array:
...
const labelBundle = `
{
"actionsave": "guardar",
"actionsubmit": "enviar"
}
`;
...
...
const request = {
...
labelBundle: JSON.parse(labelBundle),
...
};
...
More details on this page: Internationalizing and Localizing the Assessment Experience.
Translating the content in your Item bank
As mentioned above, content in your Item banks will need to be translated. We suggest using ISO suffixes when naming content in your Item bank. For example, if you have an item called "i18n_item1_en-US", where "en-US" stands for "English spoken in the United States", if you make a copy of this Item and then translate its content into Spanish, you could use the name "i18n_item1_es-ES" (where the "es-ES" suffix at the end of the reference indicates "Spanish spoken in Spain").
Read more about ISO language suffixes.
Adding a new language label bundle to our public repository
Visit our public Github repository to find out how to contribute to the Learnosity language translations. Learnosity is open to additions from the community and industry. For major changes, please open a support ticket first to discuss what you would like to change.
Demo showing Learnosity in different languages
The Learnosity internationalization demo uses the available label bundles, and pre-translated Question and Item content for each language. Note, Learnosity does not have an on-the-fly translation feature. For each language shown in the demo, there are the following elements:
- A pre-translated label bundle for the user interface text,
- Three pre-translated Items in the Item bank, and
- A pre-translated Activity in the Item bank.
All of these elements are shown together for a complete translation.
Try the internationalization demo for yourself.
Related Links
- Internationalizing and Localizing the Assessment Experience
- Configuring Items API to Initialize in RTL Right to Left Mode (Arabic and Hebrew Language Support)
- Understanding Question Editor Attribute Paths for Templating and i18n
- Customizing the Tile View With Author API