An app for creating forms that can be embedded into pages created with Webiny Page Builder.
Use together with @webiny/api-i18n package.
npm install --save @webiny/app-i18n
Or if you prefer yarn:
yarn add @webiny/app-i18n
To setup, you must register a set of plugins. For more information on plugins, please visit Webiny documentation.
import { plugins } from "@webiny/plugins";
import i18nPlugins from "@webiny/app-i18n/admin/plugins";
plugins.register(i18nPlugins);
Note: the i18nCmsPlugins
contains plugins for the Page Builder, which will
enable you to embed i18n in your pages.
import { plugins } from "@webiny/plugins";
import i18nPlugins from "@webiny/app-i18n/site/plugins";
plugins.register(i18nPlugins);