Skip to content

Commit

Permalink
fix: 🐛 fix some text wihout localization
Browse files Browse the repository at this point in the history
  • Loading branch information
dfrnoch committed Aug 21, 2024
1 parent 5a72bb8 commit c929e97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/i18n/dict/cs.json
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@
},
"other": {
"save": "Uložit",
"edit": "Upravit",
"delete": "Smazat"
}
}
1 change: 1 addition & 0 deletions src/i18n/dict/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@
},
"other": {
"save": "Save",
"edit": "Upravit",
"delete": "Delete"
}
}
2 changes: 1 addition & 1 deletion src/screens/Dashboard/pages/Other/Clients/ClientDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const ClientDetail: Component = () => {
title={[t("sidebar.section.sales"), t("sidebar.button.clients"), params.id]}
actionElements={[
<HeaderButton onClick={() => navigate(`/dashboard/other/clients/${params.id}`)} buttonType="primary">
Edit
{t("other.edit")}
</HeaderButton>,
]}
/>
Expand Down

0 comments on commit c929e97

Please sign in to comment.