+ wxStaticText* item9 = new wxStaticText(item4, wxID_STATIC, _("&Default file kind to save when using the Go command:"), wxDefaultPosition, wxDefaultSize, 0);
+ item6->Add(item9, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP|wxADJUST_MINSIZE, 5);
+
+ wxString item10Strings[] = {
+ _("Setup file"),
+ _("Configure script")
+ };
+ wxChoice* item10 = new wxChoice(item4, ID_DEFAULT_FILE_KIND, wxDefaultPosition, wxSize(200, wxDefaultCoord), 2, item10Strings, 0);
+ item10->SetStringSelection(_("Setup file"));
+ item10->SetHelpText(_("Select the default kind of file to save using Go"));
+#if wxUSE_TOOLTIPS
+ if (ShowToolTips())
+ item10->SetToolTip(_("Select the default kind of file to save using Go"));
+#endif
+ item6->Add(item10, 0, wxGROW|wxALL, 5);
+