Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
cee6e05a
Commit
cee6e05a
authored
Jan 23, 2012
by
Christian Metzen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update translations, fix plater.py wildcards
parent
2c28694b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
pronterface.mo
locale/de/LC_MESSAGES/pronterface.mo
+0
-0
pronterface.po
locale/de/LC_MESSAGES/pronterface.po
+3
-3
plater.py
plater.py
+2
-2
No files found.
locale/de/LC_MESSAGES/pronterface.mo
View file @
cee6e05a
No preview for this file type
locale/de/LC_MESSAGES/pronterface.po
View file @
cee6e05a
...
@@ -6,7 +6,7 @@ msgid ""
...
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
msgstr ""
"Project-Id-Version: Pronterface jm1\n"
"Project-Id-Version: Pronterface jm1\n"
"POT-Creation-Date: 2012-01-19 09:21+CET\n"
"POT-Creation-Date: 2012-01-19 09:21+CET\n"
"PO-Revision-Date: 2012-01-
19 09:22
+0100\n"
"PO-Revision-Date: 2012-01-
23 10:01
+0100\n"
"Last-Translator: Christian Metzen <metzench@ccux-linux.de>\n"
"Last-Translator: Christian Metzen <metzench@ccux-linux.de>\n"
"Language-Team: DE <LL@li.org>\n"
"Language-Team: DE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"MIME-Version: 1.0\n"
...
@@ -139,7 +139,7 @@ msgstr "Extrudieren"
...
@@ -139,7 +139,7 @@ msgstr "Extrudieren"
#: pronterface.py:96
#: pronterface.py:96
msgid "Reverse"
msgid "Reverse"
msgstr "
Umkehren
"
msgstr "
Rückwärts
"
#: pronterface.py:114
#: pronterface.py:114
msgid ""
msgid ""
...
@@ -391,7 +391,7 @@ msgstr "Aus"
...
@@ -391,7 +391,7 @@ msgstr "Aus"
#: pronterface.py:566
#: pronterface.py:566
#: pronterface.py:586
#: pronterface.py:586
msgid "Set"
msgid "Set"
msgstr "Ein
stellen
"
msgstr "Ein"
#: pronterface.py:571
#: pronterface.py:571
#: pronterface.py:634
#: pronterface.py:634
...
...
plater.py
View file @
cee6e05a
...
@@ -353,7 +353,7 @@ class stlwin(wx.Frame):
...
@@ -353,7 +353,7 @@ class stlwin(wx.Frame):
def
export
(
self
,
event
):
def
export
(
self
,
event
):
dlg
=
wx
.
FileDialog
(
self
,
_
(
"Pick file to save to"
),
self
.
basedir
,
style
=
wx
.
FD_SAVE
)
dlg
=
wx
.
FileDialog
(
self
,
_
(
"Pick file to save to"
),
self
.
basedir
,
style
=
wx
.
FD_SAVE
)
dlg
.
SetWildcard
(
_
(
"STL files (;*.stl;)"
))
dlg
.
SetWildcard
(
_
(
"STL files (;*.stl;
*.STL;
)"
))
if
(
dlg
.
ShowModal
()
==
wx
.
ID_OK
):
if
(
dlg
.
ShowModal
()
==
wx
.
ID_OK
):
name
=
dlg
.
GetPath
()
name
=
dlg
.
GetPath
()
self
.
writefiles
(
name
)
self
.
writefiles
(
name
)
...
@@ -377,7 +377,7 @@ class stlwin(wx.Frame):
...
@@ -377,7 +377,7 @@ class stlwin(wx.Frame):
def
right
(
self
,
event
):
def
right
(
self
,
event
):
dlg
=
wx
.
FileDialog
(
self
,
_
(
"Pick file to load"
),
self
.
basedir
,
style
=
wx
.
FD_OPEN
|
wx
.
FD_FILE_MUST_EXIST
)
dlg
=
wx
.
FileDialog
(
self
,
_
(
"Pick file to load"
),
self
.
basedir
,
style
=
wx
.
FD_OPEN
|
wx
.
FD_FILE_MUST_EXIST
)
dlg
.
SetWildcard
(
_
(
"STL files (;*.stl;)|*.stl|OpenSCAD files (;*.scad;)|*.scad"
))
dlg
.
SetWildcard
(
_
(
"STL files (;*.stl;
*.STL;
)|*.stl|OpenSCAD files (;*.scad;)|*.scad"
))
if
(
dlg
.
ShowModal
()
==
wx
.
ID_OK
):
if
(
dlg
.
ShowModal
()
==
wx
.
ID_OK
):
name
=
dlg
.
GetPath
()
name
=
dlg
.
GetPath
()
if
(
name
.
lower
()
.
endswith
(
".stl"
)):
if
(
name
.
lower
()
.
endswith
(
".stl"
)):
...
...
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