From 8bbb3f407cccdf0783c49025825a0f0b9ebe3480 Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Thu, 14 Sep 2017 21:06:39 -0300 Subject: About project implemented --- Project/TransformerForm.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'Project/TransformerForm.cpp') 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(); -- cgit