Little changes in menu text (standartization of menu "About").
This commit is contained in:
parent
ee72600522
commit
11f264c9d1
|
@ -159,7 +159,7 @@ wxMenuBar * menuBar = GetMenuBar();
|
|||
_("On line doc"));
|
||||
item->SetBitmap(help_xpm);
|
||||
helpMenu->Append(item);
|
||||
item = new wxMenuItem(helpMenu , ID_CVPCB_DISPLAY_LICENCE, _("Cvpcb &About"),
|
||||
item = new wxMenuItem(helpMenu , ID_CVPCB_DISPLAY_LICENCE, _("&About"),
|
||||
_("Kicad Infos"));
|
||||
item->SetBitmap(info_xpm);
|
||||
helpMenu->Append(item);
|
||||
|
|
|
@ -154,7 +154,7 @@ wxMenuBar * menuBar = GetMenuBar();
|
|||
helpMenu->Append(item);
|
||||
|
||||
item = new wxMenuItem(helpMenu , ID_KICAD_ABOUT,
|
||||
_("Eeschema &About"), _("Eeschema Infos"));
|
||||
_("&About"), _("Eeschema Infos"));
|
||||
item->SetBitmap(info_xpm);
|
||||
helpMenu->Append(item);
|
||||
|
||||
|
|
|
@ -201,7 +201,7 @@ wxMenuBar * menuBar = GetMenuBar() ;
|
|||
helpMenu->Append(item);
|
||||
|
||||
item = new wxMenuItem(helpMenu , ID_KICAD_ABOUT,
|
||||
_("Kicad &About"), _("Kicad Infos"));
|
||||
_("&About"), _("Kicad Infos"));
|
||||
item->SetBitmap(info_xpm);
|
||||
helpMenu->Append(item);
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ wxMenuItem * item;
|
|||
item->SetBitmap(help_xpm);
|
||||
helpMenu->Append(item);
|
||||
|
||||
item = new wxMenuItem(helpMenu , ID_KICAD_ABOUT, _("Pcbnew &About"), _("Pcbnew Infos"));
|
||||
item = new wxMenuItem(helpMenu , ID_KICAD_ABOUT, _("&About"), _("Pcbnew Infos"));
|
||||
item->SetBitmap(info_xpm);
|
||||
helpMenu->Append(item);
|
||||
|
||||
|
|
|
@ -265,7 +265,7 @@ wxMenuBar * menuBar = GetMenuBar();
|
|||
item->SetBitmap(help_xpm);
|
||||
helpMenu->Append(item);
|
||||
|
||||
item = new wxMenuItem(helpMenu , ID_KICAD_ABOUT, _("Pcbnew &About"), _("Pcbnew Infos"));
|
||||
item = new wxMenuItem(helpMenu , ID_KICAD_ABOUT, _("&About"), _("Pcbnew Infos"));
|
||||
item->SetBitmap(info_xpm);
|
||||
helpMenu->Append(item);
|
||||
|
||||
|
|
Loading…
Reference in New Issue