Language & Localization
Configure the language for all UI text, voice prompts, and content.
| Parameter | Type | Default | Description |
| language | string | "en" | Language code for localization |
| voiceActor | string | - | Specific voice actor for audio feedback |
| content_gender | string | - | Gender preference for content/instructors shown |
Supported Languages:
| Code | Language | RTL Support |
| en | English | No |
| es | Spanish | No |
| fr | French | No |
| de | German | No |
| nl | Dutch | No |
| it | Italian | No |
| pt | Portuguese | No |
| ru | Russian | No |
| ar | Arabic | Yes |
| he | Hebrew | Yes |
| hi | Hindi | No |
| bn | Bengali | No |
| id | Indonesian | No |
| da | Danish | No |
| el | Greek | No |
| zh | Chinese (Simplified) | No |
SDK Support: Requires customParams on most platforms.
Language Configuration
1// Via customParams
2kinestex.createView(
3 customParams: [
4 "language": "es",
5 "content_gender": "female"
6 ],
7 // ... other params
8)