Skip to content

Commit 08251bb

Browse files
authored
Add 400kv to CEI909 (#2454)
Signed-off-by: Etienne Homer <[email protected]>
1 parent 2af56ae commit 08251bb

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

src/components/dialogs/parameters/shortcircuit/short-circuit-voltage-table.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const VoltageTable: FunctionComponent<VoltageTableProps> = ({ voltageProfileMode
1717
() => [
1818
{
1919
name: intl.formatMessage({ id: 'shortCircuitNominalVoltage' }),
20-
values: [380, 225, 150, 90, 63, 45, 20],
20+
values: ['380 ' + intl.formatMessage({ id: 'Or' }) + ' 400', 225, 150, 90, 63, 45, 20],
2121
},
2222
{
2323
name: intl.formatMessage({ id: 'shortCircuitInitialVoltage' }),
@@ -36,7 +36,15 @@ const VoltageTable: FunctionComponent<VoltageTableProps> = ({ voltageProfileMode
3636
<TableRow key={row.name}>
3737
<TableCell>{row.name}</TableCell>
3838
{row.values.map((value) => (
39-
<TableCell key={value}>{value}</TableCell>
39+
<TableCell
40+
sx={{
41+
width: '10%',
42+
textAlign: 'center',
43+
}}
44+
key={value}
45+
>
46+
{value}
47+
</TableCell>
4048
))}
4149
</TableRow>
4250
))}

src/translations/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1433,5 +1433,6 @@
14331433
"qualityCriterionResults": "Quality criterion",
14341434
"qualityPerRegionResults": "Quality region",
14351435
"StateEstimationStatus": "Status : ",
1436-
"StateEstimationQuality": "Quality : "
1436+
"StateEstimationQuality": "Quality : ",
1437+
"Or": "or"
14371438
}

src/translations/fr.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1432,5 +1432,6 @@
14321432
"qualityCriterionResults": "Critères qualité",
14331433
"qualityPerRegionResults": "Qualité par région",
14341434
"StateEstimationStatus": "Statut : ",
1435-
"StateEstimationQuality": "Qualité: "
1435+
"StateEstimationQuality": "Qualité: ",
1436+
"Or": "ou"
14361437
}

0 commit comments

Comments
 (0)