Browse Source

Little changes in menu termins (strings) for standartization.

pull/1/head
plyatov 19 years ago
parent
commit
335cfc2889
  1. 6
      cvpcb/tool_cvpcb.cpp
  2. 4
      eeschema/menubar.cpp
  3. 4
      gerbview/tool_gerber.cpp
  4. 4
      kicad/buildmnu.cpp
  5. 4
      pcbnew/menubarmodedit.cpp
  6. 4
      pcbnew/menubarpcb.cpp

6
cvpcb/tool_cvpcb.cpp

@ -155,12 +155,12 @@ wxMenuBar * menuBar = GetMenuBar();
// Menu Help:
wxMenu *helpMenu = new wxMenu;
item = new wxMenuItem(helpMenu , ID_CVPCB_DISPLAY_HELP, _("&Help"),
_("On line doc"));
item = new wxMenuItem(helpMenu , ID_CVPCB_DISPLAY_HELP, _("&Contents"),
_("Open the cvpcb manual"));
item->SetBitmap(help_xpm);
helpMenu->Append(item);
item = new wxMenuItem(helpMenu , ID_CVPCB_DISPLAY_LICENCE, _("&About"),
_("Kicad Infos"));
_("About this application"));
item->SetBitmap(info_xpm);
helpMenu->Append(item);

4
eeschema/menubar.cpp

@ -149,12 +149,12 @@ wxMenuBar * menuBar = GetMenuBar();
// Menu Help:
wxMenu *helpMenu = new wxMenu;
item = new wxMenuItem(helpMenu , ID_GENERAL_HELP,
_("Kicad &Help"), _("On line doc"));
_("&Contents"), _("Open the eeschema manual"));
item->SetBitmap(help_xpm);
helpMenu->Append(item);
item = new wxMenuItem(helpMenu , ID_KICAD_ABOUT,
_("&About"), _("Eeschema Infos"));
_("&About"), _("About this application"));
item->SetBitmap(info_xpm);
helpMenu->Append(item);

4
gerbview/tool_gerber.cpp

@ -136,8 +136,8 @@ wxMenuBar * menuBar = GetMenuBar();
// Menu Help:
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(ID_GENERAL_HELP, _("&Help"), _("On line doc") );
helpMenu->Append(ID_KICAD_ABOUT, _("&About"), _("Gerbview Infos") );
helpMenu->Append(ID_GENERAL_HELP, _("&Contents"), _("Open the gerbview manual") );
helpMenu->Append(ID_KICAD_ABOUT, _("&About"), _("About this application") );
menuBar->Append(m_FilesMenu, _("&Files"));
menuBar->Append(configmenu, _("&Preferences"));

4
kicad/buildmnu.cpp

@ -196,12 +196,12 @@ wxMenuBar * menuBar = GetMenuBar() ;
// Menu Help:
wxMenu *helpMenu = new wxMenu;
item = new wxMenuItem(helpMenu , ID_GENERAL_HELP,
_("Kicad &Help"), _("On line doc"));
_("&Contents"), _("Open the kicad manual"));
item->SetBitmap(help_xpm);
helpMenu->Append(item);
item = new wxMenuItem(helpMenu , ID_KICAD_ABOUT,
_("&About"), _("Kicad Infos"));
_("&About"), _("About this application"));
item->SetBitmap(info_xpm);
helpMenu->Append(item);

4
pcbnew/menubarmodedit.cpp

@ -57,11 +57,11 @@ wxMenuItem * item;
// Menu Help: //
////////////////
wxMenu *helpMenu = new wxMenu;
item = new wxMenuItem(helpMenu , ID_GENERAL_HELP, _("Pcbnew &Help"), _("On line doc"));
item = new wxMenuItem(helpMenu , ID_GENERAL_HELP, _("&Contents"), _("Open the pcbnew manual"));
item->SetBitmap(help_xpm);
helpMenu->Append(item);
item = new wxMenuItem(helpMenu , ID_KICAD_ABOUT, _("&About"), _("Pcbnew Infos"));
item = new wxMenuItem(helpMenu , ID_KICAD_ABOUT, _("&About"), _("About this application"));
item->SetBitmap(info_xpm);
helpMenu->Append(item);

4
pcbnew/menubarpcb.cpp

@ -261,11 +261,11 @@ wxMenuBar * menuBar = GetMenuBar();
// Menu Help: //
////////////////
wxMenu *helpMenu = new wxMenu;
item = new wxMenuItem(helpMenu , ID_GENERAL_HELP, _("Pcbnew &Help"), _("On line doc"));
item = new wxMenuItem(helpMenu , ID_GENERAL_HELP, _("&Contents"), _("Open the pcbnew manual"));
item->SetBitmap(help_xpm);
helpMenu->Append(item);
item = new wxMenuItem(helpMenu , ID_KICAD_ABOUT, _("&About"), _("Pcbnew Infos"));
item = new wxMenuItem(helpMenu , ID_KICAD_ABOUT, _("&About"), _("About this application"));
item->SetBitmap(info_xpm);
helpMenu->Append(item);

Loading…
Cancel
Save