summaryrefslogtreecommitdiffstats
path: root/Project/TransformerForm.cpp
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-09-15 11:54:33 -0300
committerGitHub <noreply@github.com>2017-09-15 11:54:33 -0300
commitf51700f75fe679610ebd09c4d7b0c2bacce2fda1 (patch)
treed78b51957aed8d255cd518a35aaccbae6a8aa486 /Project/TransformerForm.cpp
parenta3eae453fcfda32d095cc22b8fb33fea71890d93 (diff)
parentbef0df343303f0647c08663c8dce4cbaa33b93bf (diff)
downloadPSP.git-f51700f75fe679610ebd09c4d7b0c2bacce2fda1.tar.gz
PSP.git-f51700f75fe679610ebd09c4d7b0c2bacce2fda1.tar.xz
PSP.git-f51700f75fe679610ebd09c4d7b0c2bacce2fda1.zip
Merge pull request #36 from Thales1330/wip-eletromechanical-saturation
Wip eletromechanical saturation
Diffstat (limited to 'Project/TransformerForm.cpp')
-rw-r--r--Project/TransformerForm.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/Project/TransformerForm.cpp b/Project/TransformerForm.cpp
index b7ca491..920b0a0 100644
--- a/Project/TransformerForm.cpp
+++ b/Project/TransformerForm.cpp
@@ -6,6 +6,17 @@ TransformerForm::TransformerForm(wxWindow* parent, Transformer* transformer) : T
{
m_choiceResistance->SetString(1, L'\u03A9');
m_choiceReactance->SetString(1, L'\u03A9');
+
+ //Reset connections choice labels (to be translated)
+ m_choiceConnection->SetString(0, _("Grounded Wye - Grounded Wye"));
+ m_choiceConnection->SetString(1, _("Wye - Grounded Wye"));
+ m_choiceConnection->SetString(2, _("Grounded Wye - Wye"));
+ m_choiceConnection->SetString(3, _("Wye - Wye"));
+ m_choiceConnection->SetString(4, _("Delta - Grounded Wye"));
+ m_choiceConnection->SetString(5, _("Delta - Wye"));
+ m_choiceConnection->SetString(6, _("Grounded Wye - Delta"));
+ m_choiceConnection->SetString(7, _("Wye - Delta"));
+ m_choiceConnection->SetString(8, _("Delta - Delta"));
SetSize(GetBestSize());
Layout();