Loading cvpcb/cvframe.cpp +16 −5 Original line number Diff line number Diff line Loading @@ -421,14 +421,25 @@ void WinEDA_CvpcbFrame::AddFontSelectionMenu( wxMenu* main_menu ) { wxMenu* fontmenu = new wxMenu(); ADD_MENUITEM( fontmenu, ID_PREFERENCES_FONT_DIALOG, _( "font for dialog boxes" ), ADD_MENUITEM( fontmenu, ID_PREFERENCES_FONT_DIALOG, _( "Dialog boxes" ), fonts_xpm ); ADD_MENUITEM( fontmenu, ID_PREFERENCES_FONT_INFOSCREEN, _( "font for Lists" ), ADD_MENUITEM( fontmenu, ID_PREFERENCES_FONT_INFOSCREEN, _( "Lists" ), fonts_xpm ); ADD_MENUITEM( fontmenu, ID_PREFERENCES_FONT_STATUS, _( "font for Status Line" ), ADD_MENUITEM( fontmenu, ID_PREFERENCES_FONT_STATUS, _( "Status box" ), fonts_xpm ); ADD_MENUITEM_WITH_HELP_AND_SUBMENU( main_menu, fontmenu, ID_PREFERENCES_FONT, _( "&Font" ), ADD_MENUITEM_WITH_HELP_AND_SUBMENU( main_menu, fontmenu, ID_PREFERENCES_FONT, _( "&Font" ), _( "Choose font type and size for dialogs, infos and status box" ), fonts_xpm ); Loading cvpcb/tool_cvpcb.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -156,8 +156,8 @@ wxMenuBar * menuBar = GetMenuBar(); _("Open the cvpcb manual")); item->SetBitmap(help_xpm); helpMenu->Append(item); item = new wxMenuItem(helpMenu , ID_CVPCB_DISPLAY_LICENCE, _("&About"), _("About this application")); item = new wxMenuItem(helpMenu , ID_CVPCB_DISPLAY_LICENCE, _("&About cvpcb"), _("About cvpcb schematic to pcb converter")); item->SetBitmap(info_xpm); helpMenu->Append(item); Loading eeschema/dialog_edit_component_in_lib.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -144,7 +144,7 @@ void WinEDA_PartPropertiesFrame::CreateControls() m_PanelBasicBoxSizer->Add(itemBoxSizer7, 0, wxALIGN_LEFT|wxALL, 5); wxBoxSizer* itemBoxSizer8 = new wxBoxSizer(wxVERTICAL); itemBoxSizer7->Add(itemBoxSizer8, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); wxStaticText* itemStaticText9 = new wxStaticText( m_PanelBasic, wxID_STATIC, _("Number of Units:"), wxDefaultPosition, wxDefaultSize, 0 ); wxStaticText* itemStaticText9 = new wxStaticText( m_PanelBasic, wxID_STATIC, _("Number of units:"), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer8->Add(itemStaticText9, 0, wxGROW|wxLEFT|wxRIGHT|wxTOP|wxADJUST_MINSIZE, 5); SelNumberOfUnits = new wxSpinCtrl( m_PanelBasic, ID_SPINCTRL1, _T("1"), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 1, 16, 1 ); Loading eeschema/edit_component_in_schematic.cpp +3 −3 Original line number Diff line number Diff line Loading @@ -756,7 +756,7 @@ void WinEDA_SchematicFrame::EditComponentReference( SCH_COMPONENT* Cmp, wxDC* DC flag = 1; wxString ref = Cmp->GetRef(GetSheet()); Get_Message( _( "Reference" ), _("Component Reference"), ref, this ); Get_Message( _( "Reference" ), _("Component reference"), ref, this ); if( !ref.IsEmpty() ) // New text entered { Loading Loading @@ -794,7 +794,7 @@ void WinEDA_SchematicFrame::EditComponentValue( SCH_COMPONENT* Cmp, wxDC* DC ) SCH_CMP_FIELD* TextField = Cmp->GetField( VALUE ); message = TextField->m_Text; if( Get_Message( _( "Value" ), _("Component Value"), message, this ) ) if( Get_Message( _( "Value" ), _("Component value"), message, this ) ) message.Empty(); //allow the user to remove the value. if( !message.IsEmpty() && !message.IsEmpty()) Loading Loading @@ -834,7 +834,7 @@ void WinEDA_SchematicFrame::EditComponentFootprint( SCH_COMPONENT* Cmp, wxDC* DC if(message.IsEmpty() ) wasEmpty = true; if( Get_Message( _( "Footprint" ), _("Component Footprint"), message, this ) ) if( Get_Message( _( "Footprint" ), _("Component footprint"), message, this ) ) message.Empty(); // allow the user to remove the value. // save old cmp in undo list if not already in edit, or moving ... Loading eeschema/menubar.cpp +7 −7 Original line number Diff line number Diff line Loading @@ -335,8 +335,8 @@ void WinEDA_SchematicFrame::ReCreateMenuBar() item = new wxMenuItem( placeMenu, ID_LINE_COMMENT_BUTT, _( "Graphic line or poligon" ), _( "Place the graphic line or poligon" ), _( "Graphic line or polygon" ), _( "Place graphic lines or polygons" ), wxITEM_NORMAL ); item->SetBitmap( add_dashed_line_xpm ); Loading @@ -346,7 +346,7 @@ void WinEDA_SchematicFrame::ReCreateMenuBar() placeMenu, ID_TEXT_COMMENT_BUTT, _( "Graphic text (comment)" ), _( "Place the graphic text (comment)" ), _( "Place graphic text (comment)" ), wxITEM_NORMAL ); item->SetBitmap( add_text_xpm ); Loading @@ -356,7 +356,7 @@ void WinEDA_SchematicFrame::ReCreateMenuBar() wxMenu* configmenu = new wxMenu; item = new wxMenuItem( configmenu, ID_CONFIG_REQ, _( "&Library" ), _( "Setting Libraries, Directories and others..." ) ); _( "Library preferences" ) ); item->SetBitmap( library_xpm ); configmenu->Append( item ); Loading @@ -366,10 +366,10 @@ void WinEDA_SchematicFrame::ReCreateMenuBar() item->SetBitmap( palette_xpm ); configmenu->Append( item ); // ADD_MENUITEM(configmenu, ID_OPTIONS_SETUP, _("&Options"), preference_xpm); // Options item = new wxMenuItem( configmenu, ID_OPTIONS_SETUP, _( "&Options" ), _( "Select general options..." ) ); _( "General options..." ) ); item->SetBitmap( preference_xpm ); configmenu->Append( item ); Loading Loading @@ -399,7 +399,7 @@ void WinEDA_SchematicFrame::ReCreateMenuBar() helpMenu->Append( item ); item = new wxMenuItem( helpMenu, ID_KICAD_ABOUT, _( "&About" ), _( "About this application" ) ); _( "&About eeschema" ), _( "About eeschema schematic designer" ) ); item->SetBitmap( info_xpm ); helpMenu->Append( item ); Loading Loading
cvpcb/cvframe.cpp +16 −5 Original line number Diff line number Diff line Loading @@ -421,14 +421,25 @@ void WinEDA_CvpcbFrame::AddFontSelectionMenu( wxMenu* main_menu ) { wxMenu* fontmenu = new wxMenu(); ADD_MENUITEM( fontmenu, ID_PREFERENCES_FONT_DIALOG, _( "font for dialog boxes" ), ADD_MENUITEM( fontmenu, ID_PREFERENCES_FONT_DIALOG, _( "Dialog boxes" ), fonts_xpm ); ADD_MENUITEM( fontmenu, ID_PREFERENCES_FONT_INFOSCREEN, _( "font for Lists" ), ADD_MENUITEM( fontmenu, ID_PREFERENCES_FONT_INFOSCREEN, _( "Lists" ), fonts_xpm ); ADD_MENUITEM( fontmenu, ID_PREFERENCES_FONT_STATUS, _( "font for Status Line" ), ADD_MENUITEM( fontmenu, ID_PREFERENCES_FONT_STATUS, _( "Status box" ), fonts_xpm ); ADD_MENUITEM_WITH_HELP_AND_SUBMENU( main_menu, fontmenu, ID_PREFERENCES_FONT, _( "&Font" ), ADD_MENUITEM_WITH_HELP_AND_SUBMENU( main_menu, fontmenu, ID_PREFERENCES_FONT, _( "&Font" ), _( "Choose font type and size for dialogs, infos and status box" ), fonts_xpm ); Loading
cvpcb/tool_cvpcb.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -156,8 +156,8 @@ wxMenuBar * menuBar = GetMenuBar(); _("Open the cvpcb manual")); item->SetBitmap(help_xpm); helpMenu->Append(item); item = new wxMenuItem(helpMenu , ID_CVPCB_DISPLAY_LICENCE, _("&About"), _("About this application")); item = new wxMenuItem(helpMenu , ID_CVPCB_DISPLAY_LICENCE, _("&About cvpcb"), _("About cvpcb schematic to pcb converter")); item->SetBitmap(info_xpm); helpMenu->Append(item); Loading
eeschema/dialog_edit_component_in_lib.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -144,7 +144,7 @@ void WinEDA_PartPropertiesFrame::CreateControls() m_PanelBasicBoxSizer->Add(itemBoxSizer7, 0, wxALIGN_LEFT|wxALL, 5); wxBoxSizer* itemBoxSizer8 = new wxBoxSizer(wxVERTICAL); itemBoxSizer7->Add(itemBoxSizer8, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); wxStaticText* itemStaticText9 = new wxStaticText( m_PanelBasic, wxID_STATIC, _("Number of Units:"), wxDefaultPosition, wxDefaultSize, 0 ); wxStaticText* itemStaticText9 = new wxStaticText( m_PanelBasic, wxID_STATIC, _("Number of units:"), wxDefaultPosition, wxDefaultSize, 0 ); itemBoxSizer8->Add(itemStaticText9, 0, wxGROW|wxLEFT|wxRIGHT|wxTOP|wxADJUST_MINSIZE, 5); SelNumberOfUnits = new wxSpinCtrl( m_PanelBasic, ID_SPINCTRL1, _T("1"), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 1, 16, 1 ); Loading
eeschema/edit_component_in_schematic.cpp +3 −3 Original line number Diff line number Diff line Loading @@ -756,7 +756,7 @@ void WinEDA_SchematicFrame::EditComponentReference( SCH_COMPONENT* Cmp, wxDC* DC flag = 1; wxString ref = Cmp->GetRef(GetSheet()); Get_Message( _( "Reference" ), _("Component Reference"), ref, this ); Get_Message( _( "Reference" ), _("Component reference"), ref, this ); if( !ref.IsEmpty() ) // New text entered { Loading Loading @@ -794,7 +794,7 @@ void WinEDA_SchematicFrame::EditComponentValue( SCH_COMPONENT* Cmp, wxDC* DC ) SCH_CMP_FIELD* TextField = Cmp->GetField( VALUE ); message = TextField->m_Text; if( Get_Message( _( "Value" ), _("Component Value"), message, this ) ) if( Get_Message( _( "Value" ), _("Component value"), message, this ) ) message.Empty(); //allow the user to remove the value. if( !message.IsEmpty() && !message.IsEmpty()) Loading Loading @@ -834,7 +834,7 @@ void WinEDA_SchematicFrame::EditComponentFootprint( SCH_COMPONENT* Cmp, wxDC* DC if(message.IsEmpty() ) wasEmpty = true; if( Get_Message( _( "Footprint" ), _("Component Footprint"), message, this ) ) if( Get_Message( _( "Footprint" ), _("Component footprint"), message, this ) ) message.Empty(); // allow the user to remove the value. // save old cmp in undo list if not already in edit, or moving ... Loading
eeschema/menubar.cpp +7 −7 Original line number Diff line number Diff line Loading @@ -335,8 +335,8 @@ void WinEDA_SchematicFrame::ReCreateMenuBar() item = new wxMenuItem( placeMenu, ID_LINE_COMMENT_BUTT, _( "Graphic line or poligon" ), _( "Place the graphic line or poligon" ), _( "Graphic line or polygon" ), _( "Place graphic lines or polygons" ), wxITEM_NORMAL ); item->SetBitmap( add_dashed_line_xpm ); Loading @@ -346,7 +346,7 @@ void WinEDA_SchematicFrame::ReCreateMenuBar() placeMenu, ID_TEXT_COMMENT_BUTT, _( "Graphic text (comment)" ), _( "Place the graphic text (comment)" ), _( "Place graphic text (comment)" ), wxITEM_NORMAL ); item->SetBitmap( add_text_xpm ); Loading @@ -356,7 +356,7 @@ void WinEDA_SchematicFrame::ReCreateMenuBar() wxMenu* configmenu = new wxMenu; item = new wxMenuItem( configmenu, ID_CONFIG_REQ, _( "&Library" ), _( "Setting Libraries, Directories and others..." ) ); _( "Library preferences" ) ); item->SetBitmap( library_xpm ); configmenu->Append( item ); Loading @@ -366,10 +366,10 @@ void WinEDA_SchematicFrame::ReCreateMenuBar() item->SetBitmap( palette_xpm ); configmenu->Append( item ); // ADD_MENUITEM(configmenu, ID_OPTIONS_SETUP, _("&Options"), preference_xpm); // Options item = new wxMenuItem( configmenu, ID_OPTIONS_SETUP, _( "&Options" ), _( "Select general options..." ) ); _( "General options..." ) ); item->SetBitmap( preference_xpm ); configmenu->Append( item ); Loading Loading @@ -399,7 +399,7 @@ void WinEDA_SchematicFrame::ReCreateMenuBar() helpMenu->Append( item ); item = new wxMenuItem( helpMenu, ID_KICAD_ABOUT, _( "&About" ), _( "About this application" ) ); _( "&About eeschema" ), _( "About eeschema schematic designer" ) ); item->SetBitmap( info_xpm ); helpMenu->Append( item ); Loading