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

fix(st-storage): correction of incorrect wording between "withdrawal" and "injection" #1977

Merged
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: 6 additions & 6 deletions webapp/public/locales/en/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -411,14 +411,14 @@
"study.modelization.storages.capacities": "Injection / withdrawal capacities",
"study.modelization.storages.ruleCurves": "Rule Curves",
"study.modelization.storages.inflows": "Inflows",
"study.modelization.storages.chargeCapacity": "Withdrawal capacity",
"study.modelization.storages.dischargeCapacity": "Injection capacity",
"study.modelization.storages.injectionCapacity": "Injection capacity",
"study.modelization.storages.withdrawalCapacity": "Withdrawal capacity",
"study.modelization.storages.lowerRuleCurve": "Lower rule curve",
"study.modelization.storages.upperRuleCurve": "Upper rule curve",
"study.modelization.storages.injectionNominalCapacity": "Withdrawal (MW)",
"study.modelization.storages.injectionNominalCapacity.info": "Withdrawal capacity from the network (MW)",
"study.modelization.storages.withdrawalNominalCapacity": "Injection (MW)",
"study.modelization.storages.withdrawalNominalCapacity.info": "Injection capacity from stock to the network (MW)",
"study.modelization.storages.injectionNominalCapacity": "Injection (MW)",
"study.modelization.storages.injectionNominalCapacity.info": "Injection capacity from stock to the network (MW)",
"study.modelization.storages.withdrawalNominalCapacity": "Withdrawal (MW)",
"study.modelization.storages.withdrawalNominalCapacity.info": "Withdrawal capacity from the network (MW)",
"study.modelization.storages.reservoirCapacity": "Stock (MWh)",
"study.modelization.storages.reservoirCapacity.info": "Stock (MWh)",
"study.modelization.storages.efficiency": "Efficiency (%)",
Expand Down
14 changes: 7 additions & 7 deletions webapp/public/locales/fr/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -408,17 +408,17 @@
"study.modelization.hydro.allocation.viewMatrix": "Voir les allocations",
"study.modelization.hydro.allocation.error.field.delete": "Erreur lors de la suppression de l'allocation",
"study.modelization.storages": "Stockages",
"study.modelization.storages.capacities": "Capacités d'injection / soutirage",
"study.modelization.storages.capacities": "Capacités dinjection / soutirage",
"study.modelization.storages.ruleCurves": "Courbe guides",
"study.modelization.storages.inflows": "Apports",
"study.modelization.storages.chargeCapacity": "Capacité de soutirage",
"study.modelization.storages.dischargeCapacity": "Capacité d'injection",
"study.modelization.storages.injectionCapacity": "Capacité d’injection",
"study.modelization.storages.withdrawalCapacity": "Capacité de soutirage",
"study.modelization.storages.lowerRuleCurve": "Courbe guide inférieure",
"study.modelization.storages.upperRuleCurve": "Courbe guide supérieure",
"study.modelization.storages.injectionNominalCapacity": "Soutirage (MW)",
"study.modelization.storages.injectionNominalCapacity.info": "Capacité de soutirage du stock depuis le réseau (MW)",
"study.modelization.storages.withdrawalNominalCapacity": "Injection (MW)",
"study.modelization.storages.withdrawalNominalCapacity.info": "Capacité d'injection du stock vers le réseau (MW)",
"study.modelization.storages.injectionNominalCapacity": "Injection (MW)",
"study.modelization.storages.injectionNominalCapacity.info": "Capacité d’injection dans le stock depuis le réseau (MW)",
"study.modelization.storages.withdrawalNominalCapacity": "Soutirage (MW)",
"study.modelization.storages.withdrawalNominalCapacity.info": "Capacité de soutirage du stock vers le réseau (MW)",
"study.modelization.storages.reservoirCapacity": "Stock (MWh)",
"study.modelization.storages.reservoirCapacity.info": "Stock (MWh)",
"study.modelization.storages.efficiency": "Efficacité (%)",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ function Matrix({ study, areaId, storageId }: Props) {
study={study}
url={`input/st-storage/series/${areaId}/${storageId}/pmax_injection`}
computStats={MatrixStats.NOCOL}
title={t("study.modelization.storages.chargeCapacity")}
title={t("study.modelization.storages.injectionCapacity")}
/>
}
right={
<MatrixInput
study={study}
url={`input/st-storage/series/${areaId}/${storageId}/pmax_withdrawal`}
computStats={MatrixStats.NOCOL}
title={t("study.modelization.storages.dischargeCapacity")}
title={t("study.modelization.storages.withdrawalCapacity")}
/>
}
sx={{
Expand Down
Loading