- run
npm ci - run
npx lingui extract - run
npx lingui compile --typescript - run
npm run dev
Messages from src/page.tsx are not translated, unless they writen in a single line.
Don't work:
<Trans>
This should be translated!
</Trans>
<p>
<Trans>
See all <a href="/unread">unread messages</a>
{' or '}
<a onClick={() => markAsRead()}>mark them</a> as read.
</Trans>
</p>Work:
<Trans>This should be translated!</Trans>
<p>
<Trans>See all <a href="/unread">unread messages</a>{' or '}<a onClick={() => markAsRead()}>mark them</a> as read.</Trans>
</p>