Description
Support localization for all hardcoded strings.
Considerations
- We need to identify full list of strings to be translated
- This might be used for use-cases outside of localization
Proposals
Proposal 1
Add a dictionary
const dictionary: PuckDictionary = {
"page-breadcrumb": "Hello, world",
"publish-button": "Publish me"
}
<Puck dictionary={dictionary} />
Description
Support localization for all hardcoded strings.
Considerations
Proposals
Proposal 1
Add a dictionary