Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
86c7926e
Commit
86c7926e
authored
Aug 16, 2007
by
g_harland
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Provided captions for the dialog boxes invoked by the "Help -> About" command
parent
45a3a4b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
infospgm.cpp
share/infospgm.cpp
+7
-3
No files found.
share/infospgm.cpp
View file @
86c7926e
...
...
@@ -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\n
GPL License"
);
Msg
<<
_
(
"
\n\n
Web 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
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment