mirror of
https://github.com/lukevella/rallly.git
synced 2025-08-03 00:19:03 +02:00
💬 Add missing i18n keys (#762)
This commit is contained in:
parent
1898f44c9f
commit
06f8b98aae
2 changed files with 8 additions and 3 deletions
|
@ -201,5 +201,7 @@
|
|||
"plan_finalizePolls": "Finalize polls",
|
||||
"plan_extendedPollLife": "Keep polls indefinitely",
|
||||
"plan_prioritySupport": "Priority support",
|
||||
"becomeATranslator": "Help translate"
|
||||
"becomeATranslator": "Help translate",
|
||||
"noPolls": "No polls",
|
||||
"noPollsDescription": "Get started by creating a new poll."
|
||||
}
|
||||
|
|
|
@ -35,10 +35,13 @@ const EmptyState = () => {
|
|||
<InboxIcon className="inline-block h-10 w-10 text-gray-500" />
|
||||
</div>
|
||||
<h3>
|
||||
<Trans defaults="No polls" />
|
||||
<Trans i18nKey="noPolls" defaults="No polls" />
|
||||
</h3>
|
||||
<p>
|
||||
<Trans defaults="Get started by creating a new poll." />
|
||||
<Trans
|
||||
i18nKey="noPollsDescription"
|
||||
defaults="Get started by creating a new poll."
|
||||
/>
|
||||
</p>
|
||||
<div className="mt-6">
|
||||
<Button variant="primary" asChild={true}>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue