summaryrefslogtreecommitdiffstats
path: root/Project/TransformerForm.cpp
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-09-14 21:06:39 -0300
committerThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-09-14 21:06:39 -0300
commit8bbb3f407cccdf0783c49025825a0f0b9ebe3480 (patch)
tree61649f4712ea3ddb360d37400bec3307a77f121e /Project/TransformerForm.cpp
parent16e4477e587ffbaccc67cdb2d44c6b61ac87a315 (diff)
downloadPSP.git-8bbb3f407cccdf0783c49025825a0f0b9ebe3480.tar.gz
PSP.git-8bbb3f407cccdf0783c49025825a0f0b9ebe3480.tar.xz
PSP.git-8bbb3f407cccdf0783c49025825a0f0b9ebe3480.zip
About project implemented
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();