Skip to content

Commit

Permalink
Translation
Browse files Browse the repository at this point in the history
  • Loading branch information
nd-novorender committed Dec 12, 2024
1 parent ab386d7 commit ca19975
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion public/locales/de/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -928,5 +928,6 @@
"unsigned": "Nicht signiert",
"signed": "Signiert",
"signedBy": "Signiert von",
"exportBcf": "BCF exportieren"
"exportBcf": "BCF exportieren",
"[notFound]": "[nicht gefunden]"
}
3 changes: 2 additions & 1 deletion public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -928,5 +928,6 @@
"unsigned": "Unsigned",
"signed": "Signed",
"signedBy": "Signed by",
"exportBcf": "Export BCF"
"exportBcf": "Export BCF",
"[notFound]": "[not found]"
}
3 changes: 2 additions & 1 deletion public/locales/fr/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -928,5 +928,6 @@
"unsigned": "Non signé",
"signed": "Signé",
"signedBy": "Signé par",
"exportBcf": "Exporter BCF"
"exportBcf": "Exporter BCF",
"[notFound]": "[non trouvé]"
}
3 changes: 2 additions & 1 deletion public/locales/no/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -928,5 +928,6 @@
"unsigned": "Usignert",
"signed": "Signert",
"signedBy": "Signert av",
"exportBcf": "Eksporter BCF"
"exportBcf": "Eksporter BCF",
"[notFound]": "[ikke funnet]"
}
4 changes: 2 additions & 2 deletions src/features/clash/routes/clashList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ function Row({
title={obj1?.name}
>
<Typography whiteSpace="nowrap" textOverflow="ellipsis" overflow="auto" color="red">
{obj1?.name ?? "[not found]"}
{obj1?.name ?? t("[notFound]")}
</Typography>
</Button>
<Button
Expand All @@ -407,7 +407,7 @@ function Row({
title={obj2?.name}
>
<Typography whiteSpace="nowrap" textOverflow="ellipsis" overflow="auto" color="blue">
{obj2?.name ?? "[not found]"}
{obj2?.name ?? t("[notFound]")}
</Typography>
</Button>
<IconButton size="small" onClick={openMenu}>
Expand Down

0 comments on commit ca19975

Please sign in to comment.