ja
Calling this function will return the default Japanese locale object to be set on ThirdwebProvider
to localize the thirdweb components.
You can also overrides parts of the default locale object by passing an object with the same structure as the default locale object and only those parts will be overridden.
Example
Use default Japanese Locale
const japanese = ja(); // default English locale object
<ThirdwebProvider locale={japanese}>
<App />
</ThirdwebProvider>;
Override Japanese Locale
const japanese = ja({
connectWallet: {
signIn: "サインイン"
}
})
<ThirdwebProvider locale={japanese}> <App /> </ThirdwebProvider>