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
e6838fdd
Commit
e6838fdd
authored
Aug 22, 2008
by
jerryjacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
About translatable, dutch language update
parent
92d3b599
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
170 additions
and
79 deletions
+170
-79
about_kicad.cpp
common/about_kicad.cpp
+30
-7
basicframe.cpp
common/basicframe.cpp
+1
-1
schframe.cpp
eeschema/schframe.cpp
+0
-1
kicad.mo
internat/nl/kicad.mo
+0
-0
kicad.po
internat/nl/kicad.po
+139
-69
mainframe.cpp
kicad/mainframe.cpp
+0
-1
No files found.
common/about_kicad.cpp
View file @
e6838fdd
...
...
@@ -21,10 +21,32 @@ void InitKiCadAbout(wxAboutDialogInfo& info)
wxString
description
;
description
<<
(
_T
(
"Build: "
))
<<
GetAboutBuildVersion
();
/* Check for unicode */
#if wxUSE_UNICODE
description
<<
(
_
T
(
" Unicode
"
));
description
<<
(
_
(
" Unicode
"
));
#else
description
<<
(
_T
(
" Ansi"
));
description
<<
(
_
(
" Ansi "
));
#endif
/* Check for wxMSW */
#if wxMSW
description
<<
(
_
(
"on Windows"
));
#endif
/* Check for wxMAC */
#if wxMAC
description
<<
(
_
(
"on Macintosch"
));
#endif
/* Check for linux and arch */
#if __gnu_linux__
description
<<
(
_
(
"on GNU/Linux "
));
#if __x86_64
description
<<
(
_
(
"64 bits"
));
#elif
description
<<
(
_
(
"32 bits"
));
#endif
#endif
info
.
SetDescription
(
description
);
...
...
@@ -51,10 +73,11 @@ void InitKiCadAbout(wxAboutDialogInfo& info)
info
.
AddDocWriter
(
_T
(
"
\n
Igor Plyatov <plyatov@gmail.com>"
));
/* Add translators */
info
.
AddTranslator
(
_T
(
"Czech (CZ) Milan Horák <stranger@tiscali.cz>"
));
info
.
AddTranslator
(
_T
(
"
\n
Dutch (NL) Jerry Jacobs <jerkejacobs@gmail.com>"
));
info
.
AddTranslator
(
_T
(
"
\n
French (FR) Jean-Pierre Charras <jean-pierre.charras@inpg.fr>"
));
info
.
AddTranslator
(
_T
(
"
\n
Polish (PL) Mateusz Skowroński <skowri@gmail.com>"
));
info
.
AddTranslator
(
_T
(
"
\n
Russian (RU) Igor Plyatov <plyatov@gmail.com>"
));
info
.
AddTranslator
(
wxT
(
"Czech (CZ) Milan Horák <stranger@tiscali.cz>"
));
/* fix for translation ! */
info
.
AddTranslator
(
_
(
"
\n
Dutch (NL) Jerry Jacobs <jerkejacobs@gmail.com>"
));
info
.
AddTranslator
(
_
(
"
\n
French (FR) Jean-Pierre Charras <jean-pierre.charras@inpg.fr>"
));
info
.
AddTranslator
(
wxT
(
"
\n
Polish (PL) Mateusz Skowroński <skowri@gmail.com>"
));
/* fix for translation ! */
info
.
AddTranslator
(
_
(
"
\n
Portuguese (PT) Renie Marquet <reniemarquet@uol.com.br>"
));
info
.
AddTranslator
(
_
(
"
\n
Russian (RU) Igor Plyatov <plyatov@gmail.com>"
));
}
common/basicframe.cpp
View file @
e6838fdd
...
...
@@ -245,7 +245,7 @@ void WinEDA_BasicFrame::GetKicadHelp( wxCommandEvent& event )
DisplayError
(
this
,
msg
);
}
#elif defined ONLINE_HELP_FILES_FORMAT_IS_PDF
wxString
fullfilename
=
FindKicadHelpPath
()
+
m_Parent
->
m_HelpFileName
;
wxString
fullfilename
=
FindKicadHelpPath
()
+
_T
(
"kicad.pdf"
)
;
if
(
wxFileExists
(
fullfilename
)
)
GetAssociatedDocument
(
this
,
wxEmptyString
,
fullfilename
);
else
// Try to find file in English format:
...
...
eeschema/schframe.cpp
View file @
e6838fdd
...
...
@@ -137,7 +137,6 @@ WinEDA_SchematicFrame::WinEDA_SchematicFrame( wxWindow* father,
WinEDA_DrawFrame
(
father
,
SCHEMATIC_FRAME
,
parent
,
title
,
pos
,
size
,
style
)
{
m_FrameName
=
wxT
(
"SchematicFrame"
);
//m_AboutTitle = g_EeschemaAboutTitle;
m_Draw_Axis
=
FALSE
;
// TRUE to show axis
m_Draw_Grid
=
g_ShowGrid
;
// TRUE to show a grid
m_Draw_Sheet_Ref
=
TRUE
;
// TRUE to show sheet references
...
...
internat/nl/kicad.mo
View file @
e6838fdd
No preview for this file type
internat/nl/kicad.po
View file @
e6838fdd
This diff is collapsed.
Click to expand it.
kicad/mainframe.cpp
View file @
e6838fdd
...
...
@@ -34,7 +34,6 @@ WinEDA_MainFrame::WinEDA_MainFrame( WinEDA_App* eda_app,
wxSize
clientsize
;
m_FrameName
=
wxT
(
"KicadFrame"
);
//m_AboutTitle = g_KicadAboutTitle;
m_VToolBar
=
NULL
;
m_LeftWin
=
NULL
;
m_BottomWin
=
NULL
;
...
...
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