Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Radio buttons partly done #367

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions public/locales/cs/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,14 @@
"fhaBasedFailureRate": "Intenzita poruch založená na FHA",
"predictedFailureRate": "Predikovaná intenzita poruch",
"ataSystem": "ATA systém",
"partNumber": "Číslo součásti",
"stock": "Zásoba",
"quantity": "Množství",
"schematicDesignation": "Schématické označení"
"partNumber": "Číslo dílu",
"stock": "Skladem",
"quantity": "Počet",
"schematicDesignation": "Schematické označení",
"requiredFailureRate": "Požadovaná intenzita poruch",
blcham marked this conversation as resolved.
Show resolved Hide resolved
"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,17 +4,39 @@ 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,
marginBottom: 8,
},
numberInput: {
"& .MuiInputBase-input": {
color: "black",
padding: "8px 12px",
},
},
}));

export default useStyles;
Loading