Skip to content

Commit

Permalink
chore(i18n): fix translation
Browse files Browse the repository at this point in the history
  • Loading branch information
ribeirojose committed Mar 4, 2024
1 parent 88b0288 commit 9d79a5d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Cmdk.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export function CommandMenu({
<CommandInput placeholder={t("Type a command or search")} />
<CommandList>
<CommandEmpty>
<Trans>No results found.</Trans>
<Trans>No results found</Trans>.
</CommandEmpty>
<CommandGroup heading="Links">
{commands.mainNav
Expand Down
2 changes: 1 addition & 1 deletion src/components/DataTable/DataTableFacetedFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export function DataTableFacetedFilter({ column, title, options }) {
<CommandInput placeholder={title} />
<CommandList>
<CommandEmpty>
<Trans>No results found.</Trans>
<Trans>No results found</Trans>.
</CommandEmpty>
<CommandGroup>
{options.map((option) => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/DataTable/SWRDataTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ export function SWRDataTable({
colSpan={columns.length}
className="h-24 text-center"
>
<Trans>No results found.</Trans>
<Trans>No results found</Trans>.
</TableCell>
</TableRow>
)}
Expand Down

0 comments on commit 9d79a5d

Please sign in to comment.