Multiple Languages
All TalkJS UIs can be localized so that everything is displayed in the user's own language.
There are two ways to set the language in TalkJS. The default UI language is American English (en-US
). If the majority of your users use a language other than English, you can change the default language in the Dashboard.
If you need to support multiple languages at once, you can set the locale
field per user. The locale
field expects an IETF language tag.
If your app is right-to-left and you use the dir
attribute in your <html>
tag (eg <html dir="rtl">
), then TalkJS is automatically shown in right-to-left mode. Otherwise, set the dir
option in ChatboxOptions and InboxOptions to "rtl"
and everything will work as expected.
Additionally, TalkJS automatically defaults to a right-to-left layout when a right-to-left language is selected.
If your language is commonly entered using an on-screen keyboard for character selection, you might find that TalkJS's behavior to automatically send messages on "enter" conflicts with character selection. A pragmatic workaround for this is to set enterSendsMessage to false
in createInbox's messageField
option.
const me = new Talk.User({id: '123456',name: 'Alice',photoUrl: 'https://talkjs.com/images/avatar-1.jpg',welcomeMessage: 'Hey there! How are you? :-)',locale: 'nl-NL', // <-- that's the one!});
var me = new Talk.User({id: '123456',name: 'Alice',photoUrl: 'https://talkjs.com/images/avatar-1.jpg',welcomeMessage: 'Hey there! How are you? :-)',locale: 'nl-NL', // <-- that's the one!});
PUT https://api.talkjs.com/v1/YOUR_APP_ID/users/12345{"name": "Alice","photoUrl": "https://talkjs.com/images/avatar-1.jpg","welcomeMessage": "Hey there! How are you? :-)","locale": "nl-NL"}
- Albanian (
sq-AL
) - Arabic (
ar
) (with right-to-left UI layout) - Bosnian (
bs-BA
) - Bulgarian (
bg-BG
) - Chinese (Simplified) (
zh-CN
) - Chinese (Traditional) (
zh-TW
) - Croatian (
hr-HR
) - Czech (
cs-CZ
) - Danish (
da-DK
) - Dutch (
nl-NL
) - English (U.S.) (
en-US
) - Estonian (
et-EE
) - Finnish (
fi-FI
) - French (
fr-FR
) - Georgian (
ka-GE
) - German (
de-DE
) - Greek (
el-GR
) - Hebrew (
he-IL
) (with right-to-left UI layout) - Hindi (
hi-IN
) - Hungarian (
hu-HU
) - Indonesian (
id-ID
) - Italian (
it-IT
) - Japanese (
ja-JP
) - Korean (
ko-KR
) - Norwegian (Bokmål) (
nb-NO
) - Persian (Farsi) (
fa
) - Polish (
pl-PL
) - Portuguese (Brazilian) (
pt-BR
) - Romanian (
ro-RO
) - Russian (
ru-RU
) - Serbian (
sr-SP
) - Spanish (
es-ES
) - Swedish (
sv-SE
) - Turkish (
tr-TR
) - Ukrainian (
uk-UA
) - Vietnamese (
vi-VN
)
If you don't see a language you need on the list, tell us and we'll quickly add it.