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
bfa36f31
Commit
bfa36f31
authored
Sep 14, 2007
by
plyatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Little correction of typos and termins.
parent
e567ffdc
Changes
13
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
7762 additions
and
7904 deletions
+7762
-7904
cfg.cpp
cvpcb/cfg.cpp
+1
-1
dialog_cmp_graphic_properties.cpp
eeschema/dialog_cmp_graphic_properties.cpp
+1
-1
eeconfig.cpp
eeschema/eeconfig.cpp
+1
-1
genliste.cpp
eeschema/genliste.cpp
+1
-1
menubar.cpp
eeschema/menubar.cpp
+4
-4
dcode.cpp
gerbview/dcode.cpp
+1
-1
files.cpp
gerbview/files.cpp
+1
-1
options.cpp
gerbview/options.cpp
+1
-1
readgerb.cpp
gerbview/readgerb.cpp
+1
-1
reglage.cpp
gerbview/reglage.cpp
+1
-1
set_color.h
gerbview/set_color.h
+1
-1
kicad.po
internat/ru/kicad.po
+7747
-7889
pcbcfg.cpp
pcbnew/pcbcfg.cpp
+1
-1
No files found.
cvpcb/cfg.cpp
View file @
bfa36f31
...
...
@@ -68,7 +68,7 @@ wxString mask( wxT("*"));
ChangeFileNameExt
(
FullFileName
,
g_Prj_Config_Filename_ext
);
path
=
wxGetCwd
();
FullFileName
=
EDA_FileSelector
(
_
(
"Save
config file
"
),
FullFileName
=
EDA_FileSelector
(
_
(
"Save
preferences
"
),
path
,
/* Chemin par defaut */
FullFileName
,
/* nom fichier par defaut */
g_Prj_Config_Filename_ext
,
/* extension par defaut */
...
...
eeschema/dialog_cmp_graphic_properties.cpp
View file @
bfa36f31
...
...
@@ -148,7 +148,7 @@ void WinEDA_bodygraphics_PropertiesFrame::CreateControls()
wxBoxSizer
*
itemBoxSizer2
=
new
wxBoxSizer
(
wxHORIZONTAL
);
itemDialog1
->
SetSizer
(
itemBoxSizer2
);
wxStaticBox
*
itemStaticBoxSizer3Static
=
new
wxStaticBox
(
itemDialog1
,
wxID_ANY
,
_
(
"Options
:"
));
wxStaticBox
*
itemStaticBoxSizer3Static
=
new
wxStaticBox
(
itemDialog1
,
wxID_ANY
,
_
(
"Options:"
));
wxStaticBoxSizer
*
itemStaticBoxSizer3
=
new
wxStaticBoxSizer
(
itemStaticBoxSizer3Static
,
wxVERTICAL
);
itemBoxSizer2
->
Add
(
itemStaticBoxSizer3
,
0
,
wxALIGN_CENTER_VERTICAL
|
wxALL
,
5
);
...
...
eeschema/eeconfig.cpp
View file @
bfa36f31
...
...
@@ -171,7 +171,7 @@ wxString mask( wxT("*") );
ChangeFileNameExt
(
FullFileName
,
g_Prj_Config_Filename_ext
);
path
=
wxGetCwd
();
FullFileName
=
EDA_FileSelector
(
_
(
"Save
config file
"
),
FullFileName
=
EDA_FileSelector
(
_
(
"Save
preferences
"
),
path
,
/* Chemin par defaut */
FullFileName
,
/* nom fichier par defaut */
g_Prj_Config_Filename_ext
,
/* extension par defaut */
...
...
eeschema/genliste.cpp
View file @
bfa36f31
...
...
@@ -120,7 +120,7 @@ wxPoint pos;
ChangeFileNameExt
(
m_ListFileName
,
wxT
(
".lst"
));
pos
.
x
=
5
;
pos
.
y
=
15
;
new
wxStaticBox
(
this
,
-
1
,
_
(
" List items
: "
),
pos
,
wxSize
(
230
,
120
));
new
wxStaticBox
(
this
,
-
1
,
_
(
" List items: "
),
pos
,
wxSize
(
230
,
120
));
pos
.
x
=
10
;
pos
.
y
+=
22
;
m_ListCmpbyRefItems
=
new
wxCheckBox
(
this
,
-
1
,
_
(
"Components by Reference"
),
pos
);
...
...
eeschema/menubar.cpp
View file @
bfa36f31
...
...
@@ -155,12 +155,12 @@ wxMenuBar * menuBar = GetMenuBar();
m_Parent
->
SetLanguageList
(
configmenu
);
configmenu
->
AppendSeparator
();
item
=
new
wxMenuItem
(
configmenu
,
ID_CONFIG_SAVE
,
_
(
"&Save
Eeschema Setup
"
),
_
(
"Save
options in <project>.pro
"
)
);
item
=
new
wxMenuItem
(
configmenu
,
ID_CONFIG_SAVE
,
_
(
"&Save
preferences
"
),
_
(
"Save
application preferences
"
)
);
item
->
SetBitmap
(
save_setup_xpm
);
configmenu
->
Append
(
item
);
item
=
new
wxMenuItem
(
configmenu
,
ID_CONFIG_READ
,
_
(
"&Read
Setup
"
),
_
(
"Read
options from a selected config file
"
));
item
=
new
wxMenuItem
(
configmenu
,
ID_CONFIG_READ
,
_
(
"&Read
preferences
"
),
_
(
"Read
application preferences
"
));
item
->
SetBitmap
(
read_setup_xpm
);
configmenu
->
Append
(
item
);
...
...
gerbview/dcode.cpp
View file @
bfa36f31
...
...
@@ -435,7 +435,7 @@ int layer;
GERBER_Descr
*
DcodeList
;
/* Construction de la liste des messages */
List
=
new
WinEDA_TextFrame
(
this
,
_
(
"List D
-C
odes"
));
List
=
new
WinEDA_TextFrame
(
this
,
_
(
"List D
c
odes"
));
for
(
layer
=
0
;
layer
<
32
;
layer
++
)
{
...
...
gerbview/files.cpp
View file @
bfa36f31
...
...
@@ -172,7 +172,7 @@ wxString filename = FullFileName;
penfilesmask
+=
g_PenFilenameExt
;
filename
=
frame
->
GetScreen
()
->
m_FileName
;
ChangeFileNameExt
(
filename
,
g_PenFilenameExt
);
filename
=
EDA_FileSelector
(
_
(
"D
CODES
files:"
),
filename
=
EDA_FileSelector
(
_
(
"D
codes
files:"
),
wxEmptyString
,
/* Chemin par defaut */
filename
,
/* nom fichier par defaut */
g_PenFilenameExt
,
/* extension par defaut */
...
...
gerbview/options.cpp
View file @
bfa36f31
...
...
@@ -327,7 +327,7 @@ wxString list_opt3[3] = { _("Sketch"), _("Filled"), _("Line") };
m_OptDisplayDrawings
->
SetSelection
(
DisplayOpt
.
DisplayDrawItems
);
MiddleBoxSizer
->
Add
(
m_OptDisplayDrawings
,
0
,
wxGROW
|
wxALL
,
5
);
m_OptDisplayDCodes
=
new
wxCheckBox
(
this
,
-
1
,
_
(
"Show D
-C
odes"
));
m_OptDisplayDCodes
=
new
wxCheckBox
(
this
,
-
1
,
_
(
"Show D
c
odes"
));
if
(
DisplayOpt
.
DisplayPadNum
)
m_OptDisplayDCodes
->
SetValue
(
TRUE
);
MiddleBoxSizer
->
Add
(
m_OptDisplayDCodes
,
0
,
wxGROW
|
wxALL
,
5
);
...
...
gerbview/readgerb.cpp
View file @
bfa36f31
...
...
@@ -249,7 +249,7 @@ wxBusyCursor show_wait;
DCodeFileName
=
GERBER_FullFileName
;
ChangeFileNameExt
(
DCodeFileName
,
g_PenFilenameExt
);
mask
=
wxT
(
"*"
)
+
g_PenFilenameExt
;
DCodeFileName
=
EDA_FileSelector
(
_
(
"D
CODES
files:"
),
DCodeFileName
=
EDA_FileSelector
(
_
(
"D
codes
files:"
),
wxEmptyString
,
/* Chemin par defaut */
DCodeFileName
,
/* nom fichier par defaut */
g_PenFilenameExt
,
/* extension par defaut */
...
...
gerbview/reglage.cpp
View file @
bfa36f31
...
...
@@ -126,7 +126,7 @@ wxString title;
LeftBoxSizer
,
size
);
TextPenExt
=
new
WinEDA_EnterText
(
this
,
_
(
"D
C
ode File Ext:"
),
g_PenFilenameExt
,
_
(
"D
c
ode File Ext:"
),
g_PenFilenameExt
,
LeftBoxSizer
,
size
);
GetSizer
()
->
Fit
(
this
);
...
...
gerbview/set_color.h
View file @
bfa36f31
...
...
@@ -251,7 +251,7 @@ static ColorButton Grid_Butt=
static
ColorButton
Show_DCodes_Butt
=
{
_
(
"D
C
odes id."
),
/* Title */
_
(
"D
c
odes id."
),
/* Title */
&
g_DCodesColor
,
/* adr du parametre optionnel */
FALSE
,
&
DisplayOpt
.
DisplayPadNum
/* parametre display on/off = bool*/
...
...
internat/ru/kicad.po
View file @
bfa36f31
This diff is collapsed.
Click to expand it.
pcbnew/pcbcfg.cpp
View file @
bfa36f31
...
...
@@ -173,7 +173,7 @@ wxString mask;
FullFileName
=
GetScreen
()
->
m_FileName
.
AfterLast
(
'/'
);
ChangeFileNameExt
(
FullFileName
,
g_Prj_Config_Filename_ext
);
FullFileName
=
EDA_FileSelector
(
_
(
"Save
config file
"
),
FullFileName
=
EDA_FileSelector
(
_
(
"Save
preferences
"
),
wxPathOnly
(
GetScreen
()
->
m_FileName
),
/* Chemin par defaut */
FullFileName
,
/* nom fichier par defaut */
g_Prj_Config_Filename_ext
,
/* extension par defaut */
...
...
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