Skip to content

Commit 86a719b

Browse files
committed
fix: Translate labels in popover
fix #1546
1 parent 9836eda commit 86a719b

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

app/configurator/components/add-dataset-dialog.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ export const PreviewDataTable = ({
618618
handleClickSelectAllFromCube(group.cubeIri)
619619
}
620620
>
621-
Select all
621+
<Trans id="controls.filter.select.all">Select all</Trans>
622622
</Button>{" "}
623623
-{" "}
624624
<Button
@@ -628,7 +628,9 @@ export const PreviewDataTable = ({
628628
handleClickUnselectAllFromCube(group.cubeIri)
629629
}
630630
>
631-
Unselect all
631+
<Trans id="controls.filter.select.none">
632+
Select none
633+
</Trans>
632634
</Button>
633635
</Box>
634636
</ListSubheader>,

0 commit comments

Comments
 (0)