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
335cfc28
Commit
335cfc28
authored
Jun 14, 2007
by
plyatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Little changes in menu termins (strings) for standartization.
parent
043127c9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
13 deletions
+13
-13
tool_cvpcb.cpp
cvpcb/tool_cvpcb.cpp
+3
-3
menubar.cpp
eeschema/menubar.cpp
+2
-2
tool_gerber.cpp
gerbview/tool_gerber.cpp
+2
-2
buildmnu.cpp
kicad/buildmnu.cpp
+2
-2
menubarmodedit.cpp
pcbnew/menubarmodedit.cpp
+2
-2
menubarpcb.cpp
pcbnew/menubarpcb.cpp
+2
-2
No files found.
cvpcb/tool_cvpcb.cpp
View file @
335cfc28
...
...
@@ -155,12 +155,12 @@ wxMenuBar * menuBar = GetMenuBar();
// Menu Help:
wxMenu
*
helpMenu
=
new
wxMenu
;
item
=
new
wxMenuItem
(
helpMenu
,
ID_CVPCB_DISPLAY_HELP
,
_
(
"&
Help
"
),
_
(
"O
n line doc
"
));
item
=
new
wxMenuItem
(
helpMenu
,
ID_CVPCB_DISPLAY_HELP
,
_
(
"&
Contents
"
),
_
(
"O
pen 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
);
...
...
eeschema/menubar.cpp
View file @
335cfc28
...
...
@@ -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
);
...
...
gerbview/tool_gerber.cpp
View file @
335cfc28
...
...
@@ -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"
));
...
...
kicad/buildmnu.cpp
View file @
335cfc28
...
...
@@ -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
);
...
...
pcbnew/menubarmodedit.cpp
View file @
335cfc28
...
...
@@ -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
);
...
...
pcbnew/menubarpcb.cpp
View file @
335cfc28
...
...
@@ -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
);
...
...
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