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
92d3b599
Commit
92d3b599
authored
Aug 22, 2008
by
jerryjacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make nameless.pro translatable
parent
18bfe66d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
12 deletions
+21
-12
kicad.mo
internat/nl/kicad.mo
+0
-0
kicad.po
internat/nl/kicad.po
+15
-10
kicad.cpp
kicad/kicad.cpp
+6
-2
No files found.
internat/nl/kicad.mo
View file @
92d3b599
No preview for this file type
internat/nl/kicad.po
View file @
92d3b599
...
...
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: KiCad\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-08-2
0 22:41
+0100\n"
"PO-Revision-Date: 2008-08-2
0 22:4
2+0100\n"
"POT-Creation-Date: 2008-08-2
2 12:12
+0100\n"
"PO-Revision-Date: 2008-08-2
2 12:1
2+0100\n"
"Last-Translator: Jerry Jacobs <jerkejacobs@gmail.com>\n"
"Language-Team: KiCad Team <jerkejacobs@gmail.com>\n"
"MIME-Version: 1.0\n"
...
...
@@ -9163,6 +9163,11 @@ msgstr ""
msgid "Save project file"
msgstr "Opslaan van project bestand"
#: kicad/kicad.cpp:215
#: kicad/treeprj_frame.cpp:432
msgid "noname"
msgstr "naamloos"
#: kicad/treeprj_frame.cpp:94
msgid "&Run"
msgstr "&Uitvoeren"
...
...
@@ -9258,10 +9263,6 @@ msgstr "Creëer Nieuw Bestand:"
msgid "Create New Directory"
msgstr "Creëer Nieuwe Map"
#: kicad/treeprj_frame.cpp:432
msgid "noname"
msgstr "naamloos"
#: kicad/treeprj_frame.cpp:878
msgid "Change File Name: "
msgstr "Verander Bestandsnaam:"
...
...
@@ -9383,19 +9384,23 @@ msgid "Load file:"
msgstr "Bestand laden:"
#: kicad/commandframe.cpp:58
msgid "eeschema (Schematic editor)"
#, fuzzy
msgid "EESchema (Schematic editor)"
msgstr "EESchema (Schema Editor)"
#: kicad/commandframe.cpp:62
msgid "cvpcb (Components to modules)"
#, fuzzy
msgid "CVpcb (Components to modules)"
msgstr "CvPCB (Componenten naar Modules)"
#: kicad/commandframe.cpp:66
msgid "pcbnew (PCB editor)"
#, fuzzy
msgid "PCBnew (PCB editor)"
msgstr "PCBnew (Layout Editor)"
#: kicad/commandframe.cpp:70
msgid "gerbview (Gerber viewer)"
#, fuzzy
msgid "GerbView (Gerber viewer)"
msgstr "GerbView (Gerber Viewer)"
#: kicad/commandframe.cpp:78
...
...
kicad/kicad.cpp
View file @
92d3b599
...
...
@@ -210,6 +210,10 @@ bool WinEDA_App::OnInit()
/* init kicad */
GetSettings
();
// read current setup
/* Make nameless project translatable */
wxString
project_ext
=
_T
(
".pro"
);
wxString
nameless_project
=
_
(
"noname"
)
+
project_ext
;
m_MainFrame
=
new
WinEDA_MainFrame
(
this
,
NULL
,
wxT
(
"KiCad"
),
wxPoint
(
30
,
20
),
wxSize
(
600
,
400
)
);
...
...
@@ -218,10 +222,10 @@ bool WinEDA_App::OnInit()
else
if
(
m_EDA_Config
)
{
m_MainFrame
->
m_PrjFileName
=
m_EDA_Config
->
Read
(
wxT
(
"LastProject"
),
wxT
(
"noname.pro"
)
);
nameless_project
);
}
else
m_MainFrame
->
m_PrjFileName
=
wxT
(
"noname.pro"
)
;
m_MainFrame
->
m_PrjFileName
=
nameless_project
;
wxString
Title
=
g_Main_Title
+
wxT
(
" "
)
+
GetBuildVersion
();
Title
+=
wxT
(
" "
)
+
m_MainFrame
->
m_PrjFileName
;
...
...
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