menuCard->Append(ID_CARD_PREV,_("Select &Previous Card\tPgUp"),_("Selects the previous card in the list"));
menuCard->Append(ID_CARD_NEXT,_("Select &Next Card\tPgDn"),_("Selects the next card in the list"));
menuCard->AppendSeparator();
menuCard->Append(ID_CARD_ADD,_("TOOL_CARD_ADD"),_("&Add Card\tCtrl++"),_("Add a new, blank, card to this set"));
menuCard->Append(ID_CARD_ADD_MULT,_("TOOL_CARD_ADD_M"),_("Add &Multiple Cards..."),_("Add multiple cards to the set"));
// NOTE: space after "Del" prevents wx from making del an accellerator
// otherwise we delete a card when delete is pressed inside the editor
menuCard->Append(ID_CARD_REMOVE,_("TOOL_CARD_DEL"),_("&Remove Select Card\tDel "),_("Delete the selected card from this set"));
menuCard->AppendSeparator();
IconMenu*menuRotate=newIconMenu();
menuRotate->Append(ID_CARD_ROTATE_0,_("TOOL_CARD_ROTATE_0"),_("&Normal"),_("Display the card with the right side up"),wxITEM_CHECK);
menuRotate->Append(ID_CARD_ROTATE_270,_("TOOL_CARD_ROTATE_270"),_("Rotated 90 &Clockwise"),_("Display the card rotated clockwise"),wxITEM_CHECK);
menuRotate->Append(ID_CARD_ROTATE_90,_("TOOL_CARD_ROTATE_90"),_("Rotated 90 C&ounter Clockwise"),_("Display the card rotated counter-clockwise (anti-clockwise for the British)"),wxITEM_CHECK);
menuRotate->Append(ID_CARD_ROTATE_180,_("TOOL_CARD_ROTATE_180"),_("Rotated 180, &Up Side Down"),_("Display the card up side down"),wxITEM_CHECK);
menuCard->Append(wxID_ANY,_("TOOL_CARD_ROTATE"),_("&Orientation"),_("Orientation of the card display"),wxITEM_NORMAL,menuRotate);
menuCard->AppendSeparator();
// This probably belongs in the window menu, but there we can't remove the separator once it is added
menuCard->Append(ID_SELECT_COLUMNS,_("C&ard List Columns..."),_("Select what columns should be shown and in what order."));
mb->Insert(2,menuCard,_("&Cards"));
IconMenu*menuFormat=newIconMenu();
menuFormat->Append(ID_FORMAT_BOLD,_("TOOL_BOLD"),_("Bold\tCtrl+B"),_("Makes the selected text bold"),wxITEM_CHECK);
menuFormat->Append(ID_FORMAT_ITALIC,_("TOOL_ITALIC"),_("Italic\tCtrl+I"),_("Makes the selected text italic"),wxITEM_CHECK);
menuFormat->Append(ID_FORMAT_SYMBOL,_("TOOL_SYMBOL"),_("Symbols\tCtrl+M"),_("Draws the selected text with symbols"),wxITEM_CHECK);
addPanel(menuWindow,tabBar,newCardsPanel(this,wxID_ANY),2,_("F5"),_("Cards"),_("Cards"),_("Edit the cards in the set"));
// addPanel(menuWindow, tabBar, new SetInfoPanel (this, wxID_ANY), 0, _("F6"));
addPanel(menuWindow,tabBar,newStylePanel(this,wxID_ANY),1,_("F7"),_("Style"),_("Style"),_("Chnage the style of cards"));
addPanel(menuWindow,tabBar,newStylePanel(this,wxID_ANY),1,_("F7"),_("Style"),_("Style"),_("Change the style of cards"));
// addPanel(menuWindow, tabBar, new KeywordsPanel(this, wxID_ANY), 2, _("F8"));
// addPanel(menuWindow, tabBar, new StatsPanel (this, wxID_ANY), 3, _("F9"), _("Stats"), _("Statistics"), _("Show statistics about the cards in the set"));
//addPanel(*s, *menuWindow, *tabBar, new DraftPanel (&this, wxID_ANY), 4, _("F10"))