We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Looking for documentation of next-intl messages we can create nested message strucute and call this slicing with dots like this
{ "About": { "title": "About us" } }
And use in components like:
import {useTranslations} from 'next-intl'; export default function About() { const t = useTranslations('About'); return <h1>{t('title')}</h1>; }
If I have a sherlock plugin with a inlang project configured, sherlock does not recognize the structure of the messages and returns an error like
The text was updated successfully, but these errors were encountered:
Sherlock does not seem to recognize the namespace About in useTranslations('About'). Which inlang plugins are you using? They can be found in the modules property in the settings.json file.
About
useTranslations('About')
modules
Sorry, something went wrong.
No branches or pull requests
Looking for documentation of next-intl messages we can create nested message strucute and call this slicing with dots like this
And use in components like:
If I have a sherlock plugin with a inlang project configured, sherlock does not recognize the structure of the messages and returns an error like
The text was updated successfully, but these errors were encountered: