i18n API: translate Blok's interface
Internationalization support for translating UI strings, plus the runtime `i18n.update()` mutator that switches language in place.
Reaching the editor instance
The methods below run on the editor you created with new Blok(). They are available once editor.isReady resolves.
// You already hold the instance returned by the constructor.
const editor = new Blok({ holder: 'editor' });
await editor.isReady;
// Call any API method on it.
editor.caret.setToLastBlock('end');Methods
i18n.t(dictKey, vars?)
stringTranslate a key from the global dictionary, optionally interpolating string or number values.
When to use
Look up a UI string from the active dictionary inside a tool, so your tool localises with the editor.
const text = editor.i18n.t('toolNames.text');
console.log(text); // 'Text' (or translated string)
const limit = editor.i18n.t('tools.image.emptyMaxSize', { size: '10 MB' });
console.log(limit); // 'max 10 MB' (or translated string)i18n.has(dictKey)
booleanCheck if a translation exists for the given key.
When to use
Check a key exists before translating, to fall back gracefully when a tool ships partial dictionaries.
if (editor.i18n.has('toolNames.text')) {
const translation = editor.i18n.t('toolNames.text');
}i18n.getEnglishTranslation(key)
stringGet the English translation for a key (used for multilingual search).
When to use
Returns the English value regardless of locale — used to index content for multilingual search.
const english = editor.i18n.getEnglishTranslation('toolNames.heading');
console.log(english); // 'Heading'i18n.getLocale()
stringGet the active locale code (e.g. 'en').
When to use
Returns the active locale code (e.g. 'en') so a tool can branch on the editor's current language.
const locale = editor.i18n.getLocale();
console.log(locale); // 'en'i18n.getDirection()
'ltr' | 'rtl'Get the text direction currently in effect — derived from the active locale unless an explicit `direction` override was set.
When to use
Returns 'ltr' or 'rtl' for the active locale, so host chrome around the editor can mirror itself alongside it.
if (editor.i18n.getDirection() === 'rtl') {
// mirror your own chrome next to the editor
}i18n.update({ locale?, messages?, direction? })
Promise<void>Switch language at runtime. `config.i18n` is otherwise read once during boot, so a host with a language switcher had to recreate the editor to relabel it — losing caret, focus, selection and undo history. `update()` relabels in place instead: no recreation, nothing lost. `locale` accepts any supported code or `'auto'` to re-run browser detection; `messages` merges host overrides over the locale dictionary and is re-applied automatically after every later locale change (a bare locale flip never silently drops your custom strings); `direction` overrides the direction implied by the locale, which you normally do not need. Calls are serialized internally, so lazily-loaded locale chunks cannot land out of order — the last call wins. Scope: everything. Chrome built on demand (block settings, the convert menu, notifications, screen-reader announcements) picks up the new locale the next time it opens; the eagerly-stamped chrome (toolbar and plus-button labels, tooltips, the toolbox list) is relabelled immediately; and block content — placeholders, media-toolbar labels, cell controls, anything a tool resolved while rendering — is repainted from your data, including tools that know nothing about locale changes. The repaint is invisible to you: `onChange` does not fire, scroll is kept, and the caret returns to the block that had it. Fires the `i18n:changed` event with `{ locale, direction }`. Available synchronously after construction — a call made before `isReady` is applied once the editor has booted. `update()` is exposed on the editor instance only, not on the `api.i18n` handed to tools, so a third-party tool cannot flip the host's locale. The React/Vue/Angular adapters drive it reactively: change the `i18n` prop/input and the editor follows in place. Note `defaultLocale` is not accepted — it only decides the fallback while resolving the initial locale.
When to use
Switches locale and host message overrides at runtime, relabelling the editor in place — a language switcher no longer has to recreate the editor and throw away caret, focus and undo history.
// Host language switcher — no remount, caret and undo survive.
await editor.i18n.update({ locale: 'ru' });
// Locale plus your own overrides on top of it.
await editor.i18n.update({
locale: 'fr',
messages: { 'toolNames.text': 'Paragraphe' },
});
// Follow the browser again.
await editor.i18n.update({ locale: 'auto' });
editor.events.on('i18n:changed', ({ locale, direction }) => {
document.documentElement.dir = direction;
});