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
763290ad
Commit
763290ad
authored
Apr 07, 2015
by
Wayne Stambaugh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make CvPcb strings translatable.
parent
78d9e7b7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
cvpcb.cpp
cvpcb/cvpcb.cpp
+1
-1
readwrite_dlgs.cpp
cvpcb/readwrite_dlgs.cpp
+9
-9
No files found.
cvpcb/cvpcb.cpp
View file @
763290ad
...
...
@@ -196,7 +196,7 @@ bool IFACE::OnKifaceStart( PGM_BASE* aProgram, int aCtlBits )
if
(
!
FP_LIB_TABLE
::
LoadGlobalTable
(
GFootprintTable
)
)
{
DisplayInfoMessage
(
NULL
,
wxT
(
DisplayInfoMessage
(
NULL
,
_
(
"You have run CvPcb for the first time using the "
"new footprint library table method for finding "
"footprints. CvPcb has either copied the default "
...
...
cvpcb/readwrite_dlgs.cpp
View file @
763290ad
...
...
@@ -247,9 +247,9 @@ bool CVPCB_MAINFRAME::ReadNetListAndLinkFiles()
{
wxString
msg
=
ioe
.
errorText
;
msg
+=
wxT
(
"
\n\n
"
);
msg
+=
_
(
"First check your f
p-lib-
table entries."
);
msg
+=
_
(
"First check your f
ootprint library
table entries."
);
wxMessageBox
(
msg
,
wxT
(
"Problematic fp-lib-t
ables"
)
);
wxMessageBox
(
msg
,
_
(
"Problematic Footprint Library T
ables"
)
);
return
false
;
}
...
...
@@ -257,12 +257,12 @@ bool CVPCB_MAINFRAME::ReadNetListAndLinkFiles()
{
HTML_MESSAGE_BOX
dlg
(
this
,
wxEmptyString
);
dlg
.
MessageSet
(
wxT
(
"The following errors occurred attempting to convert the "
"footprint assignments:
\n\n
"
)
);
dlg
.
MessageSet
(
_
(
"The following errors occurred attempting to convert the "
"footprint assignments:
\n\n
"
)
);
dlg
.
ListSet
(
msg
);
dlg
.
MessageSet
(
wxT
(
"
\n
You will need to reassign them manually if you want them "
"to be updated correctly the next time you import the "
"netlist in Pcbnew."
)
);
dlg
.
MessageSet
(
_
(
"
\n
You will need to reassign them manually if you want them "
"to be updated correctly the next time you import the "
"netlist in Pcbnew."
)
);
#if 1
dlg
.
ShowModal
();
...
...
@@ -398,8 +398,8 @@ int CVPCB_MAINFRAME::SaveCmpLinkFile( const wxString& aFullFileName )
if
(
!
IsWritable
(
fn
.
GetFullPath
()
)
||
WriteComponentLinkFile
(
fn
.
GetFullPath
()
)
==
0
)
{
DisplayError
(
this
,
wxString
::
Format
(
_
(
"Unable to create component footprint link file '%s'"
),
fn
.
GetFullPath
()
)
);
wxString
::
Format
(
_
(
"Unable to create component footprint link file '%s'"
),
fn
.
GetFullPath
()
)
);
return
0
;
}
...
...
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