Skip to content

Commit

Permalink
Fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kasmadei committed Jun 10, 2024
1 parent d94ce7c commit 2447cd1
Show file tree
Hide file tree
Showing 5 changed files with 157 additions and 77 deletions.
6 changes: 5 additions & 1 deletion public/locales/cs/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@
"partNumber": "Číslo součásti",
"stock": "Zásoba",
"quantity": "Množství",
"schematicDesignation": "Schématické označení"
"schematicDesignation": "Schématické označení",
"requiredFailureRate": "Požadovaná intenzita poruch",
"calculatedFailureRate": "Vypočtená intenzita poruch",
"operationalFailureRate": "Provozní intenzita poruch",
"manuallyDefinedFailureRate": "Manuálně definovaná intenzita poruch"
},
"appBar": {
"selectSystemPlaceholder": "Vyberte systém"
Expand Down
6 changes: 5 additions & 1 deletion public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@
"partNumber": "Part number",
"stock": "Stock",
"quantity": "Quantity",
"schematicDesignation": "Schematic designation"
"schematicDesignation": "Schematic designation",
"requiredFailureRate": "Required failure rate",
"calculatedFailureRate": "Calculated failure rate",
"operationalFailureRate": "Operational failure rate",
"manuallyDefinedFailureRate": "Manually defined failure rate"
},
"appBar": {
"selectSystemPlaceholder": "Select system"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,28 @@ import { makeStyles } from "tss-react/mui";
const useStyles = makeStyles()((theme: Theme) => ({
label: {
fontWeight: "500",
color: "#00000080",
marginRight: 8,
fontSize: 16,
color: "black",
},
labelRow: {
color: "grey",
display: "flex",
flexDirection: "row",
alignItems: "center",
},
selectableLabel: {
color: "black",
fontSize: 16,
},
black: {
color: "black",
"&.Mui-checked": {
color: "black",
},
},
grey: {
color: "grey",
},
divider: {
marginTop: 8,
Expand Down
Loading

0 comments on commit 2447cd1

Please sign in to comment.