Little changes in menu termins (strings) for standartization.

This commit is contained in:
plyatov 2007-06-14 17:11:54 +00:00
parent 043127c911
commit 335cfc2889
6 changed files with 13 additions and 13 deletions

View File

@ -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);

View File

@ -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);

View File

@ -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"));

View File

@ -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);

View File

@ -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);

View File

@ -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);