Provided captions for the dialog boxes invoked by the "Help -> About" command
This commit is contained in:
parent
45a3a4b3af
commit
86c7926e94
|
@ -36,12 +36,14 @@ wxT("** EESCHEMA (sept 1994 .. 2007) **")
|
|||
#endif
|
||||
);
|
||||
|
||||
/* Routines Locales */
|
||||
// Routines Locales
|
||||
|
||||
/*******************************************/
|
||||
void Print_Kicad_Infos(wxWindow * frame)
|
||||
/*******************************************/
|
||||
{
|
||||
wxString AboutCaption = wxT("About ");
|
||||
|
||||
wxString Msg = MsgInfos;
|
||||
Msg << wxT("\n\n") << _("Build Version:") << wxT("\n") ;
|
||||
|
||||
|
@ -62,13 +64,15 @@ wxString Msg = MsgInfos;
|
|||
Msg << wxT(" JP CHARRAS\n\n") << _("Based on wxWidgets ");
|
||||
Msg << wxMAJOR_VERSION << wxT(".") <<
|
||||
wxMINOR_VERSION << wxT(".") << wxRELEASE_NUMBER;
|
||||
if ( wxSUBRELEASE_NUMBER )
|
||||
if( wxSUBRELEASE_NUMBER )
|
||||
Msg << wxT(".") << wxSUBRELEASE_NUMBER;
|
||||
Msg << _("\n\nGPL License");
|
||||
Msg << _("\n\nWeb sites:\n");
|
||||
Msg << wxT("http://iut-tice.ujf-grenoble.fr/kicad/\n");
|
||||
Msg << wxT("http://www.gipsa-lab.inpg.fr/realise_au_lis/kicad/");
|
||||
|
||||
wxMessageBox(Msg, wxEmptyString, wxICON_INFORMATION, frame);
|
||||
AboutCaption << g_Main_Title << wxT(" ") << GetBuildVersion();
|
||||
|
||||
wxMessageBox(Msg, AboutCaption, wxICON_INFORMATION, frame);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue