fast-pizza-10456
10/09/2023, 11:56 AMproud-plumber-24205
10/09/2023, 3:33 PMID
label by specifying a value for this key https://github.com/ory/elements/blob/main/src/locales/en.json#L61
We also already provide Portuguese out of the box here https://github.com/ory/elements/blob/main/src/locales/pt.json
You can copy this file into your own react project and use it with your own react-intl
provider. Just make sure you are on the latest version of Ory Elements.
Then inside your project, you will need to use the react-intl
provider directly like so
// other imports above
import { pt } from "./locales";
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<BrowserRouter>
{/* We add the Ory themes here */}
<ThemeProvider themeOverrides={{}}>
<IntlProvider
locale="pt"
defaultLocale="en"
messages={pt}
defaultRichTextElements={{
del: (chunks) => <del>{chunks}</del>,
}}
>
// children are here like routes etc
</IntlProvider>
<ThemeProvider>
</BrowserRouter>
</React.StrictMode>
);
proud-plumber-24205
10/09/2023, 3:34 PMfast-pizza-10456
10/10/2023, 5:58 AMproud-plumber-24205
10/10/2023, 6:30 AMnpm i @ory/elements
https://www.npmjs.com/package/@ory/elementsproud-plumber-24205
10/10/2023, 6:31 AM<IntlProvider
locale="pt"
defaultLocale="en"
messages={pt}
defaultRichTextElements={{
del: (chunks) => <del>{chunks}</del>,
}}
>
// children are here like routes etc
</IntlProvider
proud-plumber-24205
10/10/2023, 6:34 AMlocales
directory in your src and an index.ts file inside that folder.
src/locales/index.ts
and export your languages you would like to support from this folder src/locales/pt.json
export {default as pt} from "pt.json"
Like we do here https://github.com/ory/elements/blob/main/src/locales/index.tsfast-pizza-10456
10/10/2023, 4:50 PMfast-pizza-10456
10/10/2023, 5:04 PMproud-plumber-24205
10/11/2023, 6:02 AMfast-pizza-10456
10/11/2023, 6:18 AMproud-plumber-24205
10/11/2023, 6:35 AMfast-pizza-10456
10/11/2023, 6:36 AMproud-plumber-24205
10/11/2023, 6:36 AMreact-spa
folder outside of the ory elements repository?fast-pizza-10456
10/11/2023, 6:37 AMproud-plumber-24205
10/11/2023, 6:38 AM@ory/client
and @ory/elements
proud-plumber-24205
10/11/2023, 6:38 AMfast-pizza-10456
10/11/2023, 6:45 AMproud-plumber-24205
10/11/2023, 6:49 AMfast-pizza-10456
10/11/2023, 6:54 AMproud-plumber-24205
10/11/2023, 7:07 AMfast-pizza-10456
10/11/2023, 7:11 AMproud-plumber-24205
10/11/2023, 2:05 PMproud-plumber-24205
10/11/2023, 2:05 PMproud-plumber-24205
10/11/2023, 2:09 PMproud-plumber-24205
10/12/2023, 9:44 AMfast-pizza-10456
10/13/2023, 6:35 AM