KinesteX

Language & Localization

Configure the language for all UI text, voice prompts, and content.


ParameterTypeDefaultDescription
languagestring"en"Language code for localization
voiceActorstring-Specific voice actor for audio feedback
content_genderstring-Gender preference for content/instructors shown

Supported Languages:


CodeLanguageRTL Support
enEnglishNo
esSpanishNo
frFrenchNo
deGermanNo
nlDutchNo
itItalianNo
ptPortugueseNo
ruRussianNo
arArabicYes
heHebrewYes
hiHindiNo
bnBengaliNo
idIndonesianNo
daDanishNo
elGreekNo
zhChinese (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)