Skip to content

Commit

Permalink
Small translation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquinvanschoren committed Jan 31, 2024
1 parent be8eb7c commit 282ac7f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions app/public/locales/en/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -764,9 +764,11 @@ tips:
tableheader:
feature: "Feature name"
distribution: "Distribution"
missing: "Missing"
missing: "Missing values"
type: "Type"
distinct: "Distinct"
distinct: "Distinct values"
tabletitle:
features: "Features"
qualities: "Qualities (meta-features)"
qualities: "Qualities (meta-features)"


2 changes: 1 addition & 1 deletion app/src/components/data/FeatureTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const FeatureTable = ({ data }) => {
<Card>
<CardContent>
<Typography variant="h4" mb={6}>
{data.length + t("tabletitle.features")}
{data.length + " " + t("tabletitle.features")}
</Typography>
<Box sx={{ width: "100%" }}>
<DataGrid
Expand Down

0 comments on commit 282ac7f

Please sign in to comment.