i18n
The editor has support for translations and customizing labels.
Set the translations property in the editor.
import { Page, Editor as PageEditor } from "@tyzo/page-editor";
import { de } from "@tyzo/page-editor/i18n/de";
return (
<PageEditor
translations={de}
config={{
...config,
}}
/>
);
Currently the only two languages provided by us are English (default) and German (as above).