Internationalization 
Internationalization in the Topol Plugin is simple and highly customizable. Here's how you can set a specific language when embedding the Topol editor into your application.
Define the Language 
When initializing the Topol Plugin, add the language code in the TOPOL_OPTIONS configuration object.
ts
const TOPOL_OPTIONS = {
  id: "#app",
  authorize: {
    apiKey: "YOUR_API_KEY",
    userId: "YOUR_USER_ID",
  },
  language: "fr", // Example: French
};Languages use ISO 639-1 standard.
List of All Currently Supported Languages: 
| Country | Language | Code | 
|---|---|---|
| English | en | |
| French | fr | |
| Portuguese | pt | |
| Spanish | es | |
| Japanese | ja | |
| Chinese | zh | |
| Russian | ru | |
| Turkish | tr | |
| German | de | |
| Swedish | sv | |
| Dutch | nl | |
| Italian | it | |
| Finnish | fi | |
| Romanian | ro | |
| Czech | cs | |
| Polish | pl | |
| Korean | ko | |
| Vietnamese | vi | |
| Hebrew | he | |
| Arabic | ar | 
Feel free to contact us if you need to add another language or find an incorrect translation.
Flags made by Freepik from www.flaticon.com