#include "wx/xrc/xh_choic.h"
#include "wx/choice.h"
+#include "wx/intl.h"
wxChoiceXmlHandler::wxChoiceXmlHandler()
: wxXmlResourceHandler() , m_insideBox(FALSE)
// handle <item>Label</item>
// add to the list
- strList.Add(GetNodeContent(m_node));
+ strList.Add(wxGetTranslation(GetNodeContent(m_node)));
return NULL;
}