chore: extract translations

This commit is contained in:
David Nguyen
2024-11-12 12:37:34 +07:00
parent 786566bae4
commit 552825b79e
11 changed files with 70 additions and 54 deletions

View File

@ -205,10 +205,14 @@ export const TeamDocumentPreferencesForm = ({
</div>
<Alert variant="neutral" className="mt-1 px-2.5 py-1.5 text-sm">
{includeSenderDetails
? _(msg`'${placeholderEmail}' on behalf of '${team.name}' has invited you to sign 'example
document'.`)
: _(msg`'${team.name}' has invited you to sign 'example document'.`)}
{includeSenderDetails ? (
<Trans>
"{placeholderEmail}" on behalf of "{team.name}" has invited you to sign
"example document".
</Trans>
) : (
<Trans>"{team.name}" has invited you to sign "example document".</Trans>
)}
</Alert>
</div>