chiark / gitweb /
Update code for translations, fix a few translation issues and add a few missing...
authordaid <daid303@gmail.com>
Tue, 1 Oct 2013 13:50:04 +0000 (15:50 +0200)
committerdaid <daid303@gmail.com>
Tue, 1 Oct 2013 13:50:04 +0000 (15:50 +0200)
15 files changed:
.gitignore
Cura/gui/configBase.py
Cura/gui/mainWindow.py
Cura/resources/locale/Cura.pot
Cura/resources/locale/de/LC_MESSAGES/Cura.mo [new file with mode: 0644]
Cura/resources/locale/de/LC_MESSAGES/Cura.po [new file with mode: 0644]
Cura/resources/locale/en/LC_MESSAGES/Cura.mo
Cura/resources/locale/en/LC_MESSAGES/Cura.po
Cura/resources/locale/nl/LC_MESSAGES/Cura.mo [new file with mode: 0644]
Cura/resources/locale/nl/LC_MESSAGES/Cura.po [new file with mode: 0644]
Cura/resources/locale/ru/LC_MESSAGES/Cura.mo
Cura/resources/locale/ru/LC_MESSAGES/Cura.po
Cura/util/profile.py
Cura/util/resources.py
changelog

index 989d8494f3d20d69dc23dc80d38c63d15633bbc1..fef83e6f17e611053edbb79dcf8e9fbfd232fb74 100644 (file)
@@ -4,6 +4,8 @@
 *.pyc
 *.zip
 *.exe
+*.po~
+*.gcode
 darwin-Cura-*
 win32-Cura-*
 linux-Cura-*
index 042ca3888f1c848cf97fc648bd000c8f7b51820c..3cf6a1d0eaf87abe149a241738330025173f4e21 100644 (file)
@@ -180,8 +180,12 @@ class SettingRow(object):
                        choices = self.setting.getType()
                        if valueOverride is not None:
                                choices = valueOverride
+                       self._englishChoices = choices[:]
                        if value not in choices and len(choices) > 0:
                                value = choices[0]
+                       for n in xrange(0, len(choices)):
+                               choices[n] = _(choices[n])
+                       value = _(value)
                        self.ctrl = wx.ComboBox(panel, -1, value, choices=choices, style=wx.CB_DROPDOWN|wx.CB_READONLY)
                        self.ctrl.Bind(wx.EVT_COMBOBOX, self.OnSettingChange)
                        self.ctrl.Bind(wx.EVT_LEFT_DOWN, self.OnMouseExit)
@@ -237,6 +241,12 @@ class SettingRow(object):
        def GetValue(self):
                if isinstance(self.ctrl, wx.ColourPickerCtrl):
                        return str(self.ctrl.GetColour().GetAsString(wx.C2S_HTML_SYNTAX))
+               elif isinstance(self.ctrl, wx.ComboBox):
+                       value = str(self.ctrl.GetValue())
+                       for ret in self._englishChoices:
+                               if _(ret) == value:
+                                       return ret
+                       return value
                else:
                        return str(self.ctrl.GetValue())
 
@@ -250,5 +260,7 @@ class SettingRow(object):
                                self.ctrl.SetValue(float(value))
                        except ValueError:
                                pass
+               elif isinstance(self.ctrl, wx.ComboBox):
+                       self.ctrl.SetValue(_(value))
                else:
                        self.ctrl.SetValue(value)
index 156f02078b579d5d801db38b8dcd024488a82b94..61b88f85e39e9018a01df7a2cbead8920bb05333 100644 (file)
@@ -92,14 +92,14 @@ class mainWindow(wx.Frame):
 
                # Model MRU list
                modelHistoryMenu = wx.Menu()
-               self.fileMenu.AppendMenu(wx.NewId(), _("&Recent Model Files"), modelHistoryMenu)
+               self.fileMenu.AppendMenu(wx.NewId(), '&' + _("Recent Model Files"), modelHistoryMenu)
                self.modelFileHistory.UseMenu(modelHistoryMenu)
                self.modelFileHistory.AddFilesToMenu()
                self.Bind(wx.EVT_MENU_RANGE, self.OnModelMRU, id=self.ID_MRU_MODEL1, id2=self.ID_MRU_MODEL10)
 
                # Profle MRU list
                profileHistoryMenu = wx.Menu()
-               self.fileMenu.AppendMenu(wx.NewId(), _("&Recent Profile Files"), profileHistoryMenu)
+               self.fileMenu.AppendMenu(wx.NewId(), _("Recent Profile Files"), profileHistoryMenu)
                self.profileFileHistory.UseMenu(profileHistoryMenu)
                self.profileFileHistory.AddFilesToMenu()
                self.Bind(wx.EVT_MENU_RANGE, self.OnProfileMRU, id=self.ID_MRU_PROFILE1, id2=self.ID_MRU_PROFILE10)
@@ -107,7 +107,7 @@ class mainWindow(wx.Frame):
                self.fileMenu.AppendSeparator()
                i = self.fileMenu.Append(wx.ID_EXIT, _("Quit"))
                self.Bind(wx.EVT_MENU, self.OnQuit, i)
-               self.menubar.Append(self.fileMenu, _("&File"))
+               self.menubar.Append(self.fileMenu, '&' + _("File"))
 
                toolsMenu = wx.Menu()
 
@@ -125,7 +125,7 @@ class mainWindow(wx.Frame):
                #self.normalModeOnlyItems.append(i)
 
                if minecraftImport.hasMinecraft():
-                       i = toolsMenu.Append(-1, _("Minecraft import..."))
+                       i = toolsMenu.Append(-1, _("Minecraft map import..."))
                        self.Bind(wx.EVT_MENU, self.OnMinecraftImport, i)
 
                if version.isDevVersion():
@@ -606,7 +606,7 @@ class normalSettingsPanel(configBase.configPanelBase):
                        n += 1 + len(profile.getSettingsForCategory(category, title))
                        if n > count / 2:
                                p = right
-                       configBase.TitleRow(p, title)
+                       configBase.TitleRow(p, _(title))
                        for s in profile.getSettingsForCategory(category, title):
                                configBase.SettingRow(p, s.getName())
 
index cac3349588a7537308c511c554dc0571acc4fc1e..01f4cb4ecefc4b09edb9ebda98d122d91405bf71 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""\r
 "Project-Id-Version: PACKAGE VERSION\n"\r
 "Report-Msgid-Bugs-To: \n"\r
-"POT-Creation-Date: 2013-09-27 09:25+0200\n"\r
+"POT-Creation-Date: 2013-10-01 15:37+0200\n"\r
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"\r
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"\r
 "Language-Team: LANGUAGE <LL@li.org>\n"\r
@@ -16,11 +16,11 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"\r
 "Content-Transfer-Encoding: 8bit\n"\r
 \r
-#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:520\r
+#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:524\r
 msgid "A new version of Cura is available, would you like to download?"\r
 msgstr ""\r
 \r
-#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:520\r
+#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:524\r
 msgid "New version available"\r
 msgstr ""\r
 \r
@@ -358,7 +358,7 @@ msgid ""
 msgstr ""\r
 \r
 #: Cura/gui/firmwareInstall.py:39 Cura/gui/firmwareInstall.py:98\r
-#: Cura/gui/mainWindow.py:455\r
+#: Cura/gui/mainWindow.py:459\r
 msgid "Firmware update"\r
 msgstr ""\r
 \r
@@ -395,210 +395,206 @@ msgid ""
 "Is your machine connected to the PC?"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:54\r
+#: Cura/gui/mainWindow.py:56\r
 msgid "Load model file...\tCTRL+L"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:56\r
+#: Cura/gui/mainWindow.py:58\r
 msgid "Save model...\tCTRL+S"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:58\r
+#: Cura/gui/mainWindow.py:60\r
 msgid "Clear platform"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:62\r
+#: Cura/gui/mainWindow.py:64\r
 msgid "Print...\tCTRL+P"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:64 Cura/gui/sceneView.py:214\r
+#: Cura/gui/mainWindow.py:66 Cura/gui/sceneView.py:244\r
 msgid "Save GCode..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:66\r
+#: Cura/gui/mainWindow.py:68\r
 msgid "Show slice engine log..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:70\r
+#: Cura/gui/mainWindow.py:72\r
 msgid "Open Profile..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:73\r
+#: Cura/gui/mainWindow.py:75\r
 msgid "Save Profile..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:76\r
+#: Cura/gui/mainWindow.py:78\r
 msgid "Load Profile from GCode..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:80\r
+#: Cura/gui/mainWindow.py:82\r
 msgid "Reset Profile to default"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:85\r
+#: Cura/gui/mainWindow.py:87\r
 msgid "Preferences...\tCTRL+,"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:87\r
+#: Cura/gui/mainWindow.py:89\r
 msgid "Machine settings..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:93\r
-msgid "&Recent Model Files"\r
+#: Cura/gui/mainWindow.py:95\r
+msgid "Recent Model Files"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:100\r
-msgid "&Recent Profile Files"\r
+#: Cura/gui/mainWindow.py:102\r
+msgid "Recent Profile Files"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:106\r
+#: Cura/gui/mainWindow.py:108\r
 msgid "Quit"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:108\r
-msgid "&File"\r
+#: Cura/gui/mainWindow.py:110\r
+msgid "File"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:112\r
+#: Cura/gui/mainWindow.py:114\r
 msgid "Switch to quickprint..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:116\r
+#: Cura/gui/mainWindow.py:118\r
 msgid "Switch to full settings..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:126\r
-msgid "Minecraft import..."\r
+#: Cura/gui/mainWindow.py:128\r
+msgid "Minecraft map import..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:130\r
+#: Cura/gui/mainWindow.py:132\r
 msgid "PID Debugger..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:133\r
+#: Cura/gui/mainWindow.py:135\r
 msgid "Copy profile to clipboard"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:135\r
+#: Cura/gui/mainWindow.py:137\r
 msgid "Tools"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:141 Cura/util/profile.py:158\r
+#: Cura/gui/mainWindow.py:143 Cura/util/profile.py:158\r
 msgid "Machine"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:144\r
+#: Cura/gui/mainWindow.py:146\r
 msgid "Open expert settings..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:148\r
+#: Cura/gui/mainWindow.py:150\r
 msgid "Run first run wizard..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:150\r
+#: Cura/gui/mainWindow.py:152\r
 msgid "Run bed leveling wizard..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:153\r
+#: Cura/gui/mainWindow.py:155\r
 msgid "Run head offset wizard..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:156\r
+#: Cura/gui/mainWindow.py:158\r
 msgid "Expert"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:159\r
+#: Cura/gui/mainWindow.py:161\r
 msgid "Online documentation..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:161\r
+#: Cura/gui/mainWindow.py:163\r
 msgid "Report a problem..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:163\r
+#: Cura/gui/mainWindow.py:165\r
 msgid "Check for update..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:165\r
+#: Cura/gui/mainWindow.py:167\r
 msgid "Open YouMagine website..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:167\r
+#: Cura/gui/mainWindow.py:169\r
 msgid "About Cura..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:169\r
+#: Cura/gui/mainWindow.py:171\r
 msgid "Help"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:387\r
+#: Cura/gui/mainWindow.py:391\r
 msgid "Add new machine..."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:392\r
+#: Cura/gui/mainWindow.py:396\r
 msgid "Install custom firmware"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:394\r
+#: Cura/gui/mainWindow.py:398\r
 msgid "Install default Marlin firmware"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:398\r
+#: Cura/gui/mainWindow.py:402\r
 msgid "Select profile file to load"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:410\r
+#: Cura/gui/mainWindow.py:414\r
 msgid "Select gcode file to load profile from"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:423\r
+#: Cura/gui/mainWindow.py:427\r
 msgid ""\r
 "No profile found in GCode file.\n"\r
 "This feature only works with GCode files made by Cura 12.07 or newer."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:423\r
+#: Cura/gui/mainWindow.py:427\r
 msgid "Profile load error"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:427\r
+#: Cura/gui/mainWindow.py:431\r
 msgid "Select profile file to save"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:435\r
+#: Cura/gui/mainWindow.py:439\r
 msgid ""\r
 "This will reset all profile settings to defaults.\n"\r
 "Unless you have saved your current profile, all settings will be lost!\n"\r
 "Do you really want to reset?"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:435\r
+#: Cura/gui/mainWindow.py:439\r
 msgid "Profile reset"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:455\r
+#: Cura/gui/mainWindow.py:459\r
 msgid ""\r
 "Warning: Installing a custom firmware does not guarantee that you machine "\r
 "will function correctly, and could damage your machine."\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:456\r
+#: Cura/gui/mainWindow.py:460\r
 msgid "Open firmware to upload"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:523\r
+#: Cura/gui/mainWindow.py:527\r
 msgid "You are running the latest version of Cura!"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:523\r
+#: Cura/gui/mainWindow.py:527\r
 msgid "Awesome!"\r
 msgstr ""\r
 \r
-#: Cura/gui/mainWindow.py:535\r
-msgid "Copyright (C) David Braam"\r
-msgstr ""\r
-\r
-#: Cura/gui/mainWindow.py:601\r
+#: Cura/gui/mainWindow.py:583\r
 msgid "Plugins"\r
 msgstr ""\r
 \r
@@ -685,8 +681,8 @@ msgstr ""
 msgid "Connect"\r
 msgstr ""\r
 \r
-#: Cura/gui/printWindow.py:181 Cura/gui/sceneView.py:64\r
-#: Cura/gui/sceneView.py:774\r
+#: Cura/gui/printWindow.py:181 Cura/gui/sceneView.py:65\r
+#: Cura/gui/sceneView.py:804\r
 msgid "Print"\r
 msgstr ""\r
 \r
@@ -769,163 +765,163 @@ msgstr ""
 msgid "Filament cost: %s\n"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:63\r
+#: Cura/gui/sceneView.py:64\r
 msgid "Load"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:68\r
+#: Cura/gui/sceneView.py:69\r
 msgid "Rotate"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:69\r
+#: Cura/gui/sceneView.py:70\r
 msgid "Scale"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:70\r
+#: Cura/gui/sceneView.py:71\r
 msgid "Mirror"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:72 Cura/gui/sceneView.py:75\r
+#: Cura/gui/sceneView.py:73 Cura/gui/sceneView.py:76\r
 msgid "Reset"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:73\r
+#: Cura/gui/sceneView.py:74\r
 msgid "Lay flat"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:76\r
+#: Cura/gui/sceneView.py:77\r
 msgid "To max"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:78\r
+#: Cura/gui/sceneView.py:79\r
 msgid "Mirror X"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:79\r
+#: Cura/gui/sceneView.py:80\r
 msgid "Mirror Y"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:80\r
+#: Cura/gui/sceneView.py:81\r
 msgid "Mirror Z"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:88\r
+#: Cura/gui/sceneView.py:89\r
 msgid "Scale X"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:90\r
+#: Cura/gui/sceneView.py:91\r
 msgid "Scale Y"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:92\r
+#: Cura/gui/sceneView.py:93\r
 msgid "Scale Z"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:94\r
+#: Cura/gui/sceneView.py:95\r
 msgid "Size X (mm)"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:96\r
+#: Cura/gui/sceneView.py:97\r
 msgid "Size Y (mm)"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:98\r
+#: Cura/gui/sceneView.py:99\r
 msgid "Size Z (mm)"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:100\r
+#: Cura/gui/sceneView.py:101\r
 msgid "Uniform scale"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:103\r
+#: Cura/gui/sceneView.py:104\r
 msgid "View mode"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:103\r
+#: Cura/gui/sceneView.py:104\r
 msgid "Normal"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:103\r
+#: Cura/gui/sceneView.py:104\r
 msgid "Overhang"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:103\r
+#: Cura/gui/sceneView.py:104\r
 msgid "Transparent"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:103\r
+#: Cura/gui/sceneView.py:104\r
 msgid "X-Ray"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:103\r
+#: Cura/gui/sceneView.py:104\r
 msgid "Layers"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:106\r
+#: Cura/gui/sceneView.py:107\r
 msgid "Share on YouMagine"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:168\r
+#: Cura/gui/sceneView.py:198\r
 msgid "Open 3D model"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:183\r
+#: Cura/gui/sceneView.py:213\r
 msgid "Save 3D model"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:213\r
+#: Cura/gui/sceneView.py:243\r
 msgid "Print with USB"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:215\r
+#: Cura/gui/sceneView.py:245\r
 msgid "Slice engine log..."\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:229 Cura/gui/sceneView.py:780\r
+#: Cura/gui/sceneView.py:257 Cura/gui/sceneView.py:810\r
 msgid "Save toolpath"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:266\r
+#: Cura/gui/sceneView.py:296\r
 msgid "The slicing engine reported the following"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:266\r
+#: Cura/gui/sceneView.py:296\r
 msgid "Engine log..."\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:645\r
+#: Cura/gui/sceneView.py:675\r
 msgid "Delete object"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:646\r
+#: Cura/gui/sceneView.py:676\r
 msgid "Center on platform"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:647\r
+#: Cura/gui/sceneView.py:677\r
 msgid "Multiply object"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:648\r
+#: Cura/gui/sceneView.py:678\r
 msgid "Split object into parts"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:650\r
+#: Cura/gui/sceneView.py:680\r
 msgid "Dual extrusion merge"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:652\r
+#: Cura/gui/sceneView.py:682\r
 msgid "Delete all objects"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:777\r
+#: Cura/gui/sceneView.py:807\r
 msgid "Toolpath to SD"\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:1087\r
+#: Cura/gui/sceneView.py:1117\r
 msgid "Loading toolpath for visualization..."\r
 msgstr ""\r
 \r
-#: Cura/gui/sceneView.py:1138\r
+#: Cura/gui/sceneView.py:1168\r
 msgid "Overhang view not working due to lack of OpenGL shaders support."\r
 msgstr ""\r
 \r
@@ -1271,7 +1267,7 @@ msgstr ""
 \r
 #: Cura/util/profile.py:159 Cura/util/profile.py:160 Cura/util/profile.py:161\r
 #: Cura/util/profile.py:162 Cura/util/profile.py:163 Cura/util/profile.py:164\r
-msgid "Speed & Temperature"\r
+msgid "Speed and Temperature"\r
 msgstr ""\r
 \r
 #: Cura/util/profile.py:159\r
@@ -1319,6 +1315,18 @@ msgid ""
 "Temperature used for the heated printer bed. Set at 0 to pre-heat yourself."\r
 msgstr ""\r
 \r
+#: Cura/util/profile.py:165 Cura/util/profile.py:166\r
+msgid "None"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165\r
+msgid "Touching buildplate"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165\r
+msgid "Everywhere"\r
+msgstr ""\r
+\r
 #: Cura/util/profile.py:165 Cura/util/profile.py:166 Cura/util/profile.py:167\r
 #: Cura/util/profile.py:206 Cura/util/profile.py:207 Cura/util/profile.py:208\r
 msgid "Support"\r
@@ -1339,6 +1347,16 @@ msgid ""
 "Everywhere creates support even on top of parts of the model."\r
 msgstr ""\r
 \r
+#: Cura/util/profile.py:166 Cura/util/profile.py:212\r
+msgid "Brim"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:166 Cura/util/profile.py:213 Cura/util/profile.py:214\r
+#: Cura/util/profile.py:215 Cura/util/profile.py:216 Cura/util/profile.py:217\r
+#: Cura/util/profile.py:218\r
+msgid "Raft"\r
+msgstr ""\r
+\r
 #: Cura/util/profile.py:166\r
 msgid "Platform adhesion type"\r
 msgstr ""\r
@@ -1354,6 +1372,18 @@ msgid ""
 "(Note that enabling the brim or raft disables the skirt)"\r
 msgstr ""\r
 \r
+#: Cura/util/profile.py:167\r
+msgid "Both"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:167\r
+msgid "First extruder"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:167\r
+msgid "Second extruder"\r
+msgstr ""\r
+\r
 #: Cura/util/profile.py:167\r
 msgid "Support dual extrusion"\r
 msgstr ""\r
@@ -1739,10 +1769,6 @@ msgid ""
 "0.15mm gives a good seperation of the support material."\r
 msgstr ""\r
 \r
-#: Cura/util/profile.py:212\r
-msgid "Brim"\r
-msgstr ""\r
-\r
 #: Cura/util/profile.py:212\r
 msgid "Brim line amount"\r
 msgstr ""\r
@@ -1753,11 +1779,6 @@ msgid ""
 "sticks better, but this also makes your effective print area smaller."\r
 msgstr ""\r
 \r
-#: Cura/util/profile.py:213 Cura/util/profile.py:214 Cura/util/profile.py:215\r
-#: Cura/util/profile.py:216 Cura/util/profile.py:217 Cura/util/profile.py:218\r
-msgid "Raft"\r
-msgstr ""\r
-\r
 #: Cura/util/profile.py:213\r
 msgid "Extra margin (mm)"\r
 msgstr ""\r
@@ -2086,3 +2107,51 @@ msgid ""
 "then this then you cannot print multiple objects one for one. 60mm for an "\r
 "Ultimaker."\r
 msgstr ""\r
+\r
+#: Cura/util/profile.py:388\r
+#, python-format\r
+msgid "More flow then 150% is rare and usually not recommended."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:389\r
+#, python-format\r
+msgid "More flow then 50% is rare and usually not recommended."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:390\r
+#, python-format\r
+msgid ""\r
+"Thicker layers then %.2fmm (80%% nozzle size) usually give bad results and "\r
+"are not recommended."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:392\r
+msgid ""\r
+"It is highly unlikely that your machine can achieve a printing speed above "\r
+"150mm/s"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:394 Cura/util/profile.py:395 Cura/util/profile.py:396\r
+#: Cura/util/profile.py:397\r
+msgid "Temperatures above 260C could damage your machine, be careful!"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:398 Cura/util/profile.py:399 Cura/util/profile.py:400\r
+#: Cura/util/profile.py:401\r
+msgid ""\r
+"Are you sure your filament is that thick? Normal filament is around 3mm or "\r
+"1.75mm."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:402\r
+msgid ""\r
+"It is highly unlikely that your machine can achieve a travel speed above "\r
+"300mm/s"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:403\r
+#, python-format\r
+msgid ""\r
+"A bottom layer of more then %.2fmm (3/4 nozzle size) usually give bad "\r
+"results and is not recommended."\r
+msgstr ""\r
diff --git a/Cura/resources/locale/de/LC_MESSAGES/Cura.mo b/Cura/resources/locale/de/LC_MESSAGES/Cura.mo
new file mode 100644 (file)
index 0000000..eb73e7a
Binary files /dev/null and b/Cura/resources/locale/de/LC_MESSAGES/Cura.mo differ
diff --git a/Cura/resources/locale/de/LC_MESSAGES/Cura.po b/Cura/resources/locale/de/LC_MESSAGES/Cura.po
new file mode 100644 (file)
index 0000000..dd8b031
--- /dev/null
@@ -0,0 +1,2489 @@
+# Copyright (C) 2013
+# This file is distributed under the same license as the Cura package.
+# Ilya Kulakov &lt;kulakov.ilya@gmail.com&gt;, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Cura\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-10-01 15:36+0200\n"
+"PO-Revision-Date: 2013-10-01 15:37+0100\n"
+"Last-Translator: \n"
+"Language-Team: LANGUAGE &lt;LL@li.org&gt;\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.5.7\n"
+
+#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:524
+msgid "A new version of Cura is available, would you like to download?"
+msgstr ""
+"Eine neue Version von Cura ist verfügbar, möchten Sie diese herunterladen?"
+
+#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:524
+msgid "New version available"
+msgstr "Neue Version verfügbar"
+
+#: Cura/gui/configWizard.py:220
+msgid "Add new machine wizard"
+msgstr "Assistent zum Hinzufügen eines Geräts"
+
+#: Cura/gui/configWizard.py:222
+msgid "First time run wizard"
+msgstr "Assistent beim ersten Starten von Cura"
+
+#: Cura/gui/configWizard.py:223
+msgid "Welcome, and thanks for trying Cura!"
+msgstr "Willkommen und Danke, dass Sie Cura verwenden!"
+
+#: Cura/gui/configWizard.py:225
+msgid "This wizard will help you with the following steps:"
+msgstr "Dieser Assistent wird Ihnen bei den folgenden Schritten helfen:"
+
+#: Cura/gui/configWizard.py:226
+msgid "* Configure Cura for your machine"
+msgstr "* Cura für Ihr Gerät einrichten"
+
+#: Cura/gui/configWizard.py:227
+msgid "* Optionally upgrade your firmware"
+msgstr "* Firmware aktualisieren (optional)"
+
+#: Cura/gui/configWizard.py:228
+msgid "* Optionally check if your machine is working safely"
+msgstr "* Funktionsprüfung (optional)"
+
+#: Cura/gui/configWizard.py:229
+msgid "* Optionally level your printer bed"
+msgstr "* Drucktisch ausrichten (optional)"
+
+#: Cura/gui/configWizard.py:239
+msgid ""
+"RepRap machines are vastly different, and there is no\n"
+"default configuration in Cura for any of them."
+msgstr ""
+"RepRap-Geräte sind sehr verschieden. Es gibt deshalb keine\n"
+"Standard-Konfiguration in Cura für diese Geräte."
+
+#: Cura/gui/configWizard.py:240
+msgid ""
+"If you like a default profile for your machine added,\n"
+"then make an issue on github."
+msgstr ""
+"Wünschen Sie ein Standard-Profil für Ihr Gerät,\n"
+"bitte melden Sie sich via github."
+
+#: Cura/gui/configWizard.py:242
+msgid "You will have to manually install Marlin or Sprinter firmware."
+msgstr "Sie müssen die Marlin- oder Sprinter-Firmware manuell installieren."
+
+#: Cura/gui/configWizard.py:244
+msgid "Machine name"
+msgstr "Name des Geräts"
+
+#: Cura/gui/configWizard.py:245
+msgid "Machine width (mm)"
+msgstr "Breite des Geräts (mm)"
+
+#: Cura/gui/configWizard.py:246
+msgid "Machine depth (mm)"
+msgstr "Tiefe des Geräts (mm)"
+
+#: Cura/gui/configWizard.py:247
+msgid "Machine height (mm)"
+msgstr "Höhe der Maschine (mm)"
+
+#: Cura/gui/configWizard.py:248 Cura/util/profile.py:158
+msgid "Nozzle size (mm)"
+msgstr "Grösse der Druckdüse (mm)"
+
+#: Cura/gui/configWizard.py:249 Cura/util/profile.py:367
+msgid "Heated bed"
+msgstr "Beheizter Drucktisch"
+
+#: Cura/gui/configWizard.py:250
+msgid "Bed center is 0,0,0 (RoStock)"
+msgstr "Zentrum des Drucktischs ist 0,0,0 (RoStock)"
+
+#: Cura/gui/configWizard.py:270
+msgid "Select your machine"
+msgstr "Wählen Sie ihr Gerät aus"
+
+#: Cura/gui/configWizard.py:271
+msgid "What kind of machine do you have:"
+msgstr "Welchen Typ Maschine haben Sie:"
+
+#: Cura/gui/configWizard.py:278
+msgid "Other (Ex: RepRap)"
+msgstr "Andere (Ausser RepRap)"
+
+#: Cura/gui/configWizard.py:281
+msgid ""
+"The collection of anonymous usage information helps with the continued "
+"improvement of Cura."
+msgstr ""
+"Die Sammlung der anonymen Informationen zur Verwendung hilft bei der "
+"weiteren Entwicklung von Cura."
+
+#: Cura/gui/configWizard.py:282
+msgid ""
+"This does NOT submit your models online nor gathers any privacy related "
+"information."
+msgstr ""
+"Es werden KEINE Modelle und KEINE Personendaten gesammelt und/oder "
+"hochgeladen."
+
+#: Cura/gui/configWizard.py:283
+msgid "Submit anonymous usage information:"
+msgstr "Sende anonyme Informationen zur Verwendung:"
+
+#: Cura/gui/configWizard.py:284
+msgid "For full details see: http://wiki.ultimaker.com/Cura:stats"
+msgstr "Für mehr Informationen: http://wiki.ultimaker.com/Cura:stats"
+
+#: Cura/gui/configWizard.py:346
+msgid "Select upgraded parts you have"
+msgstr "Wählen Sie die vorhandenen "
+
+#: Cura/gui/configWizard.py:347
+msgid ""
+"To assist you in having better default settings for your Ultimaker\n"
+"Cura would like to know which upgrades you have in your machine."
+msgstr ""
+"Damit wir Cura für Ihren Ultimaker optimal einrichten können,\n"
+"benötigen wir Informationen zu den Upgrades welche an Ihren Gerät "
+"installiert sind."
+
+#: Cura/gui/configWizard.py:349
+msgid "Extruder drive upgrade"
+msgstr "Upgrade des Extruder-Antriebs"
+
+#: Cura/gui/configWizard.py:350
+msgid "Heated printer bed (self built)"
+msgstr "Beheizter Drucktisch (Eigenbau)"
+
+#: Cura/gui/configWizard.py:351
+msgid "Dual extrusion (experimental)"
+msgstr "Zwei Druckdüsen (experimentell)"
+
+#: Cura/gui/configWizard.py:353
+msgid ""
+"If you have an Ultimaker bought after october 2012 you will have the\n"
+"Extruder drive upgrade. If you do not have this upgrade,\n"
+"it is highly recommended to improve reliability."
+msgstr ""
+"Wenn Sie Ihren Ultimaker nach Oktober 2012 gekauft haben, werden Sie\n"
+"das Upgrade des Extruder-Antriebs besitzen. Sollten Ihr Gerät noch nicht "
+"über\n"
+"dieses Upgrade verfügen, empfehlen wir Ihnen dieses aus Gründen der "
+"Zuverlässigkeit."
+
+#: Cura/gui/configWizard.py:354
+msgid ""
+"This upgrade can be bought from the Ultimaker webshop\n"
+"or found on thingiverse as thing:26094"
+msgstr ""
+"Dieses Upgrade können Sie im Ultimaker-Webshop kaufen,\n"
+"oder bei Thingiverse als thing:26094 finden."
+
+#: Cura/gui/configWizard.py:373
+msgid "Upgrade Ultimaker Firmware"
+msgstr "Ultimaker Firmware aktualisieren"
+
+#: Cura/gui/configWizard.py:374
+msgid ""
+"Firmware is the piece of software running directly on your 3D printer.\n"
+"This firmware controls the step motors, regulates the temperature\n"
+"and ultimately makes your printer work."
+msgstr ""
+"Firmware ist der Software-Teil, welcher direkt auf Ihrem 3D-Drucker läuft.\n"
+"Diese Firmware steuert die Schrittmotoren, regelt die Temperatur.\n"
+"Sie ist das Herzstück Ihres 3D-Druckers."
+
+#: Cura/gui/configWizard.py:376
+msgid ""
+"The firmware shipping with new Ultimakers works, but upgrades\n"
+"have been made to make better prints, and make calibration easier."
+msgstr ""
+"Die Firmware welche mit Ihrem neuen Ultimaker ausgeliefert wird "
+"funktioniert.\n"
+"Updates ermöglichen aber bessere Druckresultate und eine einfache "
+"Kalibrierung."
+
+#: Cura/gui/configWizard.py:378
+msgid ""
+"Cura requires these new features and thus\n"
+"your firmware will most likely need to be upgraded.\n"
+"You will get the chance to do so now."
+msgstr ""
+"Cura benötigt diese neuen Funktionen und deshalb\n"
+"muss die Firmware Ihres Geräts aktualisiert werden.\n"
+"Sie können dies nun direkt erledigen."
+
+#: Cura/gui/configWizard.py:383
+msgid "Do not upgrade to this firmware if:"
+msgstr "Laden Sie diese Firmware nicht, wenn:"
+
+#: Cura/gui/configWizard.py:384
+msgid "* You have an older machine based on ATMega1280"
+msgstr "* Sie eine Ã¤ltere auf ATMega1280 basierende Maschine besitzen"
+
+#: Cura/gui/configWizard.py:385
+msgid "* Have other changes in the firmware"
+msgstr "* Sie andere Anpassungen in der Firmware vorgenommen haben"
+
+#: Cura/gui/configWizard.py:419
+msgid ""
+"It is a good idea to do a few sanity checks now on your Ultimaker.\n"
+"You can skip these if you know your machine is functional."
+msgstr ""
+"Wir empfehlen eine Reihe von Funktionstests Ihres Ultimakers.\n"
+"Sie können diese Tests Ã¼berspringen, wenn Ihr Gerät einwandfrei funktioniert."
+
+#: Cura/gui/configWizard.py:420
+msgid "Run checks"
+msgstr "Führe die Tests durch"
+
+#: Cura/gui/configWizard.py:420
+msgid "Skip checks"
+msgstr "Überspringe die Tests"
+
+#: Cura/gui/configWizard.py:424
+msgid "Communication:"
+msgstr "Kommunikation:"
+
+#: Cura/gui/configWizard.py:425
+msgid "Temperature:"
+msgstr "Temperatur:"
+
+#: Cura/gui/configWizard.py:426
+msgid "Endstops:"
+msgstr "Endstopps:"
+
+#: Cura/gui/configWizard.py:431
+msgid "Show error log"
+msgstr "Zeige den Fehlerbericht"
+
+#: Cura/gui/configWizard.py:465
+msgid "Connecting to machine."
+msgstr "Verbinde zur Maschine."
+
+#: Cura/gui/configWizard.py:486
+msgid "Cooldown before temperature check."
+msgstr "Abkühlen vor dem Temperaturtest"
+
+#: Cura/gui/configWizard.py:492 Cura/gui/configWizard.py:499
+msgid "Checking the heater and temperature sensor."
+msgstr "Überprüfe das Heizelement und den Temperatursensor."
+
+#: Cura/gui/configWizard.py:510
+msgid "Please make sure none of the endstops are pressed."
+msgstr "Bitte stellen Sie sicher, dass keiner der Endstopps gedrückt ist."
+
+#: Cura/gui/configWizard.py:523
+msgid "Temperature measurement FAILED!"
+msgstr "Temperaturmessung FEHLGESCHLAGEN!"
+
+#: Cura/gui/configWizard.py:528
+#, python-format
+msgid "Head temperature: %d"
+msgstr "Temperatur Druckkopf: %d"
+
+#: Cura/gui/configWizard.py:535 Cura/gui/configWizard.py:544
+#, python-format
+msgid "Communication State: %s"
+msgstr "Kommunikations-Status: %s"
+
+#: Cura/gui/configWizard.py:538
+msgid "Failed to establish connection with the printer."
+msgstr "Konnte keine Verbindung zum Drucker aufbauen."
+
+#: Cura/gui/configWizard.py:583
+msgid "Please press the right X endstop."
+msgstr "Bitte drücken Sie den rechten X Endstopp."
+
+#: Cura/gui/configWizard.py:588
+msgid "Please press the left X endstop."
+msgstr "Bitte drücken Sie den linken X Endstopp."
+
+#: Cura/gui/configWizard.py:593
+msgid "Please press the front Y endstop."
+msgstr "Bitte drücken Sie den vorderen Y Endstopp."
+
+#: Cura/gui/configWizard.py:598
+msgid "Please press the back Y endstop."
+msgstr "Bitte drücken Sie den hinteren Y Endstopp."
+
+#: Cura/gui/configWizard.py:603
+msgid "Please press the top Z endstop."
+msgstr "Bitte drücken Sie den oberen Z Endstopp."
+
+#: Cura/gui/configWizard.py:608
+msgid "Please press the bottom Z endstop."
+msgstr "Bitte drücken Sie den unteren Z Endstopp."
+
+#: Cura/gui/configWizard.py:614
+msgid "Checkup finished"
+msgstr "Funktionstests abgeschlossen"
+
+#: Cura/gui/configWizard.py:657
+msgid "Calibrating the Steps Per E requires some manual actions."
+msgstr "Das Kalibrieren der Schritte pro E benötigt manuelle Aktionen."
+
+#: Cura/gui/configWizard.py:658
+msgid "First remove any filament from your machine."
+msgstr "Entfernen Sie zunächst alles Druckmaterial aus Ihrem Gerät."
+
+#: Cura/gui/configWizard.py:659
+msgid ""
+"Next put in your filament so the tip is aligned with the\n"
+"top of the extruder drive."
+msgstr ""
+"Als nächstes schieben Sie das Druckmaterial soweit hinten hinein,\n"
+"bis die Spitze auf der selben Höhe wie das obere Ende des Extruder-"
+"Mechanismus ist."
+
+#: Cura/gui/configWizard.py:660
+msgid "We'll push the filament 100mm"
+msgstr "Druckmaterial um 100mm vorschieben"
+
+#: Cura/gui/configWizard.py:661
+msgid "Extrude 100mm filament"
+msgstr "100mm Druckmaterial extrudieren"
+
+#: Cura/gui/configWizard.py:662
+msgid ""
+"Now measure the amount of extruded filament:\n"
+"(this can be more or less then 100mm)"
+msgstr ""
+"Messen Sie nun bitte die Menge des extudierten Druckmaterials:\n"
+"(kann kürzer oder länger als 100mm sein)"
+
+#: Cura/gui/configWizard.py:663
+msgid "Save"
+msgstr "Speichern"
+
+#: Cura/gui/configWizard.py:664
+msgid "This results in the following steps per E:"
+msgstr "Dies bedeutet folgende Anzahl Schritte pro E:"
+
+#: Cura/gui/configWizard.py:666
+msgid "You can repeat these steps to get better calibration."
+msgstr ""
+"Sie können diese Schritte wiederholen, um eine bessere Kalibrierung zu "
+"erhalten."
+
+#: Cura/gui/configWizard.py:669
+msgid ""
+"If you still have filament in your printer which needs\n"
+"heat to remove, press the heat up button below:"
+msgstr ""
+"Möchten Sie im Drucker verbliebenes Druckmaterial entfernen,\n"
+"drücken Sie bitte den Knopf unten, um die Druckspitze dafür aufzuheizen."
+
+#: Cura/gui/configWizard.py:670
+msgid "Heatup for filament removal"
+msgstr "Aufheizen zum Entfernen des Druckmaterials"
+
+#: Cura/gui/configWizard.py:693 Cura/gui/configWizard.py:725
+msgid ""
+"Error: Failed to open serial port to machine\n"
+"If this keeps happening, try disconnecting and reconnecting the USB cable"
+msgstr ""
+"Fehler: Serieller Port zum Gerät konnte nicht geöffnet werden\n"
+"Besteht dieses Problem wiederholt, stecken Sie das USB-Kabel neu ein."
+
+#: Cura/gui/firmwareInstall.py:39
+msgid ""
+"I am sorry, but Cura does not ship with a default firmware for your machine "
+"configuration."
+msgstr ""
+"Bitte entschuldigen Sie, Cura enthält keine Standard-Firmware für Ihre "
+"Geräte-Konfiguration."
+
+#: Cura/gui/firmwareInstall.py:39 Cura/gui/firmwareInstall.py:98
+#: Cura/gui/mainWindow.py:459
+msgid "Firmware update"
+msgstr "Firmware-Aktualisierung"
+
+#: Cura/gui/firmwareInstall.py:49
+msgid "OK"
+msgstr "OK"
+
+#: Cura/gui/firmwareInstall.py:68
+msgid "Reading firmware..."
+msgstr "Lese Firmware..."
+
+#: Cura/gui/firmwareInstall.py:70
+msgid "Connecting to machine..."
+msgstr "Verbinde zum Gerät..."
+
+#: Cura/gui/firmwareInstall.py:87
+msgid "Uploading firmware..."
+msgstr "Hochladen der Firmware..."
+
+#: Cura/gui/firmwareInstall.py:90
+#, python-format
+msgid ""
+"Done!\n"
+"Installed firmware: %s"
+msgstr ""
+"Geschafft!\n"
+"Firmware installiert: %s"
+
+#: Cura/gui/firmwareInstall.py:92
+msgid "Failed to write firmware.\n"
+msgstr "Schreiben der Firmware fehlgeschlagen.\n"
+
+#: Cura/gui/firmwareInstall.py:97
+msgid ""
+"Failed to find machine for firmware upgrade\n"
+"Is your machine connected to the PC?"
+msgstr ""
+"Konnte Gerät für Firmware-Aktualisierung nicht finden\n"
+"Ist das Gerät mit dem PC verbunden?"
+
+#: Cura/gui/mainWindow.py:56
+msgid "Load model file...\tCTRL+L"
+msgstr "Lade Modell-Datei...\tCTRL+L"
+
+#: Cura/gui/mainWindow.py:58
+msgid "Save model...\tCTRL+S"
+msgstr "Speichere Modell...\tCTRL+S"
+
+#: Cura/gui/mainWindow.py:60
+msgid "Clear platform"
+msgstr "Leere Drucktisch"
+
+#: Cura/gui/mainWindow.py:64
+msgid "Print...\tCTRL+P"
+msgstr "Drucken...\tCTRL+P"
+
+#: Cura/gui/mainWindow.py:66 Cura/gui/sceneView.py:244
+msgid "Save GCode..."
+msgstr "Speichere GCode..."
+
+#: Cura/gui/mainWindow.py:68
+msgid "Show slice engine log..."
+msgstr "Zeige Protokoll der Slicing-Engine..."
+
+#: Cura/gui/mainWindow.py:72
+msgid "Open Profile..."
+msgstr "Öffne Profil..."
+
+#: Cura/gui/mainWindow.py:75
+msgid "Save Profile..."
+msgstr "Speichere Profil..."
+
+#: Cura/gui/mainWindow.py:78
+msgid "Load Profile from GCode..."
+msgstr "Lade Profil aus GCode..."
+
+#: Cura/gui/mainWindow.py:82
+msgid "Reset Profile to default"
+msgstr "Profil auf Standard zurücksetzen"
+
+#: Cura/gui/mainWindow.py:87
+msgid "Preferences...\tCTRL+,"
+msgstr "Voreinstellungen...\tCTRL+,"
+
+#: Cura/gui/mainWindow.py:89
+msgid "Machine settings..."
+msgstr "Geräte-Einstellungen..."
+
+#: Cura/gui/mainWindow.py:95
+msgid "Recent Model Files"
+msgstr "Letzte Modelle"
+
+#: Cura/gui/mainWindow.py:102
+msgid "Recent Profile Files"
+msgstr "Letzte Profile"
+
+#: Cura/gui/mainWindow.py:108
+msgid "Quit"
+msgstr "Beenden"
+
+#: Cura/gui/mainWindow.py:110
+#, fuzzy
+msgid "File"
+msgstr "Füllung"
+
+#: Cura/gui/mainWindow.py:114
+msgid "Switch to quickprint..."
+msgstr "Wechseln zum Schnelldruck..."
+
+#: Cura/gui/mainWindow.py:118
+msgid "Switch to full settings..."
+msgstr "Wechseln zum Expertenmodus..."
+
+#: Cura/gui/mainWindow.py:128
+#, fuzzy
+msgid "Minecraft map import..."
+msgstr "Minecraft Import..."
+
+#: Cura/gui/mainWindow.py:132
+msgid "PID Debugger..."
+msgstr "PID Debugger..."
+
+#: Cura/gui/mainWindow.py:135
+msgid "Copy profile to clipboard"
+msgstr "Kopiere Profil in Zwischenablage"
+
+#: Cura/gui/mainWindow.py:137
+msgid "Tools"
+msgstr "Werkzeuge"
+
+#: Cura/gui/mainWindow.py:143 Cura/util/profile.py:158
+msgid "Machine"
+msgstr "Maschine"
+
+#: Cura/gui/mainWindow.py:146
+msgid "Open expert settings..."
+msgstr "Öffne Experten-Einstellungen..."
+
+#: Cura/gui/mainWindow.py:150
+msgid "Run first run wizard..."
+msgstr "Erster-Start Assistent von Cura aufrufen..."
+
+#: Cura/gui/mainWindow.py:152
+msgid "Run bed leveling wizard..."
+msgstr "Drucktisch-Ausrichtung Assistent aufrufen..."
+
+#: Cura/gui/mainWindow.py:155
+msgid "Run head offset wizard..."
+msgstr "Assistent für den Druckkopfversatz aufrufen..."
+
+#: Cura/gui/mainWindow.py:158
+msgid "Expert"
+msgstr "Experte"
+
+#: Cura/gui/mainWindow.py:161
+msgid "Online documentation..."
+msgstr "Online-Dokumentation..."
+
+#: Cura/gui/mainWindow.py:163
+msgid "Report a problem..."
+msgstr "Fehler melden..."
+
+#: Cura/gui/mainWindow.py:165
+msgid "Check for update..."
+msgstr "Prüfe auf Update..."
+
+#: Cura/gui/mainWindow.py:167
+msgid "Open YouMagine website..."
+msgstr "Website YouMagine Ã¶ffnen..."
+
+#: Cura/gui/mainWindow.py:169
+msgid "About Cura..."
+msgstr "Über Cura..."
+
+#: Cura/gui/mainWindow.py:171
+msgid "Help"
+msgstr "Hilfe"
+
+#: Cura/gui/mainWindow.py:391
+msgid "Add new machine..."
+msgstr "Neue Maschine hinzufügen..."
+
+#: Cura/gui/mainWindow.py:396
+msgid "Install custom firmware"
+msgstr "Installiere benutzerdefinierte Firmware"
+
+#: Cura/gui/mainWindow.py:398
+msgid "Install default Marlin firmware"
+msgstr "Installiere Standard Marlin Firmware"
+
+#: Cura/gui/mainWindow.py:402
+msgid "Select profile file to load"
+msgstr "Wählen Sie die Profil-Datei zum Laden"
+
+#: Cura/gui/mainWindow.py:414
+msgid "Select gcode file to load profile from"
+msgstr "Wählen Sie die GCode-Datei zum Laden des Profils"
+
+#: Cura/gui/mainWindow.py:427
+msgid ""
+"No profile found in GCode file.\n"
+"This feature only works with GCode files made by Cura 12.07 or newer."
+msgstr ""
+"Kein Profil in der GCode-Datei gefunden.\n"
+"Diese Funktion ist nur bei GCode-Dateien verfügbar, welche mit Cura ab "
+"Version 12.07 erstellt wurden."
+
+#: Cura/gui/mainWindow.py:427
+msgid "Profile load error"
+msgstr "Fehler beim Laden des Profils"
+
+#: Cura/gui/mainWindow.py:431
+msgid "Select profile file to save"
+msgstr "Wählen Sie die Profil-Datei zum Speichern aus"
+
+#: Cura/gui/mainWindow.py:439
+msgid ""
+"This will reset all profile settings to defaults.\n"
+"Unless you have saved your current profile, all settings will be lost!\n"
+"Do you really want to reset?"
+msgstr ""
+"Dieser Vorgang setzt alle Profileinstellungen auf die Standardwerte zurück.\n"
+"Alle Einstellungen die nicht in einem Profil gespeichert wurden, gehen "
+"verloren!\n"
+"Wollen Sie die Profil-Einstellungen wirklich zurücksetzen?"
+
+#: Cura/gui/mainWindow.py:439
+msgid "Profile reset"
+msgstr "Profil zurücksetzen"
+
+#: Cura/gui/mainWindow.py:459
+msgid ""
+"Warning: Installing a custom firmware does not guarantee that you machine "
+"will function correctly, and could damage your machine."
+msgstr ""
+"Warnung: Die Installation einer benutzerdefinierten Firmware garantiert "
+"nicht automatisch die Funktionstüchtigkeit ihres Geräts, und kann zu "
+"Beschädigungen an Ihrem Gerät führen."
+
+#: Cura/gui/mainWindow.py:460
+msgid "Open firmware to upload"
+msgstr "Firmware zum Hochladen auswählen"
+
+#: Cura/gui/mainWindow.py:527
+msgid "You are running the latest version of Cura!"
+msgstr "Sie verwenden die aktuelle Version von Cura!"
+
+#: Cura/gui/mainWindow.py:527
+msgid "Awesome!"
+msgstr "Sehr gut!"
+
+#: Cura/gui/mainWindow.py:583
+msgid "Plugins"
+msgstr "Plugins"
+
+#: Cura/gui/pluginPanel.py:26
+msgid "Plugins:"
+msgstr "Plugins:"
+
+#: Cura/gui/pluginPanel.py:30
+msgid "Open plugin location"
+msgstr "Öffne Plugin-Verzeichnis"
+
+#: Cura/gui/pluginPanel.py:31
+msgid "Enabled plugins"
+msgstr "Plugins einschalten"
+
+#: Cura/gui/pluginPanel.py:133
+msgid "You need to select a plugin before you can add anything."
+msgstr "Bitte wählen Sie zunächst das gewünschte Plugin aus."
+
+#: Cura/gui/pluginPanel.py:133
+msgid "Error: no plugin selected"
+msgstr "Fehler: Kein Plugin ausgewählt"
+
+#: Cura/gui/preferencesDialog.py:24
+msgid "Colours"
+msgstr "Farben"
+
+#: Cura/gui/preferencesDialog.py:29
+msgid "Filament settings"
+msgstr "Druckmaterial-Einstellungen"
+
+#: Cura/gui/preferencesDialog.py:39
+msgid "Cura settings"
+msgstr "Cura-Einstellungen"
+
+#: Cura/gui/preferencesDialog.py:73
+msgid "Machine settings"
+msgstr "Maschinen-Einstellungen"
+
+#: Cura/gui/preferencesDialog.py:82
+msgid "Printer head size"
+msgstr "Grösse des Druckkopfs"
+
+#: Cura/gui/preferencesDialog.py:90
+#, python-format
+msgid "Extruder %d"
+msgstr "Extruder %d"
+
+#: Cura/gui/preferencesDialog.py:94
+msgid "Communication settings"
+msgstr "Kommunikations-Einstellungen"
+
+#: Cura/gui/preferencesDialog.py:137
+msgid "Cannot remove the last machine configuration in Cura"
+msgstr "Kann die letzte Gerätekonfiguration nicht aus Cura entfernen"
+
+#: Cura/gui/preferencesDialog.py:137
+msgid "Machine remove error"
+msgstr "Fehler: Gerät entfernen"
+
+#: Cura/gui/printWindow.py:129
+msgid "Printing"
+msgstr "Drucken"
+
+#: Cura/gui/printWindow.py:158
+msgid "Statistics"
+msgstr "Statistik"
+
+#: Cura/gui/printWindow.py:163
+msgid ""
+"Your computer is running on battery power.\n"
+"Connect your computer to AC power or your print might not finish."
+msgstr ""
+"Ihr Computer läuft mit Batterie-Strom.\n"
+"Schliessen Sie Ihren Computer ans Stromnetz an, oder Ihr Druck kann "
+"möglicherweise nicht fertiggestellt werden."
+
+#: Cura/gui/printWindow.py:174
+msgid ""
+"Filament: ####.##m #.##g\n"
+"Estimated print time: #####:##\n"
+"Machine state:\n"
+"Detecting baudrateXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
+msgstr ""
+"Druckmaterial: ####.##m #.##g\n"
+"Geschätzte Druckzeit: #####:##\n"
+"Gerätestatus:\n"
+"Ermittle BaudrateXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
+
+#: Cura/gui/printWindow.py:179
+msgid "Connect"
+msgstr "Verbinden"
+
+#: Cura/gui/printWindow.py:181 Cura/gui/sceneView.py:65
+#: Cura/gui/sceneView.py:804
+msgid "Print"
+msgstr "Drucken"
+
+#: Cura/gui/printWindow.py:182 Cura/gui/printWindow.py:419
+msgid "Pause"
+msgstr "Pause"
+
+#: Cura/gui/printWindow.py:183
+msgid "Cancel print"
+msgstr "Druck abbrechen"
+
+#: Cura/gui/printWindow.py:184
+msgid "Error log"
+msgstr "Fehlerbericht"
+
+#: Cura/gui/printWindow.py:205
+msgid "BedTemp:"
+msgstr "TischTemp:"
+
+#: Cura/gui/printWindow.py:213
+msgid "Temp:"
+msgstr "Temp:"
+
+#: Cura/gui/printWindow.py:261
+msgid "Jog"
+msgstr "Steuerung"
+
+#: Cura/gui/printWindow.py:276
+msgid "Outer wall:"
+msgstr "Aussenwand:"
+
+#: Cura/gui/printWindow.py:279
+msgid "Inner wall:"
+msgstr "Innenwand:"
+
+#: Cura/gui/printWindow.py:282
+msgid "Fill:"
+msgstr "Füllung:"
+
+#: Cura/gui/printWindow.py:285
+msgid "Support:"
+msgstr "Stützen:"
+
+#: Cura/gui/printWindow.py:289 Cura/util/profile.py:183
+#: Cura/util/profile.py:184 Cura/util/profile.py:185
+msgid "Speed"
+msgstr "Geschwindigkeit"
+
+#: Cura/gui/printWindow.py:307
+msgid "Term"
+msgstr "Terminal"
+
+#: Cura/gui/printWindow.py:314
+msgid "Enable timelapse movie recording"
+msgstr "Aktiviere Zeitraffer-Aufnahmen"
+
+#: Cura/gui/printWindow.py:328
+msgid "Show preview"
+msgstr "Vorschau"
+
+#: Cura/gui/printWindow.py:334
+msgid "Camera"
+msgstr "Kamera"
+
+#: Cura/gui/printWindow.py:417
+msgid "Resume"
+msgstr "Fortsetzen"
+
+#: Cura/gui/printWindow.py:434
+msgid "Loading gcode...\n"
+msgstr "Lade Gcode...\n"
+
+#: Cura/gui/printWindow.py:436
+#, python-format
+msgid "Filament: %(amount).2fm %(weight).2fg\n"
+msgstr "Druckmaterial: %(amount).2fm %(weight).2fg\n"
+
+#: Cura/gui/printWindow.py:439
+#, python-format
+msgid "Filament cost: %s\n"
+msgstr "Kosten Druckmaterial: %s\n"
+
+#: Cura/gui/sceneView.py:64
+msgid "Load"
+msgstr "Laden"
+
+#: Cura/gui/sceneView.py:69
+msgid "Rotate"
+msgstr "Drehe"
+
+#: Cura/gui/sceneView.py:70
+msgid "Scale"
+msgstr "Skaliere"
+
+#: Cura/gui/sceneView.py:71
+msgid "Mirror"
+msgstr "Spiegle"
+
+#: Cura/gui/sceneView.py:73 Cura/gui/sceneView.py:76
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#: Cura/gui/sceneView.py:74
+msgid "Lay flat"
+msgstr "Flach legen"
+
+#: Cura/gui/sceneView.py:77
+msgid "To max"
+msgstr "Maximum"
+
+#: Cura/gui/sceneView.py:79
+msgid "Mirror X"
+msgstr "Spiegle X"
+
+#: Cura/gui/sceneView.py:80
+msgid "Mirror Y"
+msgstr "Spiegle Y"
+
+#: Cura/gui/sceneView.py:81
+msgid "Mirror Z"
+msgstr "Spiegle Z"
+
+#: Cura/gui/sceneView.py:89
+msgid "Scale X"
+msgstr "Skalierung X"
+
+#: Cura/gui/sceneView.py:91
+msgid "Scale Y"
+msgstr "Skalierung Y"
+
+#: Cura/gui/sceneView.py:93
+msgid "Scale Z"
+msgstr "Skalierung Z"
+
+#: Cura/gui/sceneView.py:95
+msgid "Size X (mm)"
+msgstr "Grösse X (mm)"
+
+#: Cura/gui/sceneView.py:97
+msgid "Size Y (mm)"
+msgstr "Grösse Y (mm)"
+
+#: Cura/gui/sceneView.py:99
+msgid "Size Z (mm)"
+msgstr "Grösse Z (mm)"
+
+#: Cura/gui/sceneView.py:101
+msgid "Uniform scale"
+msgstr "Proportional"
+
+#: Cura/gui/sceneView.py:104
+msgid "View mode"
+msgstr "Ansicht"
+
+#: Cura/gui/sceneView.py:104
+msgid "Normal"
+msgstr "Normal"
+
+#: Cura/gui/sceneView.py:104
+msgid "Overhang"
+msgstr "Überhänge"
+
+#: Cura/gui/sceneView.py:104
+msgid "Transparent"
+msgstr "Transparent"
+
+#: Cura/gui/sceneView.py:104
+msgid "X-Ray"
+msgstr "Röntgen"
+
+#: Cura/gui/sceneView.py:104
+msgid "Layers"
+msgstr "Schichten"
+
+#: Cura/gui/sceneView.py:107
+msgid "Share on YouMagine"
+msgstr "Teile auf YouMagine"
+
+#: Cura/gui/sceneView.py:198
+msgid "Open 3D model"
+msgstr "Öffne 3D-Modell"
+
+#: Cura/gui/sceneView.py:213
+msgid "Save 3D model"
+msgstr "Speichere 3D-Modell"
+
+#: Cura/gui/sceneView.py:243
+msgid "Print with USB"
+msgstr "Drucke via USB"
+
+#: Cura/gui/sceneView.py:245
+msgid "Slice engine log..."
+msgstr "Bericht der Slicing-Engine..."
+
+#: Cura/gui/sceneView.py:257 Cura/gui/sceneView.py:810
+msgid "Save toolpath"
+msgstr "Speichere Maschinencode"
+
+#: Cura/gui/sceneView.py:296
+msgid "The slicing engine reported the following"
+msgstr "Die Slicing-Engine meldete folgendes"
+
+#: Cura/gui/sceneView.py:296
+msgid "Engine log..."
+msgstr "Bericht der Engine..."
+
+#: Cura/gui/sceneView.py:675
+msgid "Delete object"
+msgstr "Lösche Objekt"
+
+#: Cura/gui/sceneView.py:676
+msgid "Center on platform"
+msgstr "Auf Plattform zentrieren"
+
+#: Cura/gui/sceneView.py:677
+msgid "Multiply object"
+msgstr "Vervielfache Objekt"
+
+#: Cura/gui/sceneView.py:678
+msgid "Split object into parts"
+msgstr "Teile Objekt auf"
+
+#: Cura/gui/sceneView.py:680
+msgid "Dual extrusion merge"
+msgstr "Doppelextrusion Verbindung"
+
+#: Cura/gui/sceneView.py:682
+msgid "Delete all objects"
+msgstr "Lösche alle Objekte"
+
+#: Cura/gui/sceneView.py:807
+msgid "Toolpath to SD"
+msgstr "Maschinencode auf SD-Karte"
+
+#: Cura/gui/sceneView.py:1117
+msgid "Loading toolpath for visualization..."
+msgstr "Lade Maschinencode zur Visualisierung..."
+
+#: Cura/gui/sceneView.py:1168
+msgid "Overhang view not working due to lack of OpenGL shaders support."
+msgstr ""
+"Die Ãœberhang-Ansicht funktioniert nicht, da auf Ihrem Computer keine OpenGL "
+"Shader unterstützt werden."
+
+#: Cura/gui/simpleMode.py:20
+msgid "High quality print"
+msgstr "Hohe Qualität"
+
+#: Cura/gui/simpleMode.py:21
+msgid "Normal quality print"
+msgstr "Normale Qualität"
+
+#: Cura/gui/simpleMode.py:22
+msgid "Fast low quality print"
+msgstr "Schlechte Qualität"
+
+#: Cura/gui/simpleMode.py:23
+msgid "Thin walled cup or vase"
+msgstr "Dünnwandige Schale oder Vase"
+
+#: Cura/gui/simpleMode.py:33
+msgid "Print support structure"
+msgstr "Stützmaterial drucken"
+
+#: Cura/gui/simpleMode.py:38
+msgid "Select a print type:"
+msgstr "Druckqualität wählen:"
+
+#: Cura/gui/simpleMode.py:48
+msgid "Material:"
+msgstr "Material:"
+
+#: Cura/gui/simpleMode.py:52
+msgid "Diameter:"
+msgstr "Durchmesser:"
+
+#: Cura/gui/simpleMode.py:58
+msgid "Other:"
+msgstr "Weiteres:"
+
+#: Cura/gui/simpleMode.py:119
+msgid "Exterior Only"
+msgstr "Nur Aussen"
+
+#: Cura/gui/tools/batchRun.py:14
+msgid "Cura - Batch run"
+msgstr "Cura - Stapelverarbeitung"
+
+#: Cura/gui/tools/batchRun.py:29
+msgid "Add"
+msgstr "Hinzufügen"
+
+#: Cura/gui/tools/batchRun.py:30
+msgid "Remove"
+msgstr "Entfernen"
+
+#: Cura/gui/tools/batchRun.py:31
+msgid "Prepare all"
+msgstr "Alle vorbereiten"
+
+#: Cura/gui/tools/batchRun.py:47
+msgid "Open file to batch prepare"
+msgstr "Modell zur Stapelverarbeitung hinzufügen"
+
+#: Cura/gui/tools/batchRun.py:134
+#, python-format
+msgid "Building: %d                           "
+msgstr "Verarbeite: %d"
+
+#: Cura/gui/tools/batchRun.py:137
+#, python-format
+msgid "Done: 0/%d                           "
+msgstr "Erledigt: 0/%d"
+
+#: Cura/gui/tools/batchRun.py:140
+msgid "Abort"
+msgstr "Abbrechen"
+
+#: Cura/gui/tools/batchRun.py:163 Cura/gui/tools/batchRun.py:233
+msgid "Close"
+msgstr "Schliessen"
+
+#: Cura/gui/tools/batchRun.py:187
+#, python-format
+msgid "Build: %d models"
+msgstr "Verarbeite: %d Modelle"
+
+#: Cura/gui/tools/batchRun.py:188
+#, python-format
+msgid ""
+"\n"
+"Slicing took: %(hours)02d:%(minutes)02d"
+msgstr ""
+"\n"
+"Slicen dauerte: %(hours)02d:%(minutes)02d"
+
+#: Cura/gui/tools/batchRun.py:198
+#, python-format
+msgid "Building: [%(index)d/%(size)d]"
+msgstr "Verarbeite: [%(index)d/%(size)d]"
+
+#: Cura/gui/tools/batchRun.py:214
+msgid "Aborted by user."
+msgstr "Abgebrochen durch den Benutzer."
+
+#: Cura/gui/tools/batchRun.py:228
+#, python-format
+msgid "Done %(index)d/%(size)d"
+msgstr "Erledigt %(index)d/%(size)d"
+
+#: Cura/gui/tools/batchRun.py:236
+msgid "To SDCard"
+msgstr "Auf SDKarte"
+
+#: Cura/gui/tools/youmagineGui.py:79
+msgid "Checking token"
+msgstr "Prüfe Element"
+
+#: Cura/gui/tools/youmagineGui.py:83
+msgid "Failed to contact YouMagine.com"
+msgstr "Verbindung zu YouMagine.com fehlgeschlagen"
+
+#: Cura/gui/tools/youmagineGui.py:83 Cura/gui/tools/youmagineGui.py:116
+#: Cura/gui/tools/youmagineGui.py:133 Cura/gui/tools/youmagineGui.py:140
+#: Cura/gui/tools/youmagineGui.py:148 Cura/gui/tools/youmagineGui.py:153
+msgid "YouMagine error."
+msgstr "YouMagine Fehler."
+
+#: Cura/gui/tools/youmagineGui.py:100
+msgid "Cura is now authorized to share on YouMagine"
+msgstr "Cura ist nun berechtigt, Modell nach YouMagine hochzuladen"
+
+#: Cura/gui/tools/youmagineGui.py:100
+msgid "YouMagine."
+msgstr "YouMagine."
+
+#: Cura/gui/tools/youmagineGui.py:112
+msgid "Creating new design on YouMagine..."
+msgstr "Erstelle ein neues Design bei YouMagine..."
+
+#: Cura/gui/tools/youmagineGui.py:116
+msgid "Failed to create a design, nothing uploaded!"
+msgstr "Erstellen des Designs fehlgeschlagen, es wurde nichts hochgeladen!"
+
+#: Cura/gui/tools/youmagineGui.py:120
+#, python-format
+msgid "Building model %s..."
+msgstr "Modell verarbeiten %s..."
+
+#: Cura/gui/tools/youmagineGui.py:131
+#, python-format
+msgid "Uploading model %s..."
+msgstr "Modell hochladen %s..."
+
+#: Cura/gui/tools/youmagineGui.py:133 Cura/gui/tools/youmagineGui.py:140
+#: Cura/gui/tools/youmagineGui.py:148
+#, python-format
+msgid "Failed to upload %s!"
+msgstr "Hochladen fehlgeschlagen %s!"
+
+#: Cura/gui/tools/youmagineGui.py:137
+#, python-format
+msgid "Uploading file %s..."
+msgstr "Datei hochladen %s..."
+
+#: Cura/gui/tools/youmagineGui.py:145
+#, python-format
+msgid "Uploading image %s..."
+msgstr "Bild hochladen %s..."
+
+#: Cura/gui/tools/youmagineGui.py:153
+msgid "Failed to upload snapshot!"
+msgstr "Schnappschuss hochladen fehlgeschlagen!"
+
+#: Cura/gui/tools/youmagineGui.py:158
+msgid "Publishing design..."
+msgstr "Veröffentliche das Design..."
+
+#: Cura/gui/tools/youmagineGui.py:230
+msgid "Request authorization from YouMagine"
+msgstr "Fordere Genehmigung von YouMagine an"
+
+#: Cura/gui/tools/youmagineGui.py:231
+msgid "Paste token here"
+msgstr "Fügen Sie das Token hier ein"
+
+#: Cura/gui/tools/youmagineGui.py:237
+msgid ""
+"To share your designs on YouMagine\n"
+"you need an account on YouMagine.com\n"
+"and authorize Cura to access your account."
+msgstr ""
+"Um Ihre Designs auf YouMagine teilen zu können,\n"
+"benötigen Sie ein YouMagine.com Benutzerkonto und\n"
+"müssen Cura erlauben, auf Ihr Konto zuzugreiffen."
+
+#: Cura/gui/tools/youmagineGui.py:239
+msgid ""
+"This will open a browser window where you can\n"
+"authorize Cura to access your YouMagine account.\n"
+"You can revoke access at any time\n"
+"from YouMagine.com"
+msgstr ""
+"Es wird ein Browserfenster geöffnet, in dem Sie\n"
+"Cura den Zugriff auf Ihr YouMagine Benutzerkonto gewähren können.\n"
+"Sie können Cura diese Berechtigung jeder Zeit von Ihrem Konto auf\n"
+"YouMagine.com wieder entziehen."
+
+#: Cura/gui/tools/youmagineGui.py:274
+msgid "Design name"
+msgstr "Name des Designs"
+
+#: Cura/gui/tools/youmagineGui.py:278
+msgid "Publish after upload"
+msgstr "Nach dem Hochladen veröffentlichen"
+
+#: Cura/gui/tools/youmagineGui.py:279
+msgid "Share!"
+msgstr "Teile!"
+
+#: Cura/gui/tools/youmagineGui.py:287
+msgid "Add..."
+msgstr "Hinzufügen..."
+
+#: Cura/gui/tools/youmagineGui.py:289
+msgid "Webcam..."
+msgstr "Webcam..."
+
+#: Cura/gui/tools/youmagineGui.py:297
+msgid ""
+"Directly publish the design after uploading.\n"
+"Without this check the design will not be public\n"
+"until you publish it yourself on YouMagine.com"
+msgstr ""
+"Design direkt nach dem Hochladen veröffentlichen.\n"
+"Ohne diese Einstellung wird Ihr Design auf YouMagine.com erst Ã¶ffentlich,\n"
+"wenn Sie es dort später eigenhändig veröffentlichen."
+
+#: Cura/gui/tools/youmagineGui.py:303
+msgid "Design name:"
+msgstr "Name des Designs:"
+
+#: Cura/gui/tools/youmagineGui.py:305
+msgid "Description:"
+msgstr "Beschreibung:"
+
+#: Cura/gui/tools/youmagineGui.py:307
+msgid "Category:"
+msgstr "Kategorie:"
+
+#: Cura/gui/tools/youmagineGui.py:309
+msgid "License:"
+msgstr "Lizenz:"
+
+#: Cura/gui/tools/youmagineGui.py:312
+msgid "Images:"
+msgstr "Bilder:"
+
+#: Cura/gui/tools/youmagineGui.py:315
+msgid "Related design files:"
+msgstr "Verbundene Design-Dateien:"
+
+#: Cura/gui/tools/youmagineGui.py:338
+msgid "The name cannot be empty"
+msgstr "Der Name kann nicht leer sein"
+
+#: Cura/gui/tools/youmagineGui.py:338 Cura/gui/tools/youmagineGui.py:342
+msgid "New design error."
+msgstr "Fehler: Neues Design."
+
+#: Cura/gui/tools/youmagineGui.py:342
+msgid "The description cannot be empty"
+msgstr "Die Beschreibung kann nicht leer sein"
+
+#: Cura/gui/util/openglGui.py:239
+msgid "An error has occurred during the 3D view drawing."
+msgstr "Ein Fehler ist während des Aufbaus der 3D-Ansicht aufgetreten."
+
+#: Cura/gui/util/openglGui.py:246
+msgid "3D window error"
+msgstr "Fehler: 3D-Fenster"
+
+#: Cura/util/profile.py:153 Cura/util/profile.py:154 Cura/util/profile.py:155
+#: Cura/util/profile.py:179 Cura/util/profile.py:180 Cura/util/profile.py:182
+msgid "Quality"
+msgstr "Qualität"
+
+#: Cura/util/profile.py:153
+msgid "Layer height (mm)"
+msgstr "Schichtdicke (mm)"
+
+#: Cura/util/profile.py:153
+msgid ""
+"Layer height in millimeters.\n"
+"This is the most important setting to determine the quality of your print. "
+"Normal quality prints are 0.1mm, high quality is 0.06mm. You can go up to "
+"0.25mm with an Ultimaker for very fast prints at low quality."
+msgstr ""
+"Schichtdicke in Millimeter.\n"
+"Dies ist die wichtigste Einstellung um die Qualität Ihres Drucks zu "
+"bestimmen. Die normale Druckqualität liegt bei 0.1mm, hohe Qualität ist "
+"0.06mm. Sie können mit dem Ultimaker bis zu 0.25mm dicke Schichten für sehr "
+"schnelle, dafür aber qualitativ schlechtere Drucke erzeugen."
+
+#: Cura/util/profile.py:154
+msgid "Shell thickness (mm)"
+msgstr "Stärke der Aussenhülle (mm)"
+
+#: Cura/util/profile.py:154
+msgid ""
+"Thickness of the outside shell in the horizontal direction.\n"
+"This is used in combination with the nozzle size to define the number\n"
+"of perimeter lines and the thickness of those perimeter lines."
+msgstr ""
+"Stärke der Aussenhülle in horizontaler Richtung.\n"
+"Aus der Kombination dieser Einstellung mit der Grösse der Druckdüse\n"
+"wird die Anzahl der benötigten Umrisslinien und deren Dicke ermittelt."
+
+#: Cura/util/profile.py:155
+msgid "Enable retraction"
+msgstr "Rückzug einschalten"
+
+#: Cura/util/profile.py:155
+msgid ""
+"Retract the filament when the nozzle is moving over a none-printed area. "
+"Details about the retraction can be configured in the advanced tab."
+msgstr ""
+"Zieht das Druckmaterial zurück, wenn die Druckdüse Ã¼ber eine nicht bedruckte "
+"Zone fährt. Details zum Rückzug lassen sich unter den weiterführenden "
+"Einstellungen konfigurieren."
+
+#: Cura/util/profile.py:156 Cura/util/profile.py:157
+msgid "Fill"
+msgstr "Füllung"
+
+#: Cura/util/profile.py:156
+msgid "Bottom/Top thickness (mm)"
+msgstr "Stärke Unten/Oben (mm)"
+
+#: Cura/util/profile.py:156
+msgid ""
+"This controls the thickness of the bottom and top layers, the amount of "
+"solid layers put down is calculated by the layer thickness and this value.\n"
+"Having this value a multiple of the layer thickness makes sense. And keep it "
+"near your wall thickness to make an evenly strong part."
+msgstr ""
+"Kontrolliert die Stärke der unteren und oberen horizontalen Deckschichten. "
+"Daraus wird unter Berücksichtigung der Schichtdicke die Anzahl der voll "
+"gefüllten Schichten berechnet.\n"
+"Wählen Sie für diesen Wert ein Vielfaches der Schichtdicke und stimmen Sie "
+"ihn mit der Stärke der Aussenhülle ab, um ein ungefähr gleichstarkes "
+"Druckobjekt zu erhalten."
+
+#: Cura/util/profile.py:157
+msgid "Fill Density (%)"
+msgstr "Fülldichte (%)"
+
+#: Cura/util/profile.py:157
+msgid ""
+"This controls how densely filled the insides of your print will be. For a "
+"solid part use 100%, for an empty part use 0%. A value around 20% is usually "
+"enough.\n"
+"This won't effect the outside of the print and only adjusts how strong the "
+"part becomes."
+msgstr ""
+"Dieser Wert steuert, wie dicht gefüllt Ihr Druckobjekt sein wird. Für ein "
+"absolut festes Objekt verwenden Sie 100%, für ein hohles Objekt 0%. Ein Wert "
+"um 20% ist in der Regel ausreichend.\n"
+"Beeinflusst nicht die Oberfläche ihres Druckobjekts, sondern bestimmt nur "
+"wie fest Ihr Objekt wird."
+
+#: Cura/util/profile.py:158
+msgid ""
+"The nozzle size is very important, this is used to calculate the line width "
+"of the infill, and used to calculate the amount of outside wall lines and "
+"thickness for the wall thickness you entered in the print settings."
+msgstr ""
+"Die Grösse der Druckdüse ist sehr entscheidend. Sie wird verwendet um die "
+"Pfade für die Füllung zu berechnen. Daraus werden auch die Anzahl und Dicke "
+"der Umrisslinien berechnet, welche für die Wandstärke benötigt werden, "
+"welche Sie in den Druckeinstellungen gewählt haben."
+
+#: Cura/util/profile.py:159 Cura/util/profile.py:160 Cura/util/profile.py:161
+#: Cura/util/profile.py:162 Cura/util/profile.py:163 Cura/util/profile.py:164
+msgid "Speed and Temperature"
+msgstr "Geschwindigkeit und Temperatur"
+
+#: Cura/util/profile.py:159
+msgid "Print speed (mm/s)"
+msgstr "Druckgeschwindigkeit (mm)"
+
+#: Cura/util/profile.py:159
+msgid ""
+"Speed at which printing happens. A well adjusted Ultimaker can reach 150mm/"
+"s, but for good quality prints you want to print slower. Printing speed "
+"depends on a lot of factors. So you will be experimenting with optimal "
+"settings for this."
+msgstr ""
+"Geschwindigkeit, mit welcher gedruckt wird. Ein gut eingestellter Ultimaker "
+"kann bis zu 150mm/s erreichen, aber für qualitativ gute Drucke sollten Sie "
+"langsamer drucken. Die Druckgeschwindigkeit hängt von einer Vielzahl von "
+"Faktoren ab. Sie werden die optimalen Einstellungen durch Ausprobieren "
+"individuell herausfinden müssen."
+
+#: Cura/util/profile.py:160
+msgid "Printing temperature (C)"
+msgstr "Drucktemperatur (C)"
+
+#: Cura/util/profile.py:160 Cura/util/profile.py:161 Cura/util/profile.py:162
+#: Cura/util/profile.py:163
+msgid ""
+"Temperature used for printing. Set at 0 to pre-heat yourself.\n"
+"For PLA a value of 210C is usually used.\n"
+"For ABS a value of 230C or higher is required."
+msgstr ""
+"Temperatur die für den Druck verwendet wird. Wählen Sie 0, wenn Sie den "
+"Drucker manuell vorheizen.\n"
+"Für PLA wird meist 210C verwendet.\n"
+"Für ABS werden 230C oder mehr benötigt."
+
+#: Cura/util/profile.py:161
+msgid "2nd nozzle temperature (C)"
+msgstr "2te Druckdüse Temperatur (C)"
+
+#: Cura/util/profile.py:162
+msgid "3th nozzle temperature (C)"
+msgstr "3te Druckdüse Temperatur (C)"
+
+#: Cura/util/profile.py:163
+msgid "4th nozzle temperature (C)"
+msgstr "4te Druckdüse Temperatur (C)"
+
+#: Cura/util/profile.py:164
+msgid "Bed temperature (C)"
+msgstr "Temperatur Drucktisch (C)"
+
+#: Cura/util/profile.py:164
+msgid ""
+"Temperature used for the heated printer bed. Set at 0 to pre-heat yourself."
+msgstr ""
+"Temperatur welche für den beheizten Drucktisch verwendet wird. Wählen Sie 0, "
+"wenn Sie den Drucktisch manuell aufheizen."
+
+#: Cura/util/profile.py:165 Cura/util/profile.py:166
+msgid "None"
+msgstr ""
+
+#: Cura/util/profile.py:165
+msgid "Touching buildplate"
+msgstr ""
+
+#: Cura/util/profile.py:165
+msgid "Everywhere"
+msgstr ""
+
+#: Cura/util/profile.py:165 Cura/util/profile.py:166 Cura/util/profile.py:167
+#: Cura/util/profile.py:206 Cura/util/profile.py:207 Cura/util/profile.py:208
+msgid "Support"
+msgstr "Stützmaterial"
+
+#: Cura/util/profile.py:165
+msgid "Support type"
+msgstr "Art des Stützmaterials"
+
+#: Cura/util/profile.py:165
+msgid ""
+"Type of support structure build.\n"
+"\"Touching buildplate\" is the most commonly used support setting.\n"
+"\n"
+"None does not do any support.\n"
+"Touching buildplate only creates support where the support structure will "
+"touch the build platform.\n"
+"Everywhere creates support even on top of parts of the model."
+msgstr ""
+"Art des Stützmaterials.\n"
+"\"Drucktisch berührend\" ist die meist verwendete Einstellung.\n"
+"\n"
+"Kein generiert kein Stützmaterial.\n"
+"Drucktisch berührend erzeugt nur Stützmaterial, welches den Drucktisch "
+"berührt.\n"
+"Überall erzeugt Stützmaterial, welches auch auf Teilen des Modells selber "
+"aufbaut."
+
+#: Cura/util/profile.py:166 Cura/util/profile.py:212
+msgid "Brim"
+msgstr "Rand"
+
+#: Cura/util/profile.py:166 Cura/util/profile.py:213 Cura/util/profile.py:214
+#: Cura/util/profile.py:215 Cura/util/profile.py:216 Cura/util/profile.py:217
+#: Cura/util/profile.py:218
+msgid "Raft"
+msgstr "Gitter"
+
+#: Cura/util/profile.py:166
+msgid "Platform adhesion type"
+msgstr "Platform Adhäsionstyp"
+
+#: Cura/util/profile.py:166
+msgid ""
+"Different options that help in preventing corners from lifting due to "
+"warping.\n"
+"Brim adds a single layer thick flat area around your object which is easy to "
+"cut off afterwards, and the recommended option.\n"
+"Raft adds a thick raster at below the object and a thin interface between "
+"this and your object.\n"
+"(Note that enabling the brim or raft disables the skirt)"
+msgstr ""
+"Verschiedene Optionen die helfen, damit Ecken sich nicht wegen des Verzugs "
+"vom Drucktisch lösen.\n"
+"Rand fügt Flächen um Ihr Objekt hinzu, welche lediglich eine Schicht hoch "
+"sind. Diese lassen sich nach dem Druck leicht entfernen. Dies ist die "
+"empfohlene Option.\n"
+"Gitter fügt ein Raster und eine dünne Zwischenschicht unter dem Objekt "
+"hinzu.\n"
+"(Wählen Sie Rand oder Gitter, deaktivieren Sie damit automatisch den Rock)"
+
+#: Cura/util/profile.py:167
+msgid "Both"
+msgstr ""
+
+#: Cura/util/profile.py:167
+msgid "First extruder"
+msgstr ""
+
+#: Cura/util/profile.py:167
+msgid "Second extruder"
+msgstr ""
+
+#: Cura/util/profile.py:167
+msgid "Support dual extrusion"
+msgstr "Stützmaterial Doppelextrusion"
+
+#: Cura/util/profile.py:167
+msgid ""
+"Which extruder to use for support material, for break-away support you can "
+"use both extruders.\n"
+"But if one of the materials is more expensive then the other you could "
+"select an extruder to use for support material. This causes more extruder "
+"switches.\n"
+"You can also use the 2nd extruder for soluble support materials."
+msgstr ""
+"Wählen Sie, welcher Extruder für das Stützmaterial verwendet wird. Wird das "
+"Stützmaterial danach einfach weggebrochen, können Sie beide Extruder dazu "
+"verwenden.\n"
+"Verwenden Sie allerdings unterschiedliche Materialien (ev. sogar leicht "
+"lösliche), empfiehlt es sich, das Stützmaterial aus einem anderen Material "
+"zu drucken, als das Objekt selber.\n"
+"Dadurch entstehen allerdings mehr Extruder-Wechsel."
+
+#: Cura/util/profile.py:168 Cura/util/profile.py:169 Cura/util/profile.py:170
+#: Cura/util/profile.py:171 Cura/util/profile.py:172
+msgid "Filament"
+msgstr "Druckmaterial"
+
+#: Cura/util/profile.py:168
+msgid "Diameter (mm)"
+msgstr "Durchmesser (mm)"
+
+#: Cura/util/profile.py:168
+msgid ""
+"Diameter of your filament, as accurately as possible.\n"
+"If you cannot measure this value you will have to calibrate it, a higher "
+"number means less extrusion, a smaller number generates more extrusion."
+msgstr ""
+"Durchmesser des Druckmaterials, so genau wie möglich.\n"
+"Falls Sie diesen Wert nicht durch Messen ermitteln können, müssen Sie Ihn "
+"durch Ausprobieren herausfinden. Ein höherer Wert bedeutet weniger Material-"
+"Vorschub, ein kleinerer Wert mehr Material-Vorschub."
+
+#: Cura/util/profile.py:169
+msgid "Diameter2 (mm)"
+msgstr "Durchmesser2 (mm)"
+
+#: Cura/util/profile.py:169
+msgid ""
+"Diameter of your filament for the 2nd nozzle. Use 0 to use the same diameter "
+"as for nozzle 1."
+msgstr ""
+"Durchmesser des Druckmaterials für die zweite Druckdüse. Verwenden Sie den "
+"Wert 0, um den selben Durchmesser wie bei Druckdüse 1 zu verwenden."
+
+#: Cura/util/profile.py:170
+msgid "Diameter3 (mm)"
+msgstr "Durchmesser3 (mm)"
+
+#: Cura/util/profile.py:170
+msgid ""
+"Diameter of your filament for the 3th nozzle. Use 0 to use the same diameter "
+"as for nozzle 1."
+msgstr ""
+"Durchmesser des Druckmaterials für die dritte Druckdüse. Verwenden Sie den "
+"Wert 0, um den selben Durchmesser wie bei Druckdüse 1 zu verwenden."
+
+#: Cura/util/profile.py:171
+msgid "Diameter4 (mm)"
+msgstr "Durchmesser4 (mm)"
+
+#: Cura/util/profile.py:171
+msgid ""
+"Diameter of your filament for the 4th nozzle. Use 0 to use the same diameter "
+"as for nozzle 1."
+msgstr ""
+"Durchmesser des Druckmaterials für die vierte Druckdüse. Verwenden Sie den "
+"Wert 0, um den selben Durchmesser wie bei Druckdüse 1 zu verwenden."
+
+#: Cura/util/profile.py:172
+msgid "Flow (%)"
+msgstr "Fluss (%)"
+
+#: Cura/util/profile.py:172
+msgid ""
+"Flow compensation, the amount of material extruded is multiplied by this "
+"value"
+msgstr ""
+"Flusskompensation, die Menge an zu extrudierendem Druckmaterial ist mit "
+"diesem Wert multipliziert "
+
+#: Cura/util/profile.py:173 Cura/util/profile.py:174 Cura/util/profile.py:175
+#: Cura/util/profile.py:176 Cura/util/profile.py:177 Cura/util/profile.py:178
+msgid "Retraction"
+msgstr "Rückzug"
+
+#: Cura/util/profile.py:173
+msgid "Speed (mm/s)"
+msgstr "Geschwindigkeit (mm/s)"
+
+#: Cura/util/profile.py:173
+msgid ""
+"Speed at which the filament is retracted, a higher retraction speed works "
+"better. But a very high retraction speed can lead to filament grinding."
+msgstr ""
+"Geschwindigkeit mit welcher das Druckmaterial zurückgezogen wird. Eine "
+"höhere Rückzugsgeschwindigkeit funktioniert besser, kann allerdings zu "
+"Abrieb am Druckmaterial durch den Extruder führen."
+
+#: Cura/util/profile.py:174
+msgid "Distance (mm)"
+msgstr "Distanz (mm)"
+
+#: Cura/util/profile.py:174
+msgid ""
+"Amount of retraction, set at 0 for no retraction at all. A value of 4.5mm "
+"seems to generate good results."
+msgstr ""
+"Rückzugslänge, ein Wert von 0 führt zu keinem Rückzug. Ein Wert von 4.5mm "
+"liefert gute Druckresultate."
+
+#: Cura/util/profile.py:175
+msgid "Dual extrusion switch amount (mm)"
+msgstr "Rückzug bei Doppelextrusion Umschaltung (mm)"
+
+#: Cura/util/profile.py:175
+msgid ""
+"Amount of retraction when switching nozzle with dual-extrusion, set at 0 for "
+"no retraction at all. A value of 16.0mm seems to generate good results."
+msgstr ""
+"Rückzugsdistanz beim Umschalten der Druckdüsen im Doppelextrudions-Modus, "
+"ein Wert von 0 führt zu keinem Rückzug. Ein Wert von 16.0mm scheint gute "
+"Druckresultate zu liefern."
+
+#: Cura/util/profile.py:176
+msgid "Minimum travel (mm)"
+msgstr "Minimale Leerfahrt-Distanz (mm)"
+
+#: Cura/util/profile.py:176
+msgid ""
+"Minimum amount of travel needed for a retraction to happen at all. To make "
+"sure you do not get a lot of retractions in a small area."
+msgstr ""
+"Minimale Distanz die vom Druckkopf als Leerfahrt zurückgelegt werden muss, "
+"damit Ã¼berhaupt ein Rückzug des Druckmaterials gemacht wird. Verhindert zu "
+"häufigen Rückzug auf kleiner Fläche."
+
+#: Cura/util/profile.py:177
+msgid "Enable combing"
+msgstr "Löcher umfahren"
+
+#: Cura/util/profile.py:177
+msgid ""
+"Combing is the act of avoiding holes in the print for the head to travel "
+"over. If combing is disabled the printer head moves straight from the start "
+"point to the end point and it will always retract."
+msgstr ""
+"Lässt den Druckkopf nicht direkt Ã¼ber Löcher im Druckobjekt leer "
+"drüberfahren. Wenn diese Option ausgeschaltet ist, fährt der Druckkopf auf "
+"gerader Linie vom Anfangs- zum Endpunkt und das Druckmaterial wird dabei "
+"immer zurückgezogen."
+
+#: Cura/util/profile.py:178
+msgid "Minimal extrusion before retracting (mm)"
+msgstr "Minimaler Vorschub vor nächstem Rückzug (mm)"
+
+#: Cura/util/profile.py:178
+msgid ""
+"The minimal amount of extrusion that needs to be done before retracting "
+"again if a retraction needs to happen before this minimal is reached the "
+"retraction is ignored.\n"
+"This avoids retraction a lot on the same piece of filament which flattens "
+"the filament and causes grinding issues."
+msgstr ""
+"Die minimale Distanz an Vorschub, welche erreicht sein muss, bevor der "
+"nächste Rückzug ausgeführt wird. Wenn vor dem Erreichen dieser "
+"Minimaldistanz ein Rückzug ausgeführt werden sollte, wird dieser ignoriert.\n"
+"Dies verhindert ein zu häufiges Zurückziehen des Druckmaterials an der "
+"selben Stelle, was sonst zum Abflachen und zu Abrieb des Druckmaterials "
+"führen kann."
+
+#: Cura/util/profile.py:179
+msgid "Initial layer thickness (mm)"
+msgstr "Erste Schichtdicke (mm)"
+
+#: Cura/util/profile.py:179
+msgid ""
+"Layer thickness of the bottom layer. A thicker bottom layer makes sticking "
+"to the bed easier. Set to 0.0 to have the bottom layer thickness the same as "
+"the other layers."
+msgstr ""
+"Schichtdicke der ersten Schicht. Eine dickere Bodenschicht haftet besser auf "
+"dem Drucktisch. Wählen Sie den Wert 0.0, um die erste Schicht genau so dick "
+"zu drucken wie die anderen Schichten."
+
+#: Cura/util/profile.py:180
+msgid "Cut off object bottom (mm)"
+msgstr "Objekt unten abschneiden (mm)"
+
+#: Cura/util/profile.py:180
+msgid ""
+"Sinks the object into the platform, this can be used for objects that do not "
+"have a flat bottom and thus create a too small first layer."
+msgstr ""
+"Versenkt das Objekt um diesen Wert in den Drucktisch. Kann bei Objekten "
+"verwendet werden, welche keine flache Unterseite haben."
+
+#: Cura/util/profile.py:182
+msgid "Dual extrusion overlap (mm)"
+msgstr "Doppelextrusion Ãœberlappung (mm)"
+
+#: Cura/util/profile.py:182
+msgid ""
+"Add a certain amount of overlapping extrusion on dual-extrusion prints. This "
+"bonds the different colors better together."
+msgstr ""
+"Fügen Sie einen gewissen Wert an Ãœberlappung der beiden Druckmaterialien aus "
+"den Düsen bei der Doppelextrusion hinzu. Dies verbindet die beiden "
+"Druckmaterialien besser miteinander."
+
+#: Cura/util/profile.py:183
+msgid "Travel speed (mm/s)"
+msgstr "Leerfahrt Geschwindigkeit (mm/s)"
+
+#: Cura/util/profile.py:183
+msgid ""
+"Speed at which travel moves are done, a high quality build Ultimaker can "
+"reach speeds of 250mm/s. But some machines might miss steps then."
+msgstr ""
+"Geschwindigkeit, mit welcher Leerfahrten ausgeführt werden. Ein gut "
+"zusammengebauter Ultimaker kann Geschwindigkeiten bis zu 250mm/s erreichen. "
+"Viele Geräte verlieren dabei allerdings Schritte der Motoren und die "
+"Druckobjekte werden unbrauchbar."
+
+#: Cura/util/profile.py:184
+msgid "Bottom layer speed (mm/s)"
+msgstr "Geschwindigkeit unterste Schicht (mm/s)"
+
+#: Cura/util/profile.py:184
+msgid ""
+"Print speed for the bottom layer, you want to print the first layer slower "
+"so it sticks better to the printer bed."
+msgstr ""
+"Druckgeschwindigkeit für die erste Schicht. Drucken Sie die erste Schicht "
+"langsamer, damit sie besser auf dem Drucktisch haftet."
+
+#: Cura/util/profile.py:185
+msgid "Infill speed (mm/s)"
+msgstr "Füllgeschwindigkeit (mm/s)"
+
+#: Cura/util/profile.py:185
+msgid ""
+"Speed at which infill parts are printed. If set to 0 then the print speed is "
+"used for the infill. Printing the infill faster can greatly reduce printing, "
+"but this can negatively effect print quality.."
+msgstr ""
+"Geschwindigkeit, mit welcher die Füllung gedruckt wird. Verwenden Sie den "
+"Wert 0, um die Füllung mit der allgemeinen Druckgeschwindigkeit zu Drucken. "
+"Die Füllung schneller zu drucken, kann die Druckzeit massiv verkürzen, "
+"beeinträchtigt aber womöglich die Druckqualität."
+
+#: Cura/util/profile.py:186 Cura/util/profile.py:187 Cura/util/profile.py:194
+#: Cura/util/profile.py:195 Cura/util/profile.py:196 Cura/util/profile.py:197
+#: Cura/util/profile.py:198
+msgid "Cool"
+msgstr "Abkühlen"
+
+#: Cura/util/profile.py:186
+msgid "Minimal layer time (sec)"
+msgstr "Minimale Druckzeit Schicht (s)"
+
+#: Cura/util/profile.py:186
+msgid ""
+"Minimum time spend in a layer, gives the layer time to cool down before the "
+"next layer is put on top. If the layer will be placed down too fast the "
+"printer will slow down to make sure it has spend at least this amount of "
+"seconds printing this layer."
+msgstr ""
+"Zeit die minimal verwendet werden muss, um eine Schicht zu drucken. "
+"Ermöglicht das Abkühlen der gerade gedruckten Schicht, bevor die nächste "
+"oben drauf gedruckt wird. Würde diese Zeit unterschritten, verlangsamt der "
+"Drucker die Geschwindigkeit, damit das Erstellen einer Schicht mindestens so "
+"lange dauert."
+
+#: Cura/util/profile.py:187
+msgid "Enable cooling fan"
+msgstr "Lüfter einschalten"
+
+#: Cura/util/profile.py:187
+msgid ""
+"Enable the cooling fan during the print. The extra cooling from the cooling "
+"fan is essential during faster prints."
+msgstr ""
+"Schaltet den Lüfter während des des Drucks ein. Die Kühlung durch den Lüfter "
+"ist besonders bei schnelleren Drucken notwendig."
+
+#: Cura/util/profile.py:189
+msgid "Line count"
+msgstr "Anzahl Linien"
+
+#: Cura/util/profile.py:189
+msgid ""
+"The skirt is a line drawn around the object at the first layer. This helps "
+"to prime your extruder, and to see if the object fits on your platform.\n"
+"Setting this to 0 will disable the skirt. Multiple skirt lines can help "
+"priming your extruder better for small objects."
+msgstr ""
+"Der Rock ist eine Linie, welche beim der ersten Schicht um das gesamte "
+"Druckobjekt gedruckt wird. Das hilft um den Materialfluss herzustellen, und "
+"um den Drucktisch fein zu justieren.\n"
+"Ein Wert von 0 deaktiviert den Rock. Mehrere Linien können bei kleinen "
+"Objekten helfen, den Materialfluss genügend herzustellen."
+
+#: Cura/util/profile.py:190
+msgid "Start distance (mm)"
+msgstr "Start Distanz (mm)"
+
+#: Cura/util/profile.py:190
+msgid ""
+"The distance between the skirt and the first layer.\n"
+"This is the minimal distance, multiple skirt lines will be put outwards from "
+"this distance."
+msgstr ""
+"Die Distanz zwischen der ersten Umfahrungslinie des Rocks und den "
+"Aussenlinien des Objekts auf der ersten Schicht.\n"
+"Dies ist die Minimaldistanz, mehrere Umfahrungslinien werden aussen an diese "
+"Distanz angehängt."
+
+#: Cura/util/profile.py:191
+msgid "Minimal length (mm)"
+msgstr "Minimale Länge (mm)"
+
+#: Cura/util/profile.py:191
+msgid ""
+"The minimal length of the skirt, if this minimal length is not reached it "
+"will add more skirt lines to reach this minimal lenght.\n"
+"Note: If the line count is set to 0 this is ignored."
+msgstr ""
+"Die minimale Länge des Rocks. Wird diese Minimaldistanz durch die Anzahl "
+"angegebener Linien nicht erreicht, werden mehr Linien aussen angefügt, um "
+"diese Minimaldistanz zu erreichen.\n"
+"Hinweis: Ist die Linienanzahl auf 0 gesetzt, wird dieser Wert ignoriert."
+
+#: Cura/util/profile.py:194
+msgid "Fan on layer number"
+msgstr "Lüfter AN bei Schichtnummer"
+
+#: Cura/util/profile.py:194
+msgid ""
+"The layer at which the fan is turned on. The first layer is layer 0. The "
+"first layer can stick better if you turn on the fan on, on the 2nd layer."
+msgstr ""
+"Die Schichtnummer, bei welcher der Lüfter eingeschaltet wird. Die erste "
+"Schicht ist Schicht 0. Die erste Schicht haftet besser, wenn Sie den Lüfter "
+"erst bei Schicht 1 einschalten lassen."
+
+#: Cura/util/profile.py:195
+msgid "Fan speed min (%)"
+msgstr "Lüfter Geschwindigkeit min (%)"
+
+#: Cura/util/profile.py:195
+msgid ""
+"When the fan is turned on, it is enabled at this speed setting. If cool "
+"slows down the layer, the fan is adjusted between the min and max speed. "
+"Minimal fan speed is used if the layer is not slowed down due to cooling."
+msgstr ""
+"Wenn der Lüfter eingeschaltet ist, läuft er mit dieser prozentualen "
+"Geschwindigkeit. Wird die Druckgeschwindigkteit für die Schicht verringert, "
+"wird die Geschwindigkeit des Lüfters zwischen min und max reguliert. Die "
+"minimale Geschwindigkeit wird verwendet, wenn die Druckgeschwindigkeit nicht "
+"verringert wird."
+
+#: Cura/util/profile.py:196
+msgid "Fan speed max (%)"
+msgstr "Lüfter Geschwindigkeit max (%)"
+
+#: Cura/util/profile.py:196
+msgid ""
+"When the fan is turned on, it is enabled at this speed setting. If cool "
+"slows down the layer, the fan is adjusted between the min and max speed. "
+"Maximal fan speed is used if the layer is slowed down due to cooling by more "
+"than 200%."
+msgstr ""
+"Wenn der Lüfter eingeschaltet ist, läuft er mit dieser prozentualen "
+"Geschwindigkeit. Wird die Druckgeschwindigkteit für die Schicht verringert, "
+"wird die Geschwindigkeit des Lüfters zwischen min und max reguliert. Die "
+"maximale Geschwindigkeit wird verwendet, wenn die Druckgeschwindigkeit durch "
+"die minimale Druckzeit für eine Schicht um mehr als 200% verringert wird."
+
+#: Cura/util/profile.py:197
+msgid "Minimum speed (mm/s)"
+msgstr "Minimale Geschwindigkeit (mm/s)"
+
+#: Cura/util/profile.py:197
+msgid ""
+"The minimal layer time can cause the print to slow down so much it starts to "
+"ooze. The minimal feedrate protects against this. Even if a print gets slown "
+"down it will never be slower than this minimal speed."
+msgstr ""
+"Die minimale Druckzeit für eine Schicht kann die Druckgeschwindigkeit so "
+"stark reduzieren, dass ein Materialstau in der Druckdüse entstehen kann. Die "
+"minimale Vorschubrate schützt davor. Auch wenn ein Druck stark verlangsamt "
+"wird, wird er nie langsamer ausgeführt als diese minimale Geschwindigkeit."
+
+#: Cura/util/profile.py:198
+msgid "Cool head lift"
+msgstr "Druckkopf zum Kühlen anheben"
+
+#: Cura/util/profile.py:198
+msgid ""
+"Lift the head if the minimal speed is hit because of cool slowdown, and wait "
+"the extra time so the minimal layer time is always hit."
+msgstr ""
+"Hebt den Druckkopf zum Kühlen an, damit die minimale Druckzeit für eine "
+"Schicht immer erreicht wird."
+
+#: Cura/util/profile.py:203 Cura/util/profile.py:204 Cura/util/profile.py:205
+msgid "Infill"
+msgstr "Füllung"
+
+#: Cura/util/profile.py:203
+msgid "Solid infill top"
+msgstr "Oben geschlossen"
+
+#: Cura/util/profile.py:203
+msgid ""
+"Create a solid top surface, if set to false the top is filled with the fill "
+"percentage. Useful for cups/vases."
+msgstr ""
+"Erstellt oben eine gefüllte Oberfläche. Wenn deaktiviert, wird bis oben mit "
+"der Fülldichte gedruckt. In Kombination mit 0% Fülldichte hilfreich für "
+"Schalen und Vasen."
+
+#: Cura/util/profile.py:204
+msgid "Solid infill bottom"
+msgstr "Unten geschlossen"
+
+#: Cura/util/profile.py:204
+msgid ""
+"Create a solid bottom surface, if set to false the bottom is filled with the "
+"fill percentage. Useful for buildings."
+msgstr ""
+"Erstellt unten eine gefüllte Oberfläche. Wenn deaktiviert, wird von der "
+"ersten Schicht an mit der Fülldichte gedruckt. Hilfreich für Gebäude."
+
+#: Cura/util/profile.py:205
+msgid "Infill overlap (%)"
+msgstr "Füllung Ãœberlappung (%)"
+
+#: Cura/util/profile.py:205
+msgid ""
+"Amount of overlap between the infill and the walls. There is a slight "
+"overlap with the walls and the infill so the walls connect firmly to the "
+"infill."
+msgstr ""
+"Menge an Ãœberlappung der Füllung un der Aussenwände. Damit die Füllung und "
+"die Aussenwände gut schliessen, wird eine geringe Ãœberlappung benötigt."
+
+#: Cura/util/profile.py:206
+msgid "Fill amount (%)"
+msgstr "Fülldichte (%)"
+
+#: Cura/util/profile.py:206
+#, python-format
+msgid ""
+"Amount of infill structure in the support material, less material gives "
+"weaker support which is easier to remove. 20% seems to be a good average."
+msgstr ""
+"Füllmenge des Stützmaterials. Weniger Material erzeugt schwächeres "
+"Stützmaterial, welches dafür leichter zu entfernen ist. 20% scheint ein "
+"gutes Mittelmass zu sein."
+
+#: Cura/util/profile.py:207
+msgid "Distance X/Y (mm)"
+msgstr "Distanz X/Y (mm)"
+
+#: Cura/util/profile.py:207
+msgid ""
+"Distance of the support material from the print, in the X/Y directions.\n"
+"0.7mm gives a nice distance from the print so the support does not stick to "
+"the print."
+msgstr ""
+"Distanz des Stützmaterials zum Druckobjekt, in den X/Y Richtungen.\n"
+"0.7mm ergibt eine gute Distanz vom Druckobjekt, damit das Stützmaterial "
+"nicht am Druckobjekt klebt."
+
+#: Cura/util/profile.py:208
+msgid "Distance Z (mm)"
+msgstr "Distanz Z (mm)"
+
+#: Cura/util/profile.py:208
+msgid ""
+"Distance from the top/bottom of the support to the print. A small gap here "
+"makes it easier to remove the support but makes the print a bit uglier.\n"
+"0.15mm gives a good seperation of the support material."
+msgstr ""
+"Distanz von der Unter- bzw. Oberseite des Stützmaterials zum Druckobjekt. "
+"Eine kleine Lücke macht es einfacher, das Stützmaterial zu entfernen, "
+"erzeugt aber einen etwas unschöneren Druck.\n"
+"0.15mm ergibt eine gute Trennung zwischen Stützmaterial und Druckobjekt."
+
+#: Cura/util/profile.py:212
+msgid "Brim line amount"
+msgstr "Anzahl Randlinien"
+
+#: Cura/util/profile.py:212
+msgid ""
+"The amount of lines used for a brim, more lines means a larger brim which "
+"sticks better, but this also makes your effective print area smaller."
+msgstr ""
+"Die Anzahl Linien, welche für den Rand verwendet werden. Mehr Linien "
+"bedeuten eine grössere Randfläche, die besser haftet, verringert allerdings "
+"die maximale Druckfläche."
+
+#: Cura/util/profile.py:213
+msgid "Extra margin (mm)"
+msgstr "Zusätzlicher Rand (mm)"
+
+#: Cura/util/profile.py:213
+msgid ""
+"If the raft is enabled, this is the extra raft area around the object which "
+"is also rafted. Increasing this margin will create a stronger raft while "
+"using more material and leaving less are for your print."
+msgstr ""
+"Wenn das Gitter eingeschaltet ist, wird es um diese Länge grösser um das "
+"Druckobjekt erstellt. Ein grösserer Wert ergibt ein stärkeres Gitter, "
+"benötigt allerdings mehr Material und reduziert die Druckfläche."
+
+#: Cura/util/profile.py:214
+msgid "Line spacing (mm)"
+msgstr "Linienabstand (mm)"
+
+#: Cura/util/profile.py:214
+msgid ""
+"When you are using the raft this is the distance between the centerlines of "
+"the raft line."
+msgstr ""
+"Wenn Sie ein Gitter verwenden, werden die Gitterlinien um diese Distanz "
+"voneinander entfernt gedruckt."
+
+#: Cura/util/profile.py:215
+msgid "Base thickness (mm)"
+msgstr "Basisdicke (mm)"
+
+#: Cura/util/profile.py:215
+msgid ""
+"When you are using the raft this is the thickness of the base layer which is "
+"put down."
+msgstr ""
+"Wenn Sie ein Gitter verwenden, wird die erste Schicht des Gitters mit dieser "
+"Schichtdicke gedruckt."
+
+#: Cura/util/profile.py:216
+msgid "Base line width (mm)"
+msgstr "Breite Basislinien (mm)"
+
+#: Cura/util/profile.py:216
+msgid ""
+"When you are using the raft this is the width of the base layer lines which "
+"are put down."
+msgstr ""
+"Wenn Sie ein Gitter verwenden, werden die Linien der ersten Schicht mit "
+"dieser Breite gedruckt."
+
+#: Cura/util/profile.py:217
+msgid "Interface thickness (mm)"
+msgstr "Trennschicht Dicke (mm)"
+
+#: Cura/util/profile.py:217
+msgid ""
+"When you are using the raft this is the thickness of the interface layer "
+"which is put down."
+msgstr ""
+"Wenn Sie ein Gitter verwenden, wird die Trennschicht zwischen Gitter und "
+"Objekt mit dieser Dicke gedruckt."
+
+#: Cura/util/profile.py:218
+msgid "Interface line width (mm)"
+msgstr "Trennschicht Linienbreite (mm)"
+
+#: Cura/util/profile.py:218
+msgid ""
+"When you are using the raft this is the width of the interface layer lines "
+"which are put down."
+msgstr ""
+"Wenn Sie ein Gitter verwenden, werden die Linien der Trennschicht mit dieser "
+"Breite gedruckt."
+
+#: Cura/util/profile.py:220 Cura/util/profile.py:221 Cura/util/profile.py:222
+#: Cura/util/profile.py:223
+msgid "Fix horrible"
+msgstr "Automatische Reparatur"
+
+#: Cura/util/profile.py:220
+msgid "Combine everything (Type-A)"
+msgstr "Kombiniere alles (Typ-A)"
+
+#: Cura/util/profile.py:220 Cura/util/profile.py:221
+msgid ""
+"This expert option adds all parts of the model together. The result is "
+"usually that internal cavities disappear. Depending on the model this can be "
+"intended or not. Enabling this option is at your own risk. Type-A is "
+"depended on the model normals and tries to keep some internal holes intact. "
+"Type-B ignores all internal holes and only keeps the outside shape per layer."
+msgstr ""
+"Diese Experten-Option fügt alle Teile des Modelle zu einem zusammen. Das "
+"Resultat ist meistens, dass innen liegende Löcher verschwinden. Abhängig vom "
+"Modell kann dies gewünscht sein oder nicht. Verwenden Sie diese Option auf "
+"eigenes Risiko. Typ-A ist abhängig von den Normalen des Modells und versucht "
+"einige der innen liegenden Löcher zu erhalten. Typ-B ignoriert alle innen "
+"liegenden Löcher und erhält lediglich die Aussenform jeder Schicht."
+
+#: Cura/util/profile.py:221
+msgid "Combine everything (Type-B)"
+msgstr "Kombiniere alles (Typ-B)"
+
+#: Cura/util/profile.py:222
+msgid "Keep open faces"
+msgstr "Erhalte offene Flächen"
+
+#: Cura/util/profile.py:222
+msgid ""
+"This expert option keeps all the open bits of the model intact. Normally "
+"Cura tries to stitch up small holes and remove everything with big holes, "
+"but this option keeps bits that are not properly part of anything and just "
+"goes with whatever it is left. This option is usually not what you want, but "
+"it might enable you to slice models otherwise failing to produce proper "
+"paths.\n"
+"As with all \"Fix horrible\" options, results may vary and use at your own "
+"risk."
+msgstr ""
+"Diese Experten-Option lässt alle offenen Teile des Modells intakt. "
+"Normalerweise versucht Cura kleinere Löcher zu füllen, und entferne alle "
+"Teile mit grossen Löchern. Diese Option allerdings erhält auch alle "
+"unsauberen Teile. Diese Option ist in den wenigsten Fällen was Sie möchten, "
+"aber sie ermöglicht Ihnen vielleicht Modelle zu Slicen, welche sonst keine "
+"sauberen Druckpfade ergeben.\n"
+"Wie bei allen \"Automatischen Reparatur\" Optionen können die Resultate "
+"varieren, verwenden Sie diese Option also auf eigenes Risiko."
+
+#: Cura/util/profile.py:223
+msgid "Extensive stitching"
+msgstr "Umfassendes Schliessen"
+
+#: Cura/util/profile.py:223
+msgid ""
+"Extrensive stitching tries to fix up open holes in the model by closing the "
+"hole with touching polygons. This algorthm is quite expensive and could "
+"introduce a lot of processing time.\n"
+"As with all \"Fix horrible\" options, results may vary and use at your own "
+"risk."
+msgstr ""
+"Umfassendes Schliessen versucht alle Löcher im Modell durch angrenzende "
+"Polygone zu schliessen. Dieser Algorithmus ist ziemlich teuer und könnte "
+"viel Verarbeitungszeit hinzufügen.\n"
+"Wie bei allen Optionen der \"Automatischen Reparatur\" können die Resultate "
+"unterschiedlich sein, verwenden Sie deshalb diese Option auf eigene Gefahr."
+
+#: Cura/util/profile.py:338
+msgid "Save profile on slice"
+msgstr "Speichere Profil beim Slicen"
+
+#: Cura/util/profile.py:338
+msgid ""
+"When slicing save the profile as [stl_file]_profile.ini next to the model."
+msgstr ""
+"Speichere beim Slicen das Profil als [stl_datei]_profile.ini ins selbe "
+"Verzeichnis wie das Modell."
+
+#: Cura/util/profile.py:339
+msgid "Cost (price/kg)"
+msgstr "Kosten (Preis/kg)"
+
+#: Cura/util/profile.py:339
+msgid "Cost of your filament per kg, to estimate the cost of the final print."
+msgstr ""
+"Preis Ihres Druckmaterials pro Kilogramm. Dient zur Schätzung der "
+"Materialkosten des Druckobjekts."
+
+#: Cura/util/profile.py:340
+msgid "Cost (price/m)"
+msgstr "Kosten (Preis/m)"
+
+#: Cura/util/profile.py:340
+msgid ""
+"Cost of your filament per meter, to estimate the cost of the final print."
+msgstr ""
+"Preis Ihres Druckmaterials pro Meter. Dient zur Schätzung der Materialkosten "
+"des Druckobjekts."
+
+#: Cura/util/profile.py:341
+msgid "Auto detect SD card drive"
+msgstr "Automatische Erkennung SD-Karten Laufwerk"
+
+#: Cura/util/profile.py:341
+msgid ""
+"Auto detect the SD card. You can disable this because on some systems "
+"external hard-drives or USB sticks are detected as SD card."
+msgstr ""
+"Automatische Erkennung der SD-Karte. Sie können diese Funktion deaktivieren, "
+"da bei einigen Systemen externe Festplatten oder USB-Sticks als SD-Karten "
+"erkannt werden."
+
+#: Cura/util/profile.py:342
+msgid "Check for updates"
+msgstr "Prüfe auf Aktualisierungen"
+
+#: Cura/util/profile.py:342
+msgid "Check for newer versions of Cura on startup"
+msgstr ""
+"Prüfe beim Starten von Cura automatisch, ob eine neue Version von Cura "
+"verfügbar ist"
+
+#: Cura/util/profile.py:343
+msgid "Send usage statistics"
+msgstr "Sende Nutzerstatistiken"
+
+#: Cura/util/profile.py:343
+msgid "Submit anonymous usage information to improve next versions of Cura"
+msgstr ""
+"Übermittle anonyme Nutzungs-Informationen, um die nächste Version von Cura "
+"zu verbessern"
+
+#: Cura/util/profile.py:345
+msgid "Density (kg/m3)"
+msgstr "Dichte (kg/m3)"
+
+#: Cura/util/profile.py:345
+msgid ""
+"Weight of the filament per m3. Around 1240 for PLA. And around 1040 for ABS. "
+"This value is used to estimate the weight if the filament used for the print."
+msgstr ""
+"Gewicht des Druckmaterials pro m3. Ungefähr 1240 for PLA. Und um die 1040 "
+"for ABS. Dieser Wert wird verwendet, um die ungefähre Menge an Druckmaterial "
+"zu schätzen, welche für das Druckobjekt verwendet wird."
+
+#: Cura/util/profile.py:348
+msgid "Model colour"
+msgstr "Modellfarbe"
+
+#: Cura/util/profile.py:349
+msgid "Model colour (2)"
+msgstr "Modellfarbe (2)"
+
+#: Cura/util/profile.py:350
+msgid "Model colour (3)"
+msgstr "Modellfarbe (3)"
+
+#: Cura/util/profile.py:351
+msgid "Model colour (4)"
+msgstr "Modellfarbe (4)"
+
+#: Cura/util/profile.py:362
+msgid "Maximum width (mm)"
+msgstr "Maximale Breite (mm)"
+
+#: Cura/util/profile.py:362 Cura/util/profile.py:363 Cura/util/profile.py:364
+msgid "Size of the machine in mm"
+msgstr "Grösse des Geräts in mm"
+
+#: Cura/util/profile.py:363
+msgid "Maximum depth (mm)"
+msgstr "Maximale Tiefe (mm)"
+
+#: Cura/util/profile.py:364
+msgid "Maximum height (mm)"
+msgstr "Maximale Höhe (mm)"
+
+#: Cura/util/profile.py:367
+msgid ""
+"If you have an heated bed, this enabled heated bed settings (requires "
+"restart)"
+msgstr ""
+"Wenn Ihr Gerät einen beheizten Drucktisch besitzt, aktivieren Sie hier die "
+"Einstellungen dafür (benötigt Neustart)"
+
+#: Cura/util/profile.py:368
+msgid "GCode Flavor"
+msgstr "GCode Flavor"
+
+#: Cura/util/profile.py:368
+msgid ""
+"Flavor of generated GCode.\n"
+"RepRap is normal 5D GCode which works on Marlin/Sprinter based firmwares.\n"
+"UltiGCode is a variation of the RepRap GCode which puts more settings in the "
+"machine instead of the slicer."
+msgstr ""
+"Flavor des generierten GCodes.\n"
+"RepRap verwendet normalen 5D GCode welcher auf Marlin/Sprinter basierter "
+"Firmware funktioniert.\n"
+"UltiGCode ist eine Variation des RepRap GCodes, welche mehr Einstellungen "
+"des Geräts verwendet, anstelle deren des Slicers."
+
+#: Cura/util/profile.py:369
+msgid "Extruder count"
+msgstr "Anzahl Extruder"
+
+#: Cura/util/profile.py:369
+msgid "Amount of extruders in your machine."
+msgstr "Anzahl Extruder des Geräts."
+
+#: Cura/util/profile.py:370 Cura/util/profile.py:372 Cura/util/profile.py:374
+msgid "Offset X"
+msgstr "Offset X"
+
+#: Cura/util/profile.py:370 Cura/util/profile.py:371
+msgid "The offset of your secondary extruder compared to the primary."
+msgstr "Der Offset des zweiten Extruders vom ersten Extruder."
+
+#: Cura/util/profile.py:371 Cura/util/profile.py:373 Cura/util/profile.py:375
+msgid "Offset Y"
+msgstr "Offset Y"
+
+#: Cura/util/profile.py:372 Cura/util/profile.py:373
+msgid "The offset of your tertiary extruder compared to the primary."
+msgstr "Der Offset des dritten Extruders vom ersten Extruder."
+
+#: Cura/util/profile.py:374 Cura/util/profile.py:375
+msgid "The offset of your forth extruder compared to the primary."
+msgstr "Der Offset des vierten Extruders vom ersten Extruder."
+
+#: Cura/util/profile.py:376
+msgid "E-Steps per 1mm filament"
+msgstr "E-Schritte pro 1mm Druckmaterial"
+
+#: Cura/util/profile.py:376
+msgid ""
+"Amount of steps per mm filament extrusion. If set to 0 then this value is "
+"ignored and the value in your firmware is used."
+msgstr ""
+"Anzahl Schritte pro mm Druckmaterial Extrusion. Wird der Wert auf 0 gesetzt, "
+"wird er ignoriert, und stattdessen der Wert aus der Firmware verwendet."
+
+#: Cura/util/profile.py:377
+msgid "Serial port"
+msgstr "Serieller Anschluss"
+
+#: Cura/util/profile.py:377
+msgid "Serial port to use for communication with the printer"
+msgstr "Serieller Anschluss für die Kommunikation mit dem Drucker"
+
+#: Cura/util/profile.py:379
+msgid "Baudrate"
+msgstr "Baudrate"
+
+#: Cura/util/profile.py:379
+msgid ""
+"Speed of the serial port communication\n"
+"Needs to match your firmware settings\n"
+"Common values are 250000, 115200, 57600"
+msgstr ""
+"Kommunikations-Geschwindigkeit des Seriellen Anschlusses\n"
+"Muss mit den Firmware-Einstellungen Ã¼bereinstimmen\n"
+"Übliche Werte sind 250000, 115200, 57600"
+
+#: Cura/util/profile.py:382
+msgid "Head size towards X min (mm)"
+msgstr "Druckkopf-Grösse in X min (mm)"
+
+#: Cura/util/profile.py:382
+msgid ""
+"The head size when printing multiple objects, measured from the tip of the "
+"nozzle towards the outer part of the head. 75mm for an Ultimaker if the fan "
+"is on the left side."
+msgstr ""
+"Die Druckkopf-Grösse wenn mehrere Objekte nacheinander auf dem selben Tisch "
+"gedruckt werden. Gemessen von der Spitze der Druckdüse gegen den Ã¤usseren "
+"Teil des Druckkopfs. 75mm beim Ultimaker, wenn der Lüfter auf der linken "
+"Seite angebracht ist."
+
+#: Cura/util/profile.py:383
+msgid "Head size towards Y min (mm)"
+msgstr "Druckkopf-Grösse in Y min (mm)"
+
+#: Cura/util/profile.py:383 Cura/util/profile.py:384
+msgid ""
+"The head size when printing multiple objects, measured from the tip of the "
+"nozzle towards the outer part of the head. 18mm for an Ultimaker if the fan "
+"is on the left side."
+msgstr ""
+"Die Druckkopf-Grösse wenn mehrere Objekte nacheinander auf dem selben Tisch "
+"gedruckt werden. Gemessen von der Spitze der Druckdüse gegen den Ã¤usseren "
+"Teil des Druckkopfs. 18mm beim Ultimaker, wenn der Lüfter auf der linken "
+"Seite angebracht ist."
+
+#: Cura/util/profile.py:384
+msgid "Head size towards X max (mm)"
+msgstr "Druckkopf-Grösse in X max (mm)"
+
+#: Cura/util/profile.py:385
+msgid "Head size towards Y max (mm)"
+msgstr "Druckkopf-Grösse in Y max (mm)"
+
+#: Cura/util/profile.py:385
+msgid ""
+"The head size when printing multiple objects, measured from the tip of the "
+"nozzle towards the outer part of the head. 35mm for an Ultimaker if the fan "
+"is on the left side."
+msgstr ""
+"Die Druckkopf-Grösse wenn mehrere Objekte nacheinander auf dem selben Tisch "
+"gedruckt werden. Gemessen von der Spitze der Druckdüse gegen den Ã¤usseren "
+"Teil des Druckkopfs. 35mm beim Ultimaker, wenn der Lüfter auf der linken "
+"Seite angebracht ist."
+
+#: Cura/util/profile.py:386
+msgid "Printer gantry height (mm)"
+msgstr "Höhe Druckkopf-Aufhängung (mm)"
+
+#: Cura/util/profile.py:386
+msgid ""
+"The height of the gantry holding up the printer head. If an object is higher "
+"then this then you cannot print multiple objects one for one. 60mm for an "
+"Ultimaker."
+msgstr ""
+"Die Höhe der Druckkopf-Aufhängung Ã¼ber dem Drucktisch. Ist eines der "
+"Druckobjekte, welche auf dem selben Tisch nacheinander gedruckt werden "
+"sollen grösser als dieser Wert, können die Objekte nicht nacheinander "
+"gedruckt werden. 60mm beim Ultimaker."
+
+#: Cura/util/profile.py:388
+#, python-format
+msgid "More flow then 150% is rare and usually not recommended."
+msgstr ""
+
+#: Cura/util/profile.py:389
+#, python-format
+msgid "More flow then 50% is rare and usually not recommended."
+msgstr ""
+
+#: Cura/util/profile.py:390
+#, python-format
+msgid ""
+"Thicker layers then %.2fmm (80%% nozzle size) usually give bad results and "
+"are not recommended."
+msgstr ""
+
+#: Cura/util/profile.py:392
+msgid ""
+"It is highly unlikely that your machine can achieve a printing speed above "
+"150mm/s"
+msgstr ""
+
+#: Cura/util/profile.py:394 Cura/util/profile.py:395 Cura/util/profile.py:396
+#: Cura/util/profile.py:397
+msgid "Temperatures above 260C could damage your machine, be careful!"
+msgstr ""
+
+#: Cura/util/profile.py:398 Cura/util/profile.py:399 Cura/util/profile.py:400
+#: Cura/util/profile.py:401
+msgid ""
+"Are you sure your filament is that thick? Normal filament is around 3mm or "
+"1.75mm."
+msgstr ""
+
+#: Cura/util/profile.py:402
+msgid ""
+"It is highly unlikely that your machine can achieve a travel speed above "
+"300mm/s"
+msgstr ""
+
+#: Cura/util/profile.py:403
+#, python-format
+msgid ""
+"A bottom layer of more then %.2fmm (3/4 nozzle size) usually give bad "
+"results and is not recommended."
+msgstr ""
+
+#~ msgid "&amp;File"
+#~ msgstr "&amp;Datei"
+
+#~ msgid "Copyright (C) David Braam"
+#~ msgstr "Copyright (C) David Braam"
index 5e5458f8ee87354f99ce037e932168a64bec16aa..64c3316da47e36ab72ef728a87fb98cfe8db8864 100644 (file)
Binary files a/Cura/resources/locale/en/LC_MESSAGES/Cura.mo and b/Cura/resources/locale/en/LC_MESSAGES/Cura.mo differ
index e15391c43be05a339fa069733edfa3789a2adbf0..d9ad0b15c27dda063fe6580753e96e201dde30f6 100644 (file)
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2013
-# This file is distributed under the same license as the Cura package.
-# Ilya Kulakov <kulakov.ilya@gmail.com>, 2013.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Cura\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-09-27 09:25+0200\n"
-"PO-Revision-Date: 2013-09-27 09:41+0100\n"
-"Last-Translator: \n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.5.7\n"
-
-#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:520
-msgid "A new version of Cura is available, would you like to download?"
-msgstr ""
-
-#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:520
-msgid "New version available"
-msgstr ""
-
-#: Cura/gui/configWizard.py:220
-msgid "Add new machine wizard"
-msgstr ""
-
-#: Cura/gui/configWizard.py:222
-msgid "First time run wizard"
-msgstr ""
-
-#: Cura/gui/configWizard.py:223
-msgid "Welcome, and thanks for trying Cura!"
-msgstr ""
-
-#: Cura/gui/configWizard.py:225
-msgid "This wizard will help you with the following steps:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:226
-msgid "* Configure Cura for your machine"
-msgstr ""
-
-#: Cura/gui/configWizard.py:227
-msgid "* Optionally upgrade your firmware"
-msgstr ""
-
-#: Cura/gui/configWizard.py:228
-msgid "* Optionally check if your machine is working safely"
-msgstr ""
-
-#: Cura/gui/configWizard.py:229
-msgid "* Optionally level your printer bed"
-msgstr ""
-
-#: Cura/gui/configWizard.py:239
-msgid ""
-"RepRap machines are vastly different, and there is no\n"
-"default configuration in Cura for any of them."
-msgstr ""
-
-#: Cura/gui/configWizard.py:240
-msgid ""
-"If you like a default profile for your machine added,\n"
-"then make an issue on github."
-msgstr ""
-
-#: Cura/gui/configWizard.py:242
-msgid "You will have to manually install Marlin or Sprinter firmware."
-msgstr ""
-
-#: Cura/gui/configWizard.py:244
-msgid "Machine name"
-msgstr ""
-
-#: Cura/gui/configWizard.py:245
-msgid "Machine width (mm)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:246
-msgid "Machine depth (mm)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:247
-msgid "Machine height (mm)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:248 Cura/util/profile.py:158
-msgid "Nozzle size (mm)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:249 Cura/util/profile.py:367
-msgid "Heated bed"
-msgstr ""
-
-#: Cura/gui/configWizard.py:250
-msgid "Bed center is 0,0,0 (RoStock)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:270
-msgid "Select your machine"
-msgstr ""
-
-#: Cura/gui/configWizard.py:271
-msgid "What kind of machine do you have:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:278
-msgid "Other (Ex: RepRap)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:281
-msgid ""
-"The collection of anonymous usage information helps with the continued "
-"improvement of Cura."
-msgstr ""
-
-#: Cura/gui/configWizard.py:282
-msgid ""
-"This does NOT submit your models online nor gathers any privacy related "
-"information."
-msgstr ""
-
-#: Cura/gui/configWizard.py:283
-msgid "Submit anonymous usage information:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:284
-msgid "For full details see: http://wiki.ultimaker.com/Cura:stats"
-msgstr ""
-
-#: Cura/gui/configWizard.py:346
-msgid "Select upgraded parts you have"
-msgstr ""
-
-#: Cura/gui/configWizard.py:347
-msgid ""
-"To assist you in having better default settings for your Ultimaker\n"
-"Cura would like to know which upgrades you have in your machine."
-msgstr ""
-
-#: Cura/gui/configWizard.py:349
-msgid "Extruder drive upgrade"
-msgstr ""
-
-#: Cura/gui/configWizard.py:350
-msgid "Heated printer bed (self built)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:351
-msgid "Dual extrusion (experimental)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:353
-msgid ""
-"If you have an Ultimaker bought after october 2012 you will have the\n"
-"Extruder drive upgrade. If you do not have this upgrade,\n"
-"it is highly recommended to improve reliability."
-msgstr ""
-
-#: Cura/gui/configWizard.py:354
-msgid ""
-"This upgrade can be bought from the Ultimaker webshop\n"
-"or found on thingiverse as thing:26094"
-msgstr ""
-
-#: Cura/gui/configWizard.py:373
-msgid "Upgrade Ultimaker Firmware"
-msgstr ""
-
-#: Cura/gui/configWizard.py:374
-msgid ""
-"Firmware is the piece of software running directly on your 3D printer.\n"
-"This firmware controls the step motors, regulates the temperature\n"
-"and ultimately makes your printer work."
-msgstr ""
-
-#: Cura/gui/configWizard.py:376
-msgid ""
-"The firmware shipping with new Ultimakers works, but upgrades\n"
-"have been made to make better prints, and make calibration easier."
-msgstr ""
-
-#: Cura/gui/configWizard.py:378
-msgid ""
-"Cura requires these new features and thus\n"
-"your firmware will most likely need to be upgraded.\n"
-"You will get the chance to do so now."
-msgstr ""
-
-#: Cura/gui/configWizard.py:383
-msgid "Do not upgrade to this firmware if:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:384
-msgid "* You have an older machine based on ATMega1280"
-msgstr ""
-
-#: Cura/gui/configWizard.py:385
-msgid "* Have other changes in the firmware"
-msgstr ""
-
-#: Cura/gui/configWizard.py:419
-msgid ""
-"It is a good idea to do a few sanity checks now on your Ultimaker.\n"
-"You can skip these if you know your machine is functional."
-msgstr ""
-
-#: Cura/gui/configWizard.py:420
-msgid "Run checks"
-msgstr ""
-
-#: Cura/gui/configWizard.py:420
-msgid "Skip checks"
-msgstr ""
-
-#: Cura/gui/configWizard.py:424
-msgid "Communication:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:425
-msgid "Temperature:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:426
-msgid "Endstops:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:431
-msgid "Show error log"
-msgstr ""
-
-#: Cura/gui/configWizard.py:465
-msgid "Connecting to machine."
-msgstr ""
-
-#: Cura/gui/configWizard.py:486
-msgid "Cooldown before temperature check."
-msgstr ""
-
-#: Cura/gui/configWizard.py:492 Cura/gui/configWizard.py:499
-msgid "Checking the heater and temperature sensor."
-msgstr ""
-
-#: Cura/gui/configWizard.py:510
-msgid "Please make sure none of the endstops are pressed."
-msgstr ""
-
-#: Cura/gui/configWizard.py:523
-msgid "Temperature measurement FAILED!"
-msgstr ""
-
-#: Cura/gui/configWizard.py:528
-#, python-format
-msgid "Head temperature: %d"
-msgstr ""
-
-#: Cura/gui/configWizard.py:535 Cura/gui/configWizard.py:544
-#, python-format
-msgid "Communication State: %s"
-msgstr ""
-
-#: Cura/gui/configWizard.py:538
-msgid "Failed to establish connection with the printer."
-msgstr ""
-
-#: Cura/gui/configWizard.py:583
-msgid "Please press the right X endstop."
-msgstr ""
-
-#: Cura/gui/configWizard.py:588
-msgid "Please press the left X endstop."
-msgstr ""
-
-#: Cura/gui/configWizard.py:593
-msgid "Please press the front Y endstop."
-msgstr ""
-
-#: Cura/gui/configWizard.py:598
-msgid "Please press the back Y endstop."
-msgstr ""
-
-#: Cura/gui/configWizard.py:603
-msgid "Please press the top Z endstop."
-msgstr ""
-
-#: Cura/gui/configWizard.py:608
-msgid "Please press the bottom Z endstop."
-msgstr ""
-
-#: Cura/gui/configWizard.py:614
-msgid "Checkup finished"
-msgstr ""
-
-#: Cura/gui/configWizard.py:657
-msgid "Calibrating the Steps Per E requires some manual actions."
-msgstr ""
-
-#: Cura/gui/configWizard.py:658
-msgid "First remove any filament from your machine."
-msgstr ""
-
-#: Cura/gui/configWizard.py:659
-msgid ""
-"Next put in your filament so the tip is aligned with the\n"
-"top of the extruder drive."
-msgstr ""
-
-#: Cura/gui/configWizard.py:660
-msgid "We'll push the filament 100mm"
-msgstr ""
-
-#: Cura/gui/configWizard.py:661
-msgid "Extrude 100mm filament"
-msgstr ""
-
-#: Cura/gui/configWizard.py:662
-msgid ""
-"Now measure the amount of extruded filament:\n"
-"(this can be more or less then 100mm)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:663
-msgid "Save"
-msgstr ""
-
-#: Cura/gui/configWizard.py:664
-msgid "This results in the following steps per E:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:666
-msgid "You can repeat these steps to get better calibration."
-msgstr ""
-
-#: Cura/gui/configWizard.py:669
-msgid ""
-"If you still have filament in your printer which needs\n"
-"heat to remove, press the heat up button below:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:670
-msgid "Heatup for filament removal"
-msgstr ""
-
-#: Cura/gui/configWizard.py:693 Cura/gui/configWizard.py:725
-msgid ""
-"Error: Failed to open serial port to machine\n"
-"If this keeps happening, try disconnecting and reconnecting the USB cable"
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:39
-msgid ""
-"I am sorry, but Cura does not ship with a default firmware for your machine "
-"configuration."
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:39 Cura/gui/firmwareInstall.py:98
-#: Cura/gui/mainWindow.py:455
-msgid "Firmware update"
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:49
-msgid "OK"
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:68
-msgid "Reading firmware..."
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:70
-msgid "Connecting to machine..."
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:87
-msgid "Uploading firmware..."
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:90
-#, python-format
-msgid ""
-"Done!\n"
-"Installed firmware: %s"
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:92
-msgid "Failed to write firmware.\n"
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:97
-msgid ""
-"Failed to find machine for firmware upgrade\n"
-"Is your machine connected to the PC?"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:54
-msgid "Load model file...\tCTRL+L"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:56
-msgid "Save model...\tCTRL+S"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:58
-msgid "Clear platform"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:62
-msgid "Print...\tCTRL+P"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:64 Cura/gui/sceneView.py:214
-msgid "Save GCode..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:66
-msgid "Show slice engine log..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:70
-msgid "Open Profile..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:73
-msgid "Save Profile..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:76
-msgid "Load Profile from GCode..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:80
-msgid "Reset Profile to default"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:85
-msgid "Preferences...\tCTRL+,"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:87
-msgid "Machine settings..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:93
-msgid "&Recent Model Files"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:100
-msgid "&Recent Profile Files"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:106
-msgid "Quit"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:108
-msgid "&File"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:112
-msgid "Switch to quickprint..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:116
-msgid "Switch to full settings..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:126
-msgid "Minecraft import..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:130
-msgid "PID Debugger..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:133
-msgid "Copy profile to clipboard"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:135
-msgid "Tools"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:141 Cura/util/profile.py:158
-msgid "Machine"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:144
-msgid "Open expert settings..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:148
-msgid "Run first run wizard..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:150
-msgid "Run bed leveling wizard..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:153
-msgid "Run head offset wizard..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:156
-msgid "Expert"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:159
-msgid "Online documentation..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:161
-msgid "Report a problem..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:163
-msgid "Check for update..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:165
-msgid "Open YouMagine website..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:167
-msgid "About Cura..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:169
-msgid "Help"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:387
-msgid "Add new machine..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:392
-msgid "Install custom firmware"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:394
-msgid "Install default Marlin firmware"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:398
-msgid "Select profile file to load"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:410
-msgid "Select gcode file to load profile from"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:423
-msgid ""
-"No profile found in GCode file.\n"
-"This feature only works with GCode files made by Cura 12.07 or newer."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:423
-msgid "Profile load error"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:427
-msgid "Select profile file to save"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:435
-msgid ""
-"This will reset all profile settings to defaults.\n"
-"Unless you have saved your current profile, all settings will be lost!\n"
-"Do you really want to reset?"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:435
-msgid "Profile reset"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:455
-msgid ""
-"Warning: Installing a custom firmware does not guarantee that you machine "
-"will function correctly, and could damage your machine."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:456
-msgid "Open firmware to upload"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:523
-msgid "You are running the latest version of Cura!"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:523
-msgid "Awesome!"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:535
-msgid "Copyright (C) David Braam"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:601
-msgid "Plugins"
-msgstr ""
-
-#: Cura/gui/pluginPanel.py:26
-msgid "Plugins:"
-msgstr ""
-
-#: Cura/gui/pluginPanel.py:30
-msgid "Open plugin location"
-msgstr ""
-
-#: Cura/gui/pluginPanel.py:31
-msgid "Enabled plugins"
-msgstr ""
-
-#: Cura/gui/pluginPanel.py:133
-msgid "You need to select a plugin before you can add anything."
-msgstr ""
-
-#: Cura/gui/pluginPanel.py:133
-msgid "Error: no plugin selected"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:24
-msgid "Colours"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:29
-msgid "Filament settings"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:39
-msgid "Cura settings"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:73
-msgid "Machine settings"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:82
-msgid "Printer head size"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:90
-#, python-format
-msgid "Extruder %d"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:94
-msgid "Communication settings"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:137
-msgid "Cannot remove the last machine configuration in Cura"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:137
-msgid "Machine remove error"
-msgstr ""
-
-#: Cura/gui/printWindow.py:129
-msgid "Printing"
-msgstr ""
-
-#: Cura/gui/printWindow.py:158
-msgid "Statistics"
-msgstr ""
-
-#: Cura/gui/printWindow.py:163
-msgid ""
-"Your computer is running on battery power.\n"
-"Connect your computer to AC power or your print might not finish."
-msgstr ""
-
-#: Cura/gui/printWindow.py:174
-msgid ""
-"Filament: ####.##m #.##g\n"
-"Estimated print time: #####:##\n"
-"Machine state:\n"
-"Detecting baudrateXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
-msgstr ""
-
-#: Cura/gui/printWindow.py:179
-msgid "Connect"
-msgstr ""
-
-#: Cura/gui/printWindow.py:181 Cura/gui/sceneView.py:64
-#: Cura/gui/sceneView.py:774
-msgid "Print"
-msgstr ""
-
-#: Cura/gui/printWindow.py:182 Cura/gui/printWindow.py:419
-msgid "Pause"
-msgstr ""
-
-#: Cura/gui/printWindow.py:183
-msgid "Cancel print"
-msgstr ""
-
-#: Cura/gui/printWindow.py:184
-msgid "Error log"
-msgstr ""
-
-#: Cura/gui/printWindow.py:205
-msgid "BedTemp:"
-msgstr ""
-
-#: Cura/gui/printWindow.py:213
-msgid "Temp:"
-msgstr ""
-
-#: Cura/gui/printWindow.py:261
-msgid "Jog"
-msgstr ""
-
-#: Cura/gui/printWindow.py:276
-msgid "Outer wall:"
-msgstr ""
-
-#: Cura/gui/printWindow.py:279
-msgid "Inner wall:"
-msgstr ""
-
-#: Cura/gui/printWindow.py:282
-msgid "Fill:"
-msgstr ""
-
-#: Cura/gui/printWindow.py:285
-msgid "Support:"
-msgstr ""
-
-#: Cura/gui/printWindow.py:289 Cura/util/profile.py:183
-#: Cura/util/profile.py:184 Cura/util/profile.py:185
-msgid "Speed"
-msgstr ""
-
-#: Cura/gui/printWindow.py:307
-msgid "Term"
-msgstr ""
-
-#: Cura/gui/printWindow.py:314
-msgid "Enable timelapse movie recording"
-msgstr ""
-
-#: Cura/gui/printWindow.py:328
-msgid "Show preview"
-msgstr ""
-
-#: Cura/gui/printWindow.py:334
-msgid "Camera"
-msgstr ""
-
-#: Cura/gui/printWindow.py:417
-msgid "Resume"
-msgstr ""
-
-#: Cura/gui/printWindow.py:434
-msgid "Loading gcode...\n"
-msgstr ""
-
-#: Cura/gui/printWindow.py:436
-#, python-format
-msgid "Filament: %(amount).2fm %(weight).2fg\n"
-msgstr ""
-
-#: Cura/gui/printWindow.py:439
-#, python-format
-msgid "Filament cost: %s\n"
-msgstr ""
-
-#: Cura/gui/sceneView.py:63
-msgid "Load"
-msgstr ""
-
-#: Cura/gui/sceneView.py:68
-msgid "Rotate"
-msgstr ""
-
-#: Cura/gui/sceneView.py:69
-msgid "Scale"
-msgstr ""
-
-#: Cura/gui/sceneView.py:70
-msgid "Mirror"
-msgstr ""
-
-#: Cura/gui/sceneView.py:72 Cura/gui/sceneView.py:75
-msgid "Reset"
-msgstr ""
-
-#: Cura/gui/sceneView.py:73
-msgid "Lay flat"
-msgstr ""
-
-#: Cura/gui/sceneView.py:76
-msgid "To max"
-msgstr ""
-
-#: Cura/gui/sceneView.py:78
-msgid "Mirror X"
-msgstr ""
-
-#: Cura/gui/sceneView.py:79
-msgid "Mirror Y"
-msgstr ""
-
-#: Cura/gui/sceneView.py:80
-msgid "Mirror Z"
-msgstr ""
-
-#: Cura/gui/sceneView.py:88
-msgid "Scale X"
-msgstr ""
-
-#: Cura/gui/sceneView.py:90
-msgid "Scale Y"
-msgstr ""
-
-#: Cura/gui/sceneView.py:92
-msgid "Scale Z"
-msgstr ""
-
-#: Cura/gui/sceneView.py:94
-msgid "Size X (mm)"
-msgstr ""
-
-#: Cura/gui/sceneView.py:96
-msgid "Size Y (mm)"
-msgstr ""
-
-#: Cura/gui/sceneView.py:98
-msgid "Size Z (mm)"
-msgstr ""
-
-#: Cura/gui/sceneView.py:100
-msgid "Uniform scale"
-msgstr ""
-
-#: Cura/gui/sceneView.py:103
-msgid "View mode"
-msgstr ""
-
-#: Cura/gui/sceneView.py:103
-msgid "Normal"
-msgstr ""
-
-#: Cura/gui/sceneView.py:103
-msgid "Overhang"
-msgstr ""
-
-#: Cura/gui/sceneView.py:103
-msgid "Transparent"
-msgstr ""
-
-#: Cura/gui/sceneView.py:103
-msgid "X-Ray"
-msgstr ""
-
-#: Cura/gui/sceneView.py:103
-msgid "Layers"
-msgstr ""
-
-#: Cura/gui/sceneView.py:106
-msgid "Share on YouMagine"
-msgstr ""
-
-#: Cura/gui/sceneView.py:168
-msgid "Open 3D model"
-msgstr ""
-
-#: Cura/gui/sceneView.py:183
-msgid "Save 3D model"
-msgstr ""
-
-#: Cura/gui/sceneView.py:213
-msgid "Print with USB"
-msgstr ""
-
-#: Cura/gui/sceneView.py:215
-msgid "Slice engine log..."
-msgstr ""
-
-#: Cura/gui/sceneView.py:229 Cura/gui/sceneView.py:780
-msgid "Save toolpath"
-msgstr ""
-
-#: Cura/gui/sceneView.py:266
-msgid "The slicing engine reported the following"
-msgstr ""
-
-#: Cura/gui/sceneView.py:266
-msgid "Engine log..."
-msgstr ""
-
-#: Cura/gui/sceneView.py:645
-msgid "Delete object"
-msgstr ""
-
-#: Cura/gui/sceneView.py:646
-msgid "Center on platform"
-msgstr ""
-
-#: Cura/gui/sceneView.py:647
-msgid "Multiply object"
-msgstr ""
-
-#: Cura/gui/sceneView.py:648
-msgid "Split object into parts"
-msgstr ""
-
-#: Cura/gui/sceneView.py:650
-msgid "Dual extrusion merge"
-msgstr ""
-
-#: Cura/gui/sceneView.py:652
-msgid "Delete all objects"
-msgstr ""
-
-#: Cura/gui/sceneView.py:777
-msgid "Toolpath to SD"
-msgstr ""
-
-#: Cura/gui/sceneView.py:1087
-msgid "Loading toolpath for visualization..."
-msgstr ""
-
-#: Cura/gui/sceneView.py:1138
-msgid "Overhang view not working due to lack of OpenGL shaders support."
-msgstr ""
-
-#: Cura/gui/simpleMode.py:20
-msgid "High quality print"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:21
-msgid "Normal quality print"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:22
-msgid "Fast low quality print"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:23
-msgid "Thin walled cup or vase"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:33
-msgid "Print support structure"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:38
-msgid "Select a print type:"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:48
-msgid "Material:"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:52
-msgid "Diameter:"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:58
-msgid "Other:"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:119
-msgid "Exterior Only"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:14
-msgid "Cura - Batch run"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:29
-msgid "Add"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:30
-msgid "Remove"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:31
-msgid "Prepare all"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:47
-msgid "Open file to batch prepare"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:134
-#, python-format
-msgid "Building: %d                           "
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:137
-#, python-format
-msgid "Done: 0/%d                           "
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:140
-msgid "Abort"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:163 Cura/gui/tools/batchRun.py:233
-msgid "Close"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:187
-#, python-format
-msgid "Build: %d models"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:188
-#, python-format
-msgid ""
-"\n"
-"Slicing took: %(hours)02d:%(minutes)02d"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:198
-#, python-format
-msgid "Building: [%(index)d/%(size)d]"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:214
-msgid "Aborted by user."
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:228
-#, python-format
-msgid "Done %(index)d/%(size)d"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:236
-msgid "To SDCard"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:79
-msgid "Checking token"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:83
-msgid "Failed to contact YouMagine.com"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:83 Cura/gui/tools/youmagineGui.py:116
-#: Cura/gui/tools/youmagineGui.py:133 Cura/gui/tools/youmagineGui.py:140
-#: Cura/gui/tools/youmagineGui.py:148 Cura/gui/tools/youmagineGui.py:153
-msgid "YouMagine error."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:100
-msgid "Cura is now authorized to share on YouMagine"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:100
-msgid "YouMagine."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:112
-msgid "Creating new design on YouMagine..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:116
-msgid "Failed to create a design, nothing uploaded!"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:120
-#, python-format
-msgid "Building model %s..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:131
-#, python-format
-msgid "Uploading model %s..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:133 Cura/gui/tools/youmagineGui.py:140
-#: Cura/gui/tools/youmagineGui.py:148
-#, python-format
-msgid "Failed to upload %s!"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:137
-#, python-format
-msgid "Uploading file %s..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:145
-#, python-format
-msgid "Uploading image %s..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:153
-msgid "Failed to upload snapshot!"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:158
-msgid "Publishing design..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:230
-msgid "Request authorization from YouMagine"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:231
-msgid "Paste token here"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:237
-msgid ""
-"To share your designs on YouMagine\n"
-"you need an account on YouMagine.com\n"
-"and authorize Cura to access your account."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:239
-msgid ""
-"This will open a browser window where you can\n"
-"authorize Cura to access your YouMagine account.\n"
-"You can revoke access at any time\n"
-"from YouMagine.com"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:274
-msgid "Design name"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:278
-msgid "Publish after upload"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:279
-msgid "Share!"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:287
-msgid "Add..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:289
-msgid "Webcam..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:297
-msgid ""
-"Directly publish the design after uploading.\n"
-"Without this check the design will not be public\n"
-"until you publish it yourself on YouMagine.com"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:303
-msgid "Design name:"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:305
-msgid "Description:"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:307
-msgid "Category:"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:309
-msgid "License:"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:312
-msgid "Images:"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:315
-msgid "Related design files:"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:338
-msgid "The name cannot be empty"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:338 Cura/gui/tools/youmagineGui.py:342
-msgid "New design error."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:342
-msgid "The description cannot be empty"
-msgstr ""
-
-#: Cura/gui/util/openglGui.py:239
-msgid "An error has occurred during the 3D view drawing."
-msgstr ""
-
-#: Cura/gui/util/openglGui.py:246
-msgid "3D window error"
-msgstr ""
-
-#: Cura/util/profile.py:153 Cura/util/profile.py:154 Cura/util/profile.py:155
-#: Cura/util/profile.py:179 Cura/util/profile.py:180 Cura/util/profile.py:182
-msgid "Quality"
-msgstr ""
-
-#: Cura/util/profile.py:153
-msgid "Layer height (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:153
-msgid ""
-"Layer height in millimeters.\n"
-"This is the most important setting to determine the quality of your print. "
-"Normal quality prints are 0.1mm, high quality is 0.06mm. You can go up to "
-"0.25mm with an Ultimaker for very fast prints at low quality."
-msgstr ""
-
-#: Cura/util/profile.py:154
-msgid "Shell thickness (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:154
-msgid ""
-"Thickness of the outside shell in the horizontal direction.\n"
-"This is used in combination with the nozzle size to define the number\n"
-"of perimeter lines and the thickness of those perimeter lines."
-msgstr ""
-
-#: Cura/util/profile.py:155
-msgid "Enable retraction"
-msgstr ""
-
-#: Cura/util/profile.py:155
-msgid ""
-"Retract the filament when the nozzle is moving over a none-printed area. "
-"Details about the retraction can be configured in the advanced tab."
-msgstr ""
-
-#: Cura/util/profile.py:156 Cura/util/profile.py:157
-msgid "Fill"
-msgstr ""
-
-#: Cura/util/profile.py:156
-msgid "Bottom/Top thickness (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:156
-msgid ""
-"This controls the thickness of the bottom and top layers, the amount of "
-"solid layers put down is calculated by the layer thickness and this value.\n"
-"Having this value a multiple of the layer thickness makes sense. And keep it "
-"near your wall thickness to make an evenly strong part."
-msgstr ""
-
-#: Cura/util/profile.py:157
-msgid "Fill Density (%)"
-msgstr ""
-
-#: Cura/util/profile.py:157
-msgid ""
-"This controls how densely filled the insides of your print will be. For a "
-"solid part use 100%, for an empty part use 0%. A value around 20% is usually "
-"enough.\n"
-"This won't effect the outside of the print and only adjusts how strong the "
-"part becomes."
-msgstr ""
-
-#: Cura/util/profile.py:158
-msgid ""
-"The nozzle size is very important, this is used to calculate the line width "
-"of the infill, and used to calculate the amount of outside wall lines and "
-"thickness for the wall thickness you entered in the print settings."
-msgstr ""
-
-#: Cura/util/profile.py:159 Cura/util/profile.py:160 Cura/util/profile.py:161
-#: Cura/util/profile.py:162 Cura/util/profile.py:163 Cura/util/profile.py:164
-msgid "Speed & Temperature"
-msgstr ""
-
-#: Cura/util/profile.py:159
-msgid "Print speed (mm/s)"
-msgstr ""
-
-#: Cura/util/profile.py:159
-msgid ""
-"Speed at which printing happens. A well adjusted Ultimaker can reach 150mm/"
-"s, but for good quality prints you want to print slower. Printing speed "
-"depends on a lot of factors. So you will be experimenting with optimal "
-"settings for this."
-msgstr ""
-
-#: Cura/util/profile.py:160
-msgid "Printing temperature (C)"
-msgstr ""
-
-#: Cura/util/profile.py:160 Cura/util/profile.py:161 Cura/util/profile.py:162
-#: Cura/util/profile.py:163
-msgid ""
-"Temperature used for printing. Set at 0 to pre-heat yourself.\n"
-"For PLA a value of 210C is usually used.\n"
-"For ABS a value of 230C or higher is required."
-msgstr ""
-
-#: Cura/util/profile.py:161
-msgid "2nd nozzle temperature (C)"
-msgstr ""
-
-#: Cura/util/profile.py:162
-msgid "3th nozzle temperature (C)"
-msgstr ""
-
-#: Cura/util/profile.py:163
-msgid "4th nozzle temperature (C)"
-msgstr ""
-
-#: Cura/util/profile.py:164
-msgid "Bed temperature (C)"
-msgstr ""
-
-#: Cura/util/profile.py:164
-msgid ""
-"Temperature used for the heated printer bed. Set at 0 to pre-heat yourself."
-msgstr ""
-
-#: Cura/util/profile.py:165 Cura/util/profile.py:166 Cura/util/profile.py:167
-#: Cura/util/profile.py:206 Cura/util/profile.py:207 Cura/util/profile.py:208
-msgid "Support"
-msgstr ""
-
-#: Cura/util/profile.py:165
-msgid "Support type"
-msgstr ""
-
-#: Cura/util/profile.py:165
-msgid ""
-"Type of support structure build.\n"
-"\"Touching buildplate\" is the most commonly used support setting.\n"
-"\n"
-"None does not do any support.\n"
-"Touching buildplate only creates support where the support structure will "
-"touch the build platform.\n"
-"Everywhere creates support even on top of parts of the model."
-msgstr ""
-
-#: Cura/util/profile.py:166
-msgid "Platform adhesion type"
-msgstr ""
-
-#: Cura/util/profile.py:166
-msgid ""
-"Different options that help in preventing corners from lifting due to "
-"warping.\n"
-"Brim adds a single layer thick flat area around your object which is easy to "
-"cut off afterwards, and the recommended option.\n"
-"Raft adds a thick raster at below the object and a thin interface between "
-"this and your object.\n"
-"(Note that enabling the brim or raft disables the skirt)"
-msgstr ""
-
-#: Cura/util/profile.py:167
-msgid "Support dual extrusion"
-msgstr ""
-
-#: Cura/util/profile.py:167
-msgid ""
-"Which extruder to use for support material, for break-away support you can "
-"use both extruders.\n"
-"But if one of the materials is more expensive then the other you could "
-"select an extruder to use for support material. This causes more extruder "
-"switches.\n"
-"You can also use the 2nd extruder for soluble support materials."
-msgstr ""
-
-#: Cura/util/profile.py:168 Cura/util/profile.py:169 Cura/util/profile.py:170
-#: Cura/util/profile.py:171 Cura/util/profile.py:172
-msgid "Filament"
-msgstr ""
-
-#: Cura/util/profile.py:168
-msgid "Diameter (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:168
-msgid ""
-"Diameter of your filament, as accurately as possible.\n"
-"If you cannot measure this value you will have to calibrate it, a higher "
-"number means less extrusion, a smaller number generates more extrusion."
-msgstr ""
-
-#: Cura/util/profile.py:169
-msgid "Diameter2 (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:169
-msgid ""
-"Diameter of your filament for the 2nd nozzle. Use 0 to use the same diameter "
-"as for nozzle 1."
-msgstr ""
-
-#: Cura/util/profile.py:170
-msgid "Diameter3 (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:170
-msgid ""
-"Diameter of your filament for the 3th nozzle. Use 0 to use the same diameter "
-"as for nozzle 1."
-msgstr ""
-
-#: Cura/util/profile.py:171
-msgid "Diameter4 (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:171
-msgid ""
-"Diameter of your filament for the 4th nozzle. Use 0 to use the same diameter "
-"as for nozzle 1."
-msgstr ""
-
-#: Cura/util/profile.py:172
-msgid "Flow (%)"
-msgstr ""
-
-#: Cura/util/profile.py:172
-msgid ""
-"Flow compensation, the amount of material extruded is multiplied by this "
-"value"
-msgstr ""
-
-#: Cura/util/profile.py:173 Cura/util/profile.py:174 Cura/util/profile.py:175
-#: Cura/util/profile.py:176 Cura/util/profile.py:177 Cura/util/profile.py:178
-msgid "Retraction"
-msgstr ""
-
-#: Cura/util/profile.py:173
-msgid "Speed (mm/s)"
-msgstr ""
-
-#: Cura/util/profile.py:173
-msgid ""
-"Speed at which the filament is retracted, a higher retraction speed works "
-"better. But a very high retraction speed can lead to filament grinding."
-msgstr ""
-
-#: Cura/util/profile.py:174
-msgid "Distance (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:174
-msgid ""
-"Amount of retraction, set at 0 for no retraction at all. A value of 4.5mm "
-"seems to generate good results."
-msgstr ""
-
-#: Cura/util/profile.py:175
-msgid "Dual extrusion switch amount (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:175
-msgid ""
-"Amount of retraction when switching nozzle with dual-extrusion, set at 0 for "
-"no retraction at all. A value of 16.0mm seems to generate good results."
-msgstr ""
-
-#: Cura/util/profile.py:176
-msgid "Minimum travel (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:176
-msgid ""
-"Minimum amount of travel needed for a retraction to happen at all. To make "
-"sure you do not get a lot of retractions in a small area."
-msgstr ""
-
-#: Cura/util/profile.py:177
-msgid "Enable combing"
-msgstr ""
-
-#: Cura/util/profile.py:177
-msgid ""
-"Combing is the act of avoiding holes in the print for the head to travel "
-"over. If combing is disabled the printer head moves straight from the start "
-"point to the end point and it will always retract."
-msgstr ""
-
-#: Cura/util/profile.py:178
-msgid "Minimal extrusion before retracting (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:178
-msgid ""
-"The minimal amount of extrusion that needs to be done before retracting "
-"again if a retraction needs to happen before this minimal is reached the "
-"retraction is ignored.\n"
-"This avoids retraction a lot on the same piece of filament which flattens "
-"the filament and causes grinding issues."
-msgstr ""
-
-#: Cura/util/profile.py:179
-msgid "Initial layer thickness (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:179
-msgid ""
-"Layer thickness of the bottom layer. A thicker bottom layer makes sticking "
-"to the bed easier. Set to 0.0 to have the bottom layer thickness the same as "
-"the other layers."
-msgstr ""
-
-#: Cura/util/profile.py:180
-msgid "Cut off object bottom (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:180
-msgid ""
-"Sinks the object into the platform, this can be used for objects that do not "
-"have a flat bottom and thus create a too small first layer."
-msgstr ""
-
-#: Cura/util/profile.py:182
-msgid "Dual extrusion overlap (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:182
-msgid ""
-"Add a certain amount of overlapping extrusion on dual-extrusion prints. This "
-"bonds the different colors better together."
-msgstr ""
-
-#: Cura/util/profile.py:183
-msgid "Travel speed (mm/s)"
-msgstr ""
-
-#: Cura/util/profile.py:183
-msgid ""
-"Speed at which travel moves are done, a high quality build Ultimaker can "
-"reach speeds of 250mm/s. But some machines might miss steps then."
-msgstr ""
-
-#: Cura/util/profile.py:184
-msgid "Bottom layer speed (mm/s)"
-msgstr ""
-
-#: Cura/util/profile.py:184
-msgid ""
-"Print speed for the bottom layer, you want to print the first layer slower "
-"so it sticks better to the printer bed."
-msgstr ""
-
-#: Cura/util/profile.py:185
-msgid "Infill speed (mm/s)"
-msgstr ""
-
-#: Cura/util/profile.py:185
-msgid ""
-"Speed at which infill parts are printed. If set to 0 then the print speed is "
-"used for the infill. Printing the infill faster can greatly reduce printing, "
-"but this can negatively effect print quality.."
-msgstr ""
-
-#: Cura/util/profile.py:186 Cura/util/profile.py:187 Cura/util/profile.py:194
-#: Cura/util/profile.py:195 Cura/util/profile.py:196 Cura/util/profile.py:197
-#: Cura/util/profile.py:198
-msgid "Cool"
-msgstr ""
-
-#: Cura/util/profile.py:186
-msgid "Minimal layer time (sec)"
-msgstr ""
-
-#: Cura/util/profile.py:186
-msgid ""
-"Minimum time spend in a layer, gives the layer time to cool down before the "
-"next layer is put on top. If the layer will be placed down too fast the "
-"printer will slow down to make sure it has spend at least this amount of "
-"seconds printing this layer."
-msgstr ""
-
-#: Cura/util/profile.py:187
-msgid "Enable cooling fan"
-msgstr ""
-
-#: Cura/util/profile.py:187
-msgid ""
-"Enable the cooling fan during the print. The extra cooling from the cooling "
-"fan is essential during faster prints."
-msgstr ""
-
-#: Cura/util/profile.py:189
-msgid "Line count"
-msgstr ""
-
-#: Cura/util/profile.py:189
-msgid ""
-"The skirt is a line drawn around the object at the first layer. This helps "
-"to prime your extruder, and to see if the object fits on your platform.\n"
-"Setting this to 0 will disable the skirt. Multiple skirt lines can help "
-"priming your extruder better for small objects."
-msgstr ""
-
-#: Cura/util/profile.py:190
-msgid "Start distance (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:190
-msgid ""
-"The distance between the skirt and the first layer.\n"
-"This is the minimal distance, multiple skirt lines will be put outwards from "
-"this distance."
-msgstr ""
-
-#: Cura/util/profile.py:191
-msgid "Minimal length (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:191
-msgid ""
-"The minimal length of the skirt, if this minimal length is not reached it "
-"will add more skirt lines to reach this minimal lenght.\n"
-"Note: If the line count is set to 0 this is ignored."
-msgstr ""
-
-#: Cura/util/profile.py:194
-msgid "Fan on layer number"
-msgstr ""
-
-#: Cura/util/profile.py:194
-msgid ""
-"The layer at which the fan is turned on. The first layer is layer 0. The "
-"first layer can stick better if you turn on the fan on, on the 2nd layer."
-msgstr ""
-
-#: Cura/util/profile.py:195
-msgid "Fan speed min (%)"
-msgstr ""
-
-#: Cura/util/profile.py:195
-msgid ""
-"When the fan is turned on, it is enabled at this speed setting. If cool "
-"slows down the layer, the fan is adjusted between the min and max speed. "
-"Minimal fan speed is used if the layer is not slowed down due to cooling."
-msgstr ""
-
-#: Cura/util/profile.py:196
-msgid "Fan speed max (%)"
-msgstr ""
-
-#: Cura/util/profile.py:196
-msgid ""
-"When the fan is turned on, it is enabled at this speed setting. If cool "
-"slows down the layer, the fan is adjusted between the min and max speed. "
-"Maximal fan speed is used if the layer is slowed down due to cooling by more "
-"than 200%."
-msgstr ""
-
-#: Cura/util/profile.py:197
-msgid "Minimum speed (mm/s)"
-msgstr ""
-
-#: Cura/util/profile.py:197
-msgid ""
-"The minimal layer time can cause the print to slow down so much it starts to "
-"ooze. The minimal feedrate protects against this. Even if a print gets slown "
-"down it will never be slower than this minimal speed."
-msgstr ""
-
-#: Cura/util/profile.py:198
-msgid "Cool head lift"
-msgstr ""
-
-#: Cura/util/profile.py:198
-msgid ""
-"Lift the head if the minimal speed is hit because of cool slowdown, and wait "
-"the extra time so the minimal layer time is always hit."
-msgstr ""
-
-#: Cura/util/profile.py:203 Cura/util/profile.py:204 Cura/util/profile.py:205
-msgid "Infill"
-msgstr ""
-
-#: Cura/util/profile.py:203
-msgid "Solid infill top"
-msgstr ""
-
-#: Cura/util/profile.py:203
-msgid ""
-"Create a solid top surface, if set to false the top is filled with the fill "
-"percentage. Useful for cups/vases."
-msgstr ""
-
-#: Cura/util/profile.py:204
-msgid "Solid infill bottom"
-msgstr ""
-
-#: Cura/util/profile.py:204
-msgid ""
-"Create a solid bottom surface, if set to false the bottom is filled with the "
-"fill percentage. Useful for buildings."
-msgstr ""
-
-#: Cura/util/profile.py:205
-msgid "Infill overlap (%)"
-msgstr ""
-
-#: Cura/util/profile.py:205
-msgid ""
-"Amount of overlap between the infill and the walls. There is a slight "
-"overlap with the walls and the infill so the walls connect firmly to the "
-"infill."
-msgstr ""
-
-#: Cura/util/profile.py:206
-msgid "Fill amount (%)"
-msgstr ""
-
-#: Cura/util/profile.py:206
-#, python-format
-msgid ""
-"Amount of infill structure in the support material, less material gives "
-"weaker support which is easier to remove. 20% seems to be a good average."
-msgstr ""
-
-#: Cura/util/profile.py:207
-msgid "Distance X/Y (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:207
-msgid ""
-"Distance of the support material from the print, in the X/Y directions.\n"
-"0.7mm gives a nice distance from the print so the support does not stick to "
-"the print."
-msgstr ""
-
-#: Cura/util/profile.py:208
-msgid "Distance Z (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:208
-msgid ""
-"Distance from the top/bottom of the support to the print. A small gap here "
-"makes it easier to remove the support but makes the print a bit uglier.\n"
-"0.15mm gives a good seperation of the support material."
-msgstr ""
-
-#: Cura/util/profile.py:212
-msgid "Brim"
-msgstr ""
-
-#: Cura/util/profile.py:212
-msgid "Brim line amount"
-msgstr ""
-
-#: Cura/util/profile.py:212
-msgid ""
-"The amount of lines used for a brim, more lines means a larger brim which "
-"sticks better, but this also makes your effective print area smaller."
-msgstr ""
-
-#: Cura/util/profile.py:213 Cura/util/profile.py:214 Cura/util/profile.py:215
-#: Cura/util/profile.py:216 Cura/util/profile.py:217 Cura/util/profile.py:218
-msgid "Raft"
-msgstr ""
-
-#: Cura/util/profile.py:213
-msgid "Extra margin (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:213
-msgid ""
-"If the raft is enabled, this is the extra raft area around the object which "
-"is also rafted. Increasing this margin will create a stronger raft while "
-"using more material and leaving less are for your print."
-msgstr ""
-
-#: Cura/util/profile.py:214
-msgid "Line spacing (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:214
-msgid ""
-"When you are using the raft this is the distance between the centerlines of "
-"the raft line."
-msgstr ""
-
-#: Cura/util/profile.py:215
-msgid "Base thickness (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:215
-msgid ""
-"When you are using the raft this is the thickness of the base layer which is "
-"put down."
-msgstr ""
-
-#: Cura/util/profile.py:216
-msgid "Base line width (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:216
-msgid ""
-"When you are using the raft this is the width of the base layer lines which "
-"are put down."
-msgstr ""
-
-#: Cura/util/profile.py:217
-msgid "Interface thickness (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:217
-msgid ""
-"When you are using the raft this is the thickness of the interface layer "
-"which is put down."
-msgstr ""
-
-#: Cura/util/profile.py:218
-msgid "Interface line width (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:218
-msgid ""
-"When you are using the raft this is the width of the interface layer lines "
-"which are put down."
-msgstr ""
-
-#: Cura/util/profile.py:220 Cura/util/profile.py:221 Cura/util/profile.py:222
-#: Cura/util/profile.py:223
-msgid "Fix horrible"
-msgstr ""
-
-#: Cura/util/profile.py:220
-msgid "Combine everything (Type-A)"
-msgstr ""
-
-#: Cura/util/profile.py:220 Cura/util/profile.py:221
-msgid ""
-"This expert option adds all parts of the model together. The result is "
-"usually that internal cavities disappear. Depending on the model this can be "
-"intended or not. Enabling this option is at your own risk. Type-A is "
-"depended on the model normals and tries to keep some internal holes intact. "
-"Type-B ignores all internal holes and only keeps the outside shape per layer."
-msgstr ""
-
-#: Cura/util/profile.py:221
-msgid "Combine everything (Type-B)"
-msgstr ""
-
-#: Cura/util/profile.py:222
-msgid "Keep open faces"
-msgstr ""
-
-#: Cura/util/profile.py:222
-msgid ""
-"This expert option keeps all the open bits of the model intact. Normally "
-"Cura tries to stitch up small holes and remove everything with big holes, "
-"but this option keeps bits that are not properly part of anything and just "
-"goes with whatever it is left. This option is usually not what you want, but "
-"it might enable you to slice models otherwise failing to produce proper "
-"paths.\n"
-"As with all \"Fix horrible\" options, results may vary and use at your own "
-"risk."
-msgstr ""
-
-#: Cura/util/profile.py:223
-msgid "Extensive stitching"
-msgstr ""
-
-#: Cura/util/profile.py:223
-msgid ""
-"Extrensive stitching tries to fix up open holes in the model by closing the "
-"hole with touching polygons. This algorthm is quite expensive and could "
-"introduce a lot of processing time.\n"
-"As with all \"Fix horrible\" options, results may vary and use at your own "
-"risk."
-msgstr ""
-
-#: Cura/util/profile.py:338
-msgid "Save profile on slice"
-msgstr ""
-
-#: Cura/util/profile.py:338
-msgid ""
-"When slicing save the profile as [stl_file]_profile.ini next to the model."
-msgstr ""
-
-#: Cura/util/profile.py:339
-msgid "Cost (price/kg)"
-msgstr ""
-
-#: Cura/util/profile.py:339
-msgid "Cost of your filament per kg, to estimate the cost of the final print."
-msgstr ""
-
-#: Cura/util/profile.py:340
-msgid "Cost (price/m)"
-msgstr ""
-
-#: Cura/util/profile.py:340
-msgid ""
-"Cost of your filament per meter, to estimate the cost of the final print."
-msgstr ""
-
-#: Cura/util/profile.py:341
-msgid "Auto detect SD card drive"
-msgstr ""
-
-#: Cura/util/profile.py:341
-msgid ""
-"Auto detect the SD card. You can disable this because on some systems "
-"external hard-drives or USB sticks are detected as SD card."
-msgstr ""
-
-#: Cura/util/profile.py:342
-msgid "Check for updates"
-msgstr ""
-
-#: Cura/util/profile.py:342
-msgid "Check for newer versions of Cura on startup"
-msgstr ""
-
-#: Cura/util/profile.py:343
-msgid "Send usage statistics"
-msgstr ""
-
-#: Cura/util/profile.py:343
-msgid "Submit anonymous usage information to improve next versions of Cura"
-msgstr ""
-
-#: Cura/util/profile.py:345
-msgid "Density (kg/m3)"
-msgstr ""
-
-#: Cura/util/profile.py:345
-msgid ""
-"Weight of the filament per m3. Around 1240 for PLA. And around 1040 for ABS. "
-"This value is used to estimate the weight if the filament used for the print."
-msgstr ""
-
-#: Cura/util/profile.py:348
-msgid "Model colour"
-msgstr ""
-
-#: Cura/util/profile.py:349
-msgid "Model colour (2)"
-msgstr ""
-
-#: Cura/util/profile.py:350
-msgid "Model colour (3)"
-msgstr ""
-
-#: Cura/util/profile.py:351
-msgid "Model colour (4)"
-msgstr ""
-
-#: Cura/util/profile.py:362
-msgid "Maximum width (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:362 Cura/util/profile.py:363 Cura/util/profile.py:364
-msgid "Size of the machine in mm"
-msgstr ""
-
-#: Cura/util/profile.py:363
-msgid "Maximum depth (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:364
-msgid "Maximum height (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:367
-msgid ""
-"If you have an heated bed, this enabled heated bed settings (requires "
-"restart)"
-msgstr ""
-
-#: Cura/util/profile.py:368
-msgid "GCode Flavor"
-msgstr ""
-
-#: Cura/util/profile.py:368
-msgid ""
-"Flavor of generated GCode.\n"
-"RepRap is normal 5D GCode which works on Marlin/Sprinter based firmwares.\n"
-"UltiGCode is a variation of the RepRap GCode which puts more settings in the "
-"machine instead of the slicer."
-msgstr ""
-
-#: Cura/util/profile.py:369
-msgid "Extruder count"
-msgstr ""
-
-#: Cura/util/profile.py:369
-msgid "Amount of extruders in your machine."
-msgstr ""
-
-#: Cura/util/profile.py:370 Cura/util/profile.py:372 Cura/util/profile.py:374
-msgid "Offset X"
-msgstr ""
-
-#: Cura/util/profile.py:370 Cura/util/profile.py:371
-msgid "The offset of your secondary extruder compared to the primary."
-msgstr ""
-
-#: Cura/util/profile.py:371 Cura/util/profile.py:373 Cura/util/profile.py:375
-msgid "Offset Y"
-msgstr ""
-
-#: Cura/util/profile.py:372 Cura/util/profile.py:373
-msgid "The offset of your tertiary extruder compared to the primary."
-msgstr ""
-
-#: Cura/util/profile.py:374 Cura/util/profile.py:375
-msgid "The offset of your forth extruder compared to the primary."
-msgstr ""
-
-#: Cura/util/profile.py:376
-msgid "E-Steps per 1mm filament"
-msgstr ""
-
-#: Cura/util/profile.py:376
-msgid ""
-"Amount of steps per mm filament extrusion. If set to 0 then this value is "
-"ignored and the value in your firmware is used."
-msgstr ""
-
-#: Cura/util/profile.py:377
-msgid "Serial port"
-msgstr ""
-
-#: Cura/util/profile.py:377
-msgid "Serial port to use for communication with the printer"
-msgstr ""
-
-#: Cura/util/profile.py:379
-msgid "Baudrate"
-msgstr ""
-
-#: Cura/util/profile.py:379
-msgid ""
-"Speed of the serial port communication\n"
-"Needs to match your firmware settings\n"
-"Common values are 250000, 115200, 57600"
-msgstr ""
-
-#: Cura/util/profile.py:382
-msgid "Head size towards X min (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:382
-msgid ""
-"The head size when printing multiple objects, measured from the tip of the "
-"nozzle towards the outer part of the head. 75mm for an Ultimaker if the fan "
-"is on the left side."
-msgstr ""
-
-#: Cura/util/profile.py:383
-msgid "Head size towards Y min (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:383 Cura/util/profile.py:384
-msgid ""
-"The head size when printing multiple objects, measured from the tip of the "
-"nozzle towards the outer part of the head. 18mm for an Ultimaker if the fan "
-"is on the left side."
-msgstr ""
-
-#: Cura/util/profile.py:384
-msgid "Head size towards X max (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:385
-msgid "Head size towards Y max (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:385
-msgid ""
-"The head size when printing multiple objects, measured from the tip of the "
-"nozzle towards the outer part of the head. 35mm for an Ultimaker if the fan "
-"is on the left side."
-msgstr ""
-
-#: Cura/util/profile.py:386
-msgid "Printer gantry height (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:386
-msgid ""
-"The height of the gantry holding up the printer head. If an object is higher "
-"then this then you cannot print multiple objects one for one. 60mm for an "
-"Ultimaker."
-msgstr ""
+# SOME DESCRIPTIVE TITLE.\r
+# Copyright (C) 2013\r
+# This file is distributed under the same license as the Cura package.\r
+# Ilya Kulakov <kulakov.ilya@gmail.com>, 2013.\r
+#\r
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: Cura\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2013-10-01 15:32+0200\n"\r
+"PO-Revision-Date: 2013-09-27 09:41+0100\n"\r
+"Last-Translator: \n"\r
+"Language-Team: LANGUAGE <LL@li.org>\n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Generator: Poedit 1.5.7\n"\r
+\r
+#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:524\r
+msgid "A new version of Cura is available, would you like to download?"\r
+msgstr ""\r
+\r
+#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:524\r
+msgid "New version available"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:220\r
+msgid "Add new machine wizard"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:222\r
+msgid "First time run wizard"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:223\r
+msgid "Welcome, and thanks for trying Cura!"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:225\r
+msgid "This wizard will help you with the following steps:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:226\r
+msgid "* Configure Cura for your machine"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:227\r
+msgid "* Optionally upgrade your firmware"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:228\r
+msgid "* Optionally check if your machine is working safely"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:229\r
+msgid "* Optionally level your printer bed"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:239\r
+msgid ""\r
+"RepRap machines are vastly different, and there is no\n"\r
+"default configuration in Cura for any of them."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:240\r
+msgid ""\r
+"If you like a default profile for your machine added,\n"\r
+"then make an issue on github."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:242\r
+msgid "You will have to manually install Marlin or Sprinter firmware."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:244\r
+msgid "Machine name"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:245\r
+msgid "Machine width (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:246\r
+msgid "Machine depth (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:247\r
+msgid "Machine height (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:248 Cura/util/profile.py:158\r
+msgid "Nozzle size (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:249 Cura/util/profile.py:367\r
+msgid "Heated bed"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:250\r
+msgid "Bed center is 0,0,0 (RoStock)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:270\r
+msgid "Select your machine"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:271\r
+msgid "What kind of machine do you have:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:278\r
+msgid "Other (Ex: RepRap)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:281\r
+msgid ""\r
+"The collection of anonymous usage information helps with the continued "\r
+"improvement of Cura."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:282\r
+msgid ""\r
+"This does NOT submit your models online nor gathers any privacy related "\r
+"information."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:283\r
+msgid "Submit anonymous usage information:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:284\r
+msgid "For full details see: http://wiki.ultimaker.com/Cura:stats"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:346\r
+msgid "Select upgraded parts you have"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:347\r
+msgid ""\r
+"To assist you in having better default settings for your Ultimaker\n"\r
+"Cura would like to know which upgrades you have in your machine."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:349\r
+msgid "Extruder drive upgrade"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:350\r
+msgid "Heated printer bed (self built)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:351\r
+msgid "Dual extrusion (experimental)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:353\r
+msgid ""\r
+"If you have an Ultimaker bought after october 2012 you will have the\n"\r
+"Extruder drive upgrade. If you do not have this upgrade,\n"\r
+"it is highly recommended to improve reliability."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:354\r
+msgid ""\r
+"This upgrade can be bought from the Ultimaker webshop\n"\r
+"or found on thingiverse as thing:26094"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:373\r
+msgid "Upgrade Ultimaker Firmware"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:374\r
+msgid ""\r
+"Firmware is the piece of software running directly on your 3D printer.\n"\r
+"This firmware controls the step motors, regulates the temperature\n"\r
+"and ultimately makes your printer work."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:376\r
+msgid ""\r
+"The firmware shipping with new Ultimakers works, but upgrades\n"\r
+"have been made to make better prints, and make calibration easier."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:378\r
+msgid ""\r
+"Cura requires these new features and thus\n"\r
+"your firmware will most likely need to be upgraded.\n"\r
+"You will get the chance to do so now."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:383\r
+msgid "Do not upgrade to this firmware if:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:384\r
+msgid "* You have an older machine based on ATMega1280"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:385\r
+msgid "* Have other changes in the firmware"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:419\r
+msgid ""\r
+"It is a good idea to do a few sanity checks now on your Ultimaker.\n"\r
+"You can skip these if you know your machine is functional."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:420\r
+msgid "Run checks"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:420\r
+msgid "Skip checks"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:424\r
+msgid "Communication:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:425\r
+msgid "Temperature:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:426\r
+msgid "Endstops:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:431\r
+msgid "Show error log"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:465\r
+msgid "Connecting to machine."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:486\r
+msgid "Cooldown before temperature check."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:492 Cura/gui/configWizard.py:499\r
+msgid "Checking the heater and temperature sensor."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:510\r
+msgid "Please make sure none of the endstops are pressed."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:523\r
+msgid "Temperature measurement FAILED!"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:528\r
+#, python-format\r
+msgid "Head temperature: %d"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:535 Cura/gui/configWizard.py:544\r
+#, python-format\r
+msgid "Communication State: %s"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:538\r
+msgid "Failed to establish connection with the printer."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:583\r
+msgid "Please press the right X endstop."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:588\r
+msgid "Please press the left X endstop."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:593\r
+msgid "Please press the front Y endstop."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:598\r
+msgid "Please press the back Y endstop."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:603\r
+msgid "Please press the top Z endstop."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:608\r
+msgid "Please press the bottom Z endstop."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:614\r
+msgid "Checkup finished"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:657\r
+msgid "Calibrating the Steps Per E requires some manual actions."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:658\r
+msgid "First remove any filament from your machine."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:659\r
+msgid ""\r
+"Next put in your filament so the tip is aligned with the\n"\r
+"top of the extruder drive."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:660\r
+msgid "We'll push the filament 100mm"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:661\r
+msgid "Extrude 100mm filament"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:662\r
+msgid ""\r
+"Now measure the amount of extruded filament:\n"\r
+"(this can be more or less then 100mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:663\r
+msgid "Save"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:664\r
+msgid "This results in the following steps per E:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:666\r
+msgid "You can repeat these steps to get better calibration."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:669\r
+msgid ""\r
+"If you still have filament in your printer which needs\n"\r
+"heat to remove, press the heat up button below:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:670\r
+msgid "Heatup for filament removal"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:693 Cura/gui/configWizard.py:725\r
+msgid ""\r
+"Error: Failed to open serial port to machine\n"\r
+"If this keeps happening, try disconnecting and reconnecting the USB cable"\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:39\r
+msgid ""\r
+"I am sorry, but Cura does not ship with a default firmware for your machine "\r
+"configuration."\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:39 Cura/gui/firmwareInstall.py:98\r
+#: Cura/gui/mainWindow.py:459\r
+msgid "Firmware update"\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:49\r
+msgid "OK"\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:68\r
+msgid "Reading firmware..."\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:70\r
+msgid "Connecting to machine..."\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:87\r
+msgid "Uploading firmware..."\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:90\r
+#, python-format\r
+msgid ""\r
+"Done!\n"\r
+"Installed firmware: %s"\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:92\r
+msgid "Failed to write firmware.\n"\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:97\r
+msgid ""\r
+"Failed to find machine for firmware upgrade\n"\r
+"Is your machine connected to the PC?"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:56\r
+msgid "Load model file...\tCTRL+L"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:58\r
+msgid "Save model...\tCTRL+S"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:60\r
+msgid "Clear platform"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:64\r
+msgid "Print...\tCTRL+P"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:66 Cura/gui/sceneView.py:244\r
+msgid "Save GCode..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:68\r
+msgid "Show slice engine log..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:72\r
+msgid "Open Profile..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:75\r
+msgid "Save Profile..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:78\r
+msgid "Load Profile from GCode..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:82\r
+msgid "Reset Profile to default"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:87\r
+msgid "Preferences...\tCTRL+,"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:89\r
+msgid "Machine settings..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:95\r
+msgid "Recent Model Files"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:102\r
+msgid "Recent Profile Files"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:108\r
+msgid "Quit"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:110\r
+msgid "File"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:114\r
+msgid "Switch to quickprint..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:118\r
+msgid "Switch to full settings..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:128\r
+msgid "Minecraft map import..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:132\r
+msgid "PID Debugger..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:135\r
+msgid "Copy profile to clipboard"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:137\r
+msgid "Tools"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:143 Cura/util/profile.py:158\r
+msgid "Machine"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:146\r
+msgid "Open expert settings..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:150\r
+msgid "Run first run wizard..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:152\r
+msgid "Run bed leveling wizard..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:155\r
+msgid "Run head offset wizard..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:158\r
+msgid "Expert"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:161\r
+msgid "Online documentation..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:163\r
+msgid "Report a problem..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:165\r
+msgid "Check for update..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:167\r
+msgid "Open YouMagine website..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:169\r
+msgid "About Cura..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:171\r
+msgid "Help"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:391\r
+msgid "Add new machine..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:396\r
+msgid "Install custom firmware"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:398\r
+msgid "Install default Marlin firmware"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:402\r
+msgid "Select profile file to load"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:414\r
+msgid "Select gcode file to load profile from"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:427\r
+msgid ""\r
+"No profile found in GCode file.\n"\r
+"This feature only works with GCode files made by Cura 12.07 or newer."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:427\r
+msgid "Profile load error"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:431\r
+msgid "Select profile file to save"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:439\r
+msgid ""\r
+"This will reset all profile settings to defaults.\n"\r
+"Unless you have saved your current profile, all settings will be lost!\n"\r
+"Do you really want to reset?"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:439\r
+msgid "Profile reset"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:459\r
+msgid ""\r
+"Warning: Installing a custom firmware does not guarantee that you machine "\r
+"will function correctly, and could damage your machine."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:460\r
+msgid "Open firmware to upload"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:527\r
+msgid "You are running the latest version of Cura!"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:527\r
+msgid "Awesome!"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:583\r
+msgid "Plugins"\r
+msgstr ""\r
+\r
+#: Cura/gui/pluginPanel.py:26\r
+msgid "Plugins:"\r
+msgstr ""\r
+\r
+#: Cura/gui/pluginPanel.py:30\r
+msgid "Open plugin location"\r
+msgstr ""\r
+\r
+#: Cura/gui/pluginPanel.py:31\r
+msgid "Enabled plugins"\r
+msgstr ""\r
+\r
+#: Cura/gui/pluginPanel.py:133\r
+msgid "You need to select a plugin before you can add anything."\r
+msgstr ""\r
+\r
+#: Cura/gui/pluginPanel.py:133\r
+msgid "Error: no plugin selected"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:24\r
+msgid "Colours"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:29\r
+msgid "Filament settings"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:39\r
+msgid "Cura settings"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:73\r
+msgid "Machine settings"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:82\r
+msgid "Printer head size"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:90\r
+#, python-format\r
+msgid "Extruder %d"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:94\r
+msgid "Communication settings"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:137\r
+msgid "Cannot remove the last machine configuration in Cura"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:137\r
+msgid "Machine remove error"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:129\r
+msgid "Printing"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:158\r
+msgid "Statistics"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:163\r
+msgid ""\r
+"Your computer is running on battery power.\n"\r
+"Connect your computer to AC power or your print might not finish."\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:174\r
+msgid ""\r
+"Filament: ####.##m #.##g\n"\r
+"Estimated print time: #####:##\n"\r
+"Machine state:\n"\r
+"Detecting baudrateXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:179\r
+msgid "Connect"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:181 Cura/gui/sceneView.py:65\r
+#: Cura/gui/sceneView.py:804\r
+msgid "Print"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:182 Cura/gui/printWindow.py:419\r
+msgid "Pause"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:183\r
+msgid "Cancel print"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:184\r
+msgid "Error log"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:205\r
+msgid "BedTemp:"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:213\r
+msgid "Temp:"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:261\r
+msgid "Jog"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:276\r
+msgid "Outer wall:"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:279\r
+msgid "Inner wall:"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:282\r
+msgid "Fill:"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:285\r
+msgid "Support:"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:289 Cura/util/profile.py:183\r
+#: Cura/util/profile.py:184 Cura/util/profile.py:185\r
+msgid "Speed"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:307\r
+msgid "Term"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:314\r
+msgid "Enable timelapse movie recording"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:328\r
+msgid "Show preview"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:334\r
+msgid "Camera"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:417\r
+msgid "Resume"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:434\r
+msgid "Loading gcode...\n"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:436\r
+#, python-format\r
+msgid "Filament: %(amount).2fm %(weight).2fg\n"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:439\r
+#, python-format\r
+msgid "Filament cost: %s\n"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:64\r
+msgid "Load"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:69\r
+msgid "Rotate"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:70\r
+msgid "Scale"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:71\r
+msgid "Mirror"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:73 Cura/gui/sceneView.py:76\r
+msgid "Reset"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:74\r
+msgid "Lay flat"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:77\r
+msgid "To max"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:79\r
+msgid "Mirror X"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:80\r
+msgid "Mirror Y"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:81\r
+msgid "Mirror Z"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:89\r
+msgid "Scale X"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:91\r
+msgid "Scale Y"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:93\r
+msgid "Scale Z"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:95\r
+msgid "Size X (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:97\r
+msgid "Size Y (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:99\r
+msgid "Size Z (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:101\r
+msgid "Uniform scale"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:104\r
+msgid "View mode"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:104\r
+msgid "Normal"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:104\r
+msgid "Overhang"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:104\r
+msgid "Transparent"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:104\r
+msgid "X-Ray"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:104\r
+msgid "Layers"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:107\r
+msgid "Share on YouMagine"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:198\r
+msgid "Open 3D model"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:213\r
+msgid "Save 3D model"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:243\r
+msgid "Print with USB"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:245\r
+msgid "Slice engine log..."\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:257 Cura/gui/sceneView.py:810\r
+msgid "Save toolpath"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:296\r
+msgid "The slicing engine reported the following"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:296\r
+msgid "Engine log..."\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:675\r
+msgid "Delete object"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:676\r
+msgid "Center on platform"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:677\r
+msgid "Multiply object"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:678\r
+msgid "Split object into parts"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:680\r
+msgid "Dual extrusion merge"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:682\r
+msgid "Delete all objects"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:807\r
+msgid "Toolpath to SD"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:1117\r
+msgid "Loading toolpath for visualization..."\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:1168\r
+msgid "Overhang view not working due to lack of OpenGL shaders support."\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:20\r
+msgid "High quality print"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:21\r
+msgid "Normal quality print"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:22\r
+msgid "Fast low quality print"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:23\r
+msgid "Thin walled cup or vase"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:33\r
+msgid "Print support structure"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:38\r
+msgid "Select a print type:"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:48\r
+msgid "Material:"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:52\r
+msgid "Diameter:"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:58\r
+msgid "Other:"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:119\r
+msgid "Exterior Only"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:14\r
+msgid "Cura - Batch run"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:29\r
+msgid "Add"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:30\r
+msgid "Remove"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:31\r
+msgid "Prepare all"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:47\r
+msgid "Open file to batch prepare"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:134\r
+#, python-format\r
+msgid "Building: %d                           "\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:137\r
+#, python-format\r
+msgid "Done: 0/%d                           "\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:140\r
+msgid "Abort"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:163 Cura/gui/tools/batchRun.py:233\r
+msgid "Close"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:187\r
+#, python-format\r
+msgid "Build: %d models"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:188\r
+#, python-format\r
+msgid ""\r
+"\n"\r
+"Slicing took: %(hours)02d:%(minutes)02d"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:198\r
+#, python-format\r
+msgid "Building: [%(index)d/%(size)d]"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:214\r
+msgid "Aborted by user."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:228\r
+#, python-format\r
+msgid "Done %(index)d/%(size)d"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:236\r
+msgid "To SDCard"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:79\r
+msgid "Checking token"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:83\r
+msgid "Failed to contact YouMagine.com"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:83 Cura/gui/tools/youmagineGui.py:116\r
+#: Cura/gui/tools/youmagineGui.py:133 Cura/gui/tools/youmagineGui.py:140\r
+#: Cura/gui/tools/youmagineGui.py:148 Cura/gui/tools/youmagineGui.py:153\r
+msgid "YouMagine error."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:100\r
+msgid "Cura is now authorized to share on YouMagine"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:100\r
+msgid "YouMagine."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:112\r
+msgid "Creating new design on YouMagine..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:116\r
+msgid "Failed to create a design, nothing uploaded!"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:120\r
+#, python-format\r
+msgid "Building model %s..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:131\r
+#, python-format\r
+msgid "Uploading model %s..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:133 Cura/gui/tools/youmagineGui.py:140\r
+#: Cura/gui/tools/youmagineGui.py:148\r
+#, python-format\r
+msgid "Failed to upload %s!"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:137\r
+#, python-format\r
+msgid "Uploading file %s..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:145\r
+#, python-format\r
+msgid "Uploading image %s..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:153\r
+msgid "Failed to upload snapshot!"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:158\r
+msgid "Publishing design..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:230\r
+msgid "Request authorization from YouMagine"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:231\r
+msgid "Paste token here"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:237\r
+msgid ""\r
+"To share your designs on YouMagine\n"\r
+"you need an account on YouMagine.com\n"\r
+"and authorize Cura to access your account."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:239\r
+msgid ""\r
+"This will open a browser window where you can\n"\r
+"authorize Cura to access your YouMagine account.\n"\r
+"You can revoke access at any time\n"\r
+"from YouMagine.com"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:274\r
+msgid "Design name"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:278\r
+msgid "Publish after upload"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:279\r
+msgid "Share!"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:287\r
+msgid "Add..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:289\r
+msgid "Webcam..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:297\r
+msgid ""\r
+"Directly publish the design after uploading.\n"\r
+"Without this check the design will not be public\n"\r
+"until you publish it yourself on YouMagine.com"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:303\r
+msgid "Design name:"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:305\r
+msgid "Description:"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:307\r
+msgid "Category:"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:309\r
+msgid "License:"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:312\r
+msgid "Images:"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:315\r
+msgid "Related design files:"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:338\r
+msgid "The name cannot be empty"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:338 Cura/gui/tools/youmagineGui.py:342\r
+msgid "New design error."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:342\r
+msgid "The description cannot be empty"\r
+msgstr ""\r
+\r
+#: Cura/gui/util/openglGui.py:239\r
+msgid "An error has occurred during the 3D view drawing."\r
+msgstr ""\r
+\r
+#: Cura/gui/util/openglGui.py:246\r
+msgid "3D window error"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:153 Cura/util/profile.py:154 Cura/util/profile.py:155\r
+#: Cura/util/profile.py:179 Cura/util/profile.py:180 Cura/util/profile.py:182\r
+msgid "Quality"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:153\r
+msgid "Layer height (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:153\r
+msgid ""\r
+"Layer height in millimeters.\n"\r
+"This is the most important setting to determine the quality of your print. "\r
+"Normal quality prints are 0.1mm, high quality is 0.06mm. You can go up to "\r
+"0.25mm with an Ultimaker for very fast prints at low quality."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:154\r
+msgid "Shell thickness (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:154\r
+msgid ""\r
+"Thickness of the outside shell in the horizontal direction.\n"\r
+"This is used in combination with the nozzle size to define the number\n"\r
+"of perimeter lines and the thickness of those perimeter lines."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:155\r
+msgid "Enable retraction"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:155\r
+msgid ""\r
+"Retract the filament when the nozzle is moving over a none-printed area. "\r
+"Details about the retraction can be configured in the advanced tab."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:156 Cura/util/profile.py:157\r
+msgid "Fill"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:156\r
+msgid "Bottom/Top thickness (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:156\r
+msgid ""\r
+"This controls the thickness of the bottom and top layers, the amount of "\r
+"solid layers put down is calculated by the layer thickness and this value.\n"\r
+"Having this value a multiple of the layer thickness makes sense. And keep it "\r
+"near your wall thickness to make an evenly strong part."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:157\r
+msgid "Fill Density (%)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:157\r
+msgid ""\r
+"This controls how densely filled the insides of your print will be. For a "\r
+"solid part use 100%, for an empty part use 0%. A value around 20% is usually "\r
+"enough.\n"\r
+"This won't effect the outside of the print and only adjusts how strong the "\r
+"part becomes."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:158\r
+msgid ""\r
+"The nozzle size is very important, this is used to calculate the line width "\r
+"of the infill, and used to calculate the amount of outside wall lines and "\r
+"thickness for the wall thickness you entered in the print settings."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:159 Cura/util/profile.py:160 Cura/util/profile.py:161\r
+#: Cura/util/profile.py:162 Cura/util/profile.py:163 Cura/util/profile.py:164\r
+msgid "Speed and Temperature"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:159\r
+msgid "Print speed (mm/s)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:159\r
+msgid ""\r
+"Speed at which printing happens. A well adjusted Ultimaker can reach 150mm/"\r
+"s, but for good quality prints you want to print slower. Printing speed "\r
+"depends on a lot of factors. So you will be experimenting with optimal "\r
+"settings for this."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:160\r
+msgid "Printing temperature (C)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:160 Cura/util/profile.py:161 Cura/util/profile.py:162\r
+#: Cura/util/profile.py:163\r
+msgid ""\r
+"Temperature used for printing. Set at 0 to pre-heat yourself.\n"\r
+"For PLA a value of 210C is usually used.\n"\r
+"For ABS a value of 230C or higher is required."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:161\r
+msgid "2nd nozzle temperature (C)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:162\r
+msgid "3th nozzle temperature (C)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:163\r
+msgid "4th nozzle temperature (C)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:164\r
+msgid "Bed temperature (C)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:164\r
+msgid ""\r
+"Temperature used for the heated printer bed. Set at 0 to pre-heat yourself."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165 Cura/util/profile.py:166\r
+msgid "None"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165\r
+msgid "Touching buildplate"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165\r
+msgid "Everywhere"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165 Cura/util/profile.py:166 Cura/util/profile.py:167\r
+#: Cura/util/profile.py:206 Cura/util/profile.py:207 Cura/util/profile.py:208\r
+msgid "Support"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165\r
+msgid "Support type"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165\r
+msgid ""\r
+"Type of support structure build.\n"\r
+"\"Touching buildplate\" is the most commonly used support setting.\n"\r
+"\n"\r
+"None does not do any support.\n"\r
+"Touching buildplate only creates support where the support structure will "\r
+"touch the build platform.\n"\r
+"Everywhere creates support even on top of parts of the model."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:166 Cura/util/profile.py:212\r
+msgid "Brim"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:166 Cura/util/profile.py:213 Cura/util/profile.py:214\r
+#: Cura/util/profile.py:215 Cura/util/profile.py:216 Cura/util/profile.py:217\r
+#: Cura/util/profile.py:218\r
+msgid "Raft"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:166\r
+msgid "Platform adhesion type"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:166\r
+msgid ""\r
+"Different options that help in preventing corners from lifting due to "\r
+"warping.\n"\r
+"Brim adds a single layer thick flat area around your object which is easy to "\r
+"cut off afterwards, and the recommended option.\n"\r
+"Raft adds a thick raster at below the object and a thin interface between "\r
+"this and your object.\n"\r
+"(Note that enabling the brim or raft disables the skirt)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:167\r
+msgid "Both"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:167\r
+msgid "First extruder"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:167\r
+msgid "Second extruder"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:167\r
+msgid "Support dual extrusion"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:167\r
+msgid ""\r
+"Which extruder to use for support material, for break-away support you can "\r
+"use both extruders.\n"\r
+"But if one of the materials is more expensive then the other you could "\r
+"select an extruder to use for support material. This causes more extruder "\r
+"switches.\n"\r
+"You can also use the 2nd extruder for soluble support materials."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:168 Cura/util/profile.py:169 Cura/util/profile.py:170\r
+#: Cura/util/profile.py:171 Cura/util/profile.py:172\r
+msgid "Filament"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:168\r
+msgid "Diameter (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:168\r
+msgid ""\r
+"Diameter of your filament, as accurately as possible.\n"\r
+"If you cannot measure this value you will have to calibrate it, a higher "\r
+"number means less extrusion, a smaller number generates more extrusion."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:169\r
+msgid "Diameter2 (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:169\r
+msgid ""\r
+"Diameter of your filament for the 2nd nozzle. Use 0 to use the same diameter "\r
+"as for nozzle 1."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:170\r
+msgid "Diameter3 (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:170\r
+msgid ""\r
+"Diameter of your filament for the 3th nozzle. Use 0 to use the same diameter "\r
+"as for nozzle 1."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:171\r
+msgid "Diameter4 (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:171\r
+msgid ""\r
+"Diameter of your filament for the 4th nozzle. Use 0 to use the same diameter "\r
+"as for nozzle 1."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:172\r
+msgid "Flow (%)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:172\r
+msgid ""\r
+"Flow compensation, the amount of material extruded is multiplied by this "\r
+"value"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:173 Cura/util/profile.py:174 Cura/util/profile.py:175\r
+#: Cura/util/profile.py:176 Cura/util/profile.py:177 Cura/util/profile.py:178\r
+msgid "Retraction"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:173\r
+msgid "Speed (mm/s)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:173\r
+msgid ""\r
+"Speed at which the filament is retracted, a higher retraction speed works "\r
+"better. But a very high retraction speed can lead to filament grinding."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:174\r
+msgid "Distance (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:174\r
+msgid ""\r
+"Amount of retraction, set at 0 for no retraction at all. A value of 4.5mm "\r
+"seems to generate good results."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:175\r
+msgid "Dual extrusion switch amount (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:175\r
+msgid ""\r
+"Amount of retraction when switching nozzle with dual-extrusion, set at 0 for "\r
+"no retraction at all. A value of 16.0mm seems to generate good results."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:176\r
+msgid "Minimum travel (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:176\r
+msgid ""\r
+"Minimum amount of travel needed for a retraction to happen at all. To make "\r
+"sure you do not get a lot of retractions in a small area."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:177\r
+msgid "Enable combing"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:177\r
+msgid ""\r
+"Combing is the act of avoiding holes in the print for the head to travel "\r
+"over. If combing is disabled the printer head moves straight from the start "\r
+"point to the end point and it will always retract."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:178\r
+msgid "Minimal extrusion before retracting (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:178\r
+msgid ""\r
+"The minimal amount of extrusion that needs to be done before retracting "\r
+"again if a retraction needs to happen before this minimal is reached the "\r
+"retraction is ignored.\n"\r
+"This avoids retraction a lot on the same piece of filament which flattens "\r
+"the filament and causes grinding issues."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:179\r
+msgid "Initial layer thickness (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:179\r
+msgid ""\r
+"Layer thickness of the bottom layer. A thicker bottom layer makes sticking "\r
+"to the bed easier. Set to 0.0 to have the bottom layer thickness the same as "\r
+"the other layers."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:180\r
+msgid "Cut off object bottom (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:180\r
+msgid ""\r
+"Sinks the object into the platform, this can be used for objects that do not "\r
+"have a flat bottom and thus create a too small first layer."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:182\r
+msgid "Dual extrusion overlap (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:182\r
+msgid ""\r
+"Add a certain amount of overlapping extrusion on dual-extrusion prints. This "\r
+"bonds the different colors better together."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:183\r
+msgid "Travel speed (mm/s)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:183\r
+msgid ""\r
+"Speed at which travel moves are done, a high quality build Ultimaker can "\r
+"reach speeds of 250mm/s. But some machines might miss steps then."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:184\r
+msgid "Bottom layer speed (mm/s)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:184\r
+msgid ""\r
+"Print speed for the bottom layer, you want to print the first layer slower "\r
+"so it sticks better to the printer bed."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:185\r
+msgid "Infill speed (mm/s)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:185\r
+msgid ""\r
+"Speed at which infill parts are printed. If set to 0 then the print speed is "\r
+"used for the infill. Printing the infill faster can greatly reduce printing, "\r
+"but this can negatively effect print quality.."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:186 Cura/util/profile.py:187 Cura/util/profile.py:194\r
+#: Cura/util/profile.py:195 Cura/util/profile.py:196 Cura/util/profile.py:197\r
+#: Cura/util/profile.py:198\r
+msgid "Cool"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:186\r
+msgid "Minimal layer time (sec)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:186\r
+msgid ""\r
+"Minimum time spend in a layer, gives the layer time to cool down before the "\r
+"next layer is put on top. If the layer will be placed down too fast the "\r
+"printer will slow down to make sure it has spend at least this amount of "\r
+"seconds printing this layer."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:187\r
+msgid "Enable cooling fan"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:187\r
+msgid ""\r
+"Enable the cooling fan during the print. The extra cooling from the cooling "\r
+"fan is essential during faster prints."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:189\r
+msgid "Line count"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:189\r
+msgid ""\r
+"The skirt is a line drawn around the object at the first layer. This helps "\r
+"to prime your extruder, and to see if the object fits on your platform.\n"\r
+"Setting this to 0 will disable the skirt. Multiple skirt lines can help "\r
+"priming your extruder better for small objects."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:190\r
+msgid "Start distance (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:190\r
+msgid ""\r
+"The distance between the skirt and the first layer.\n"\r
+"This is the minimal distance, multiple skirt lines will be put outwards from "\r
+"this distance."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:191\r
+msgid "Minimal length (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:191\r
+msgid ""\r
+"The minimal length of the skirt, if this minimal length is not reached it "\r
+"will add more skirt lines to reach this minimal lenght.\n"\r
+"Note: If the line count is set to 0 this is ignored."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:194\r
+msgid "Fan on layer number"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:194\r
+msgid ""\r
+"The layer at which the fan is turned on. The first layer is layer 0. The "\r
+"first layer can stick better if you turn on the fan on, on the 2nd layer."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:195\r
+msgid "Fan speed min (%)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:195\r
+msgid ""\r
+"When the fan is turned on, it is enabled at this speed setting. If cool "\r
+"slows down the layer, the fan is adjusted between the min and max speed. "\r
+"Minimal fan speed is used if the layer is not slowed down due to cooling."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:196\r
+msgid "Fan speed max (%)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:196\r
+msgid ""\r
+"When the fan is turned on, it is enabled at this speed setting. If cool "\r
+"slows down the layer, the fan is adjusted between the min and max speed. "\r
+"Maximal fan speed is used if the layer is slowed down due to cooling by more "\r
+"than 200%."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:197\r
+msgid "Minimum speed (mm/s)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:197\r
+msgid ""\r
+"The minimal layer time can cause the print to slow down so much it starts to "\r
+"ooze. The minimal feedrate protects against this. Even if a print gets slown "\r
+"down it will never be slower than this minimal speed."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:198\r
+msgid "Cool head lift"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:198\r
+msgid ""\r
+"Lift the head if the minimal speed is hit because of cool slowdown, and wait "\r
+"the extra time so the minimal layer time is always hit."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:203 Cura/util/profile.py:204 Cura/util/profile.py:205\r
+msgid "Infill"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:203\r
+msgid "Solid infill top"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:203\r
+msgid ""\r
+"Create a solid top surface, if set to false the top is filled with the fill "\r
+"percentage. Useful for cups/vases."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:204\r
+msgid "Solid infill bottom"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:204\r
+msgid ""\r
+"Create a solid bottom surface, if set to false the bottom is filled with the "\r
+"fill percentage. Useful for buildings."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:205\r
+msgid "Infill overlap (%)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:205\r
+msgid ""\r
+"Amount of overlap between the infill and the walls. There is a slight "\r
+"overlap with the walls and the infill so the walls connect firmly to the "\r
+"infill."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:206\r
+msgid "Fill amount (%)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:206\r
+#, python-format\r
+msgid ""\r
+"Amount of infill structure in the support material, less material gives "\r
+"weaker support which is easier to remove. 20% seems to be a good average."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:207\r
+msgid "Distance X/Y (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:207\r
+msgid ""\r
+"Distance of the support material from the print, in the X/Y directions.\n"\r
+"0.7mm gives a nice distance from the print so the support does not stick to "\r
+"the print."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:208\r
+msgid "Distance Z (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:208\r
+msgid ""\r
+"Distance from the top/bottom of the support to the print. A small gap here "\r
+"makes it easier to remove the support but makes the print a bit uglier.\n"\r
+"0.15mm gives a good seperation of the support material."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:212\r
+msgid "Brim line amount"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:212\r
+msgid ""\r
+"The amount of lines used for a brim, more lines means a larger brim which "\r
+"sticks better, but this also makes your effective print area smaller."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:213\r
+msgid "Extra margin (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:213\r
+msgid ""\r
+"If the raft is enabled, this is the extra raft area around the object which "\r
+"is also rafted. Increasing this margin will create a stronger raft while "\r
+"using more material and leaving less are for your print."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:214\r
+msgid "Line spacing (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:214\r
+msgid ""\r
+"When you are using the raft this is the distance between the centerlines of "\r
+"the raft line."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:215\r
+msgid "Base thickness (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:215\r
+msgid ""\r
+"When you are using the raft this is the thickness of the base layer which is "\r
+"put down."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:216\r
+msgid "Base line width (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:216\r
+msgid ""\r
+"When you are using the raft this is the width of the base layer lines which "\r
+"are put down."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:217\r
+msgid "Interface thickness (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:217\r
+msgid ""\r
+"When you are using the raft this is the thickness of the interface layer "\r
+"which is put down."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:218\r
+msgid "Interface line width (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:218\r
+msgid ""\r
+"When you are using the raft this is the width of the interface layer lines "\r
+"which are put down."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:220 Cura/util/profile.py:221 Cura/util/profile.py:222\r
+#: Cura/util/profile.py:223\r
+msgid "Fix horrible"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:220\r
+msgid "Combine everything (Type-A)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:220 Cura/util/profile.py:221\r
+msgid ""\r
+"This expert option adds all parts of the model together. The result is "\r
+"usually that internal cavities disappear. Depending on the model this can be "\r
+"intended or not. Enabling this option is at your own risk. Type-A is "\r
+"depended on the model normals and tries to keep some internal holes intact. "\r
+"Type-B ignores all internal holes and only keeps the outside shape per layer."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:221\r
+msgid "Combine everything (Type-B)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:222\r
+msgid "Keep open faces"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:222\r
+msgid ""\r
+"This expert option keeps all the open bits of the model intact. Normally "\r
+"Cura tries to stitch up small holes and remove everything with big holes, "\r
+"but this option keeps bits that are not properly part of anything and just "\r
+"goes with whatever it is left. This option is usually not what you want, but "\r
+"it might enable you to slice models otherwise failing to produce proper "\r
+"paths.\n"\r
+"As with all \"Fix horrible\" options, results may vary and use at your own "\r
+"risk."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:223\r
+msgid "Extensive stitching"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:223\r
+msgid ""\r
+"Extrensive stitching tries to fix up open holes in the model by closing the "\r
+"hole with touching polygons. This algorthm is quite expensive and could "\r
+"introduce a lot of processing time.\n"\r
+"As with all \"Fix horrible\" options, results may vary and use at your own "\r
+"risk."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:338\r
+msgid "Save profile on slice"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:338\r
+msgid ""\r
+"When slicing save the profile as [stl_file]_profile.ini next to the model."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:339\r
+msgid "Cost (price/kg)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:339\r
+msgid "Cost of your filament per kg, to estimate the cost of the final print."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:340\r
+msgid "Cost (price/m)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:340\r
+msgid ""\r
+"Cost of your filament per meter, to estimate the cost of the final print."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:341\r
+msgid "Auto detect SD card drive"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:341\r
+msgid ""\r
+"Auto detect the SD card. You can disable this because on some systems "\r
+"external hard-drives or USB sticks are detected as SD card."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:342\r
+msgid "Check for updates"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:342\r
+msgid "Check for newer versions of Cura on startup"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:343\r
+msgid "Send usage statistics"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:343\r
+msgid "Submit anonymous usage information to improve next versions of Cura"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:345\r
+msgid "Density (kg/m3)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:345\r
+msgid ""\r
+"Weight of the filament per m3. Around 1240 for PLA. And around 1040 for ABS. "\r
+"This value is used to estimate the weight if the filament used for the print."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:348\r
+msgid "Model colour"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:349\r
+msgid "Model colour (2)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:350\r
+msgid "Model colour (3)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:351\r
+msgid "Model colour (4)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:362\r
+msgid "Maximum width (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:362 Cura/util/profile.py:363 Cura/util/profile.py:364\r
+msgid "Size of the machine in mm"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:363\r
+msgid "Maximum depth (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:364\r
+msgid "Maximum height (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:367\r
+msgid ""\r
+"If you have an heated bed, this enabled heated bed settings (requires "\r
+"restart)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:368\r
+msgid "GCode Flavor"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:368\r
+msgid ""\r
+"Flavor of generated GCode.\n"\r
+"RepRap is normal 5D GCode which works on Marlin/Sprinter based firmwares.\n"\r
+"UltiGCode is a variation of the RepRap GCode which puts more settings in the "\r
+"machine instead of the slicer."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:369\r
+msgid "Extruder count"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:369\r
+msgid "Amount of extruders in your machine."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:370 Cura/util/profile.py:372 Cura/util/profile.py:374\r
+msgid "Offset X"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:370 Cura/util/profile.py:371\r
+msgid "The offset of your secondary extruder compared to the primary."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:371 Cura/util/profile.py:373 Cura/util/profile.py:375\r
+msgid "Offset Y"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:372 Cura/util/profile.py:373\r
+msgid "The offset of your tertiary extruder compared to the primary."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:374 Cura/util/profile.py:375\r
+msgid "The offset of your forth extruder compared to the primary."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:376\r
+msgid "E-Steps per 1mm filament"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:376\r
+msgid ""\r
+"Amount of steps per mm filament extrusion. If set to 0 then this value is "\r
+"ignored and the value in your firmware is used."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:377\r
+msgid "Serial port"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:377\r
+msgid "Serial port to use for communication with the printer"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:379\r
+msgid "Baudrate"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:379\r
+msgid ""\r
+"Speed of the serial port communication\n"\r
+"Needs to match your firmware settings\n"\r
+"Common values are 250000, 115200, 57600"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:382\r
+msgid "Head size towards X min (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:382\r
+msgid ""\r
+"The head size when printing multiple objects, measured from the tip of the "\r
+"nozzle towards the outer part of the head. 75mm for an Ultimaker if the fan "\r
+"is on the left side."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:383\r
+msgid "Head size towards Y min (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:383 Cura/util/profile.py:384\r
+msgid ""\r
+"The head size when printing multiple objects, measured from the tip of the "\r
+"nozzle towards the outer part of the head. 18mm for an Ultimaker if the fan "\r
+"is on the left side."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:384\r
+msgid "Head size towards X max (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:385\r
+msgid "Head size towards Y max (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:385\r
+msgid ""\r
+"The head size when printing multiple objects, measured from the tip of the "\r
+"nozzle towards the outer part of the head. 35mm for an Ultimaker if the fan "\r
+"is on the left side."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:386\r
+msgid "Printer gantry height (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:386\r
+msgid ""\r
+"The height of the gantry holding up the printer head. If an object is higher "\r
+"then this then you cannot print multiple objects one for one. 60mm for an "\r
+"Ultimaker."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:388\r
+#, python-format\r
+msgid "More flow then 150% is rare and usually not recommended."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:389\r
+#, python-format\r
+msgid "More flow then 50% is rare and usually not recommended."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:390\r
+#, python-format\r
+msgid ""\r
+"Thicker layers then %.2fmm (80%% nozzle size) usually give bad results and "\r
+"are not recommended."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:392\r
+msgid ""\r
+"It is highly unlikely that your machine can achieve a printing speed above "\r
+"150mm/s"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:394 Cura/util/profile.py:395 Cura/util/profile.py:396\r
+#: Cura/util/profile.py:397\r
+msgid "Temperatures above 260C could damage your machine, be careful!"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:398 Cura/util/profile.py:399 Cura/util/profile.py:400\r
+#: Cura/util/profile.py:401\r
+msgid ""\r
+"Are you sure your filament is that thick? Normal filament is around 3mm or "\r
+"1.75mm."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:402\r
+msgid ""\r
+"It is highly unlikely that your machine can achieve a travel speed above "\r
+"300mm/s"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:403\r
+#, python-format\r
+msgid ""\r
+"A bottom layer of more then %.2fmm (3/4 nozzle size) usually give bad "\r
+"results and is not recommended."\r
+msgstr ""\r
diff --git a/Cura/resources/locale/nl/LC_MESSAGES/Cura.mo b/Cura/resources/locale/nl/LC_MESSAGES/Cura.mo
new file mode 100644 (file)
index 0000000..0fd74a1
Binary files /dev/null and b/Cura/resources/locale/nl/LC_MESSAGES/Cura.mo differ
diff --git a/Cura/resources/locale/nl/LC_MESSAGES/Cura.po b/Cura/resources/locale/nl/LC_MESSAGES/Cura.po
new file mode 100644 (file)
index 0000000..72adf2e
--- /dev/null
@@ -0,0 +1,2456 @@
+# Copyright (C) 2013
+# This file is distributed under the same license as the Cura package.
+# Ilya Kulakov &lt;kulakov.ilya@gmail.com&gt;, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Cura\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-10-01 15:32+0200\n"
+"PO-Revision-Date: 2013-10-01 15:32+0100\n"
+"Last-Translator: \n"
+"Language-Team: LANGUAGE &lt;LL@li.org&gt;\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.5.7\n"
+
+#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:524
+msgid "A new version of Cura is available, would you like to download?"
+msgstr "Er is een nieuwere versie van Cura beschikbaar, wil je die downloaden?"
+
+#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:524
+msgid "New version available"
+msgstr "Nieuwe versie beschikbaar"
+
+#: Cura/gui/configWizard.py:220
+msgid "Add new machine wizard"
+msgstr "Wizard om een nieuwe machine toe te voegen"
+
+# Ik denk dat we dit misschien de 'Kalibreer wizard' moeten noemen
+#: Cura/gui/configWizard.py:222
+msgid "First time run wizard"
+msgstr "Wizard voor de eerste print"
+
+#: Cura/gui/configWizard.py:223
+msgid "Welcome, and thanks for trying Cura!"
+msgstr "Welkom en bedankt voor je keuze voor Cura!"
+
+#: Cura/gui/configWizard.py:225
+msgid "This wizard will help you with the following steps:"
+msgstr "Deze wizard helpt je bij de volgende stappen:"
+
+#: Cura/gui/configWizard.py:226
+msgid "* Configure Cura for your machine"
+msgstr "*Configureer Cura voor jouw machine"
+
+#: Cura/gui/configWizard.py:227
+msgid "* Optionally upgrade your firmware"
+msgstr "* Optie: Upgrade je firmware"
+
+#: Cura/gui/configWizard.py:228
+msgid "* Optionally check if your machine is working safely"
+msgstr "* Optie: Controleer of je machine veilig werkt"
+
+#: Cura/gui/configWizard.py:229
+msgid "* Optionally level your printer bed"
+msgstr "* Optie: nivelleer je print platform"
+
+#: Cura/gui/configWizard.py:239
+msgid ""
+"RepRap machines are vastly different, and there is no\n"
+"default configuration in Cura for any of them."
+msgstr ""
+"RepRap machines verschillen enigzins. Er is geen standaard configuratie in "
+"Cura voor enig model."
+
+#: Cura/gui/configWizard.py:240
+msgid ""
+"If you like a default profile for your machine added,\n"
+"then make an issue on github."
+msgstr ""
+"Wanneer je een standaard profiel voor je machine wenst, maak dan een issue "
+"aan op Github."
+
+#: Cura/gui/configWizard.py:242
+msgid "You will have to manually install Marlin or Sprinter firmware."
+msgstr "Je dient zelf handmatig Marlin of Sprinter firmware te installeren."
+
+#: Cura/gui/configWizard.py:244
+msgid "Machine name"
+msgstr "Machine naam"
+
+# Ik denk dat we hier duidelijker moeten schrijven dat het om de breedte van je printbereik gaat, voordat mensen de breedte van hun machine gaan opmeten...
+#: Cura/gui/configWizard.py:245
+msgid "Machine width (mm)"
+msgstr "Machine breedte (mm)"
+
+# Idem aan width
+#: Cura/gui/configWizard.py:246
+msgid "Machine depth (mm)"
+msgstr "Machine lengte (mm)"
+
+# Idem width
+#: Cura/gui/configWizard.py:247
+msgid "Machine height (mm)"
+msgstr "Machine hoogte (mm)"
+
+#: Cura/gui/configWizard.py:248 Cura/util/profile.py:158
+msgid "Nozzle size (mm)"
+msgstr "Nozzle maat (mm)"
+
+#: Cura/gui/configWizard.py:249 Cura/util/profile.py:367
+msgid "Heated bed"
+msgstr "Verwarmd platform"
+
+#: Cura/gui/configWizard.py:250
+msgid "Bed center is 0,0,0 (RoStock)"
+msgstr "Midden van platform is 0,0,0 (RoStock)"
+
+#: Cura/gui/configWizard.py:270
+msgid "Select your machine"
+msgstr "Selecteer je machine"
+
+#: Cura/gui/configWizard.py:271
+msgid "What kind of machine do you have:"
+msgstr "Wat voor een machine heb je:"
+
+#: Cura/gui/configWizard.py:278
+msgid "Other (Ex: RepRap)"
+msgstr "Anders (bv RepRap)"
+
+#: Cura/gui/configWizard.py:281
+msgid ""
+"The collection of anonymous usage information helps with the continued "
+"improvement of Cura."
+msgstr ""
+"Door anonieme gebruikers informatie te verzamelen kan Cura blijven "
+"verbeteren."
+
+#: Cura/gui/configWizard.py:282
+msgid ""
+"This does NOT submit your models online nor gathers any privacy related "
+"information."
+msgstr ""
+"Je model zal NIET online gepubliceerd worden. Het verzamelt ook geen privacy "
+"gevoelige informatie."
+
+#: Cura/gui/configWizard.py:283
+msgid "Submit anonymous usage information:"
+msgstr "Dien anomieme gebruiksinformatie in:"
+
+#: Cura/gui/configWizard.py:284
+msgid "For full details see: http://wiki.ultimaker.com/Cura:stats"
+msgstr "Kijk voor alle details op: http://wiki.ultimaker.com/Cura:stats"
+
+#: Cura/gui/configWizard.py:346
+msgid "Select upgraded parts you have"
+msgstr "Selecteer de upgrades die je hebt"
+
+#: Cura/gui/configWizard.py:347
+msgid ""
+"To assist you in having better default settings for your Ultimaker\n"
+"Cura would like to know which upgrades you have in your machine."
+msgstr ""
+"Cura wil graag weten welke upgrades jouw machine heeft zodat er betere "
+"standaard instellingen voor jouw Ultimaker gebruikt kunnen worden."
+
+#: Cura/gui/configWizard.py:349
+msgid "Extruder drive upgrade"
+msgstr "Upgrade van extrusie aandrijving"
+
+#: Cura/gui/configWizard.py:350
+msgid "Heated printer bed (self built)"
+msgstr "Verwarmd platform (zelf gemaakt)"
+
+#: Cura/gui/configWizard.py:351
+msgid "Dual extrusion (experimental)"
+msgstr "Duo extrusie (experimenteel)"
+
+#: Cura/gui/configWizard.py:353
+msgid ""
+"If you have an Ultimaker bought after october 2012 you will have the\n"
+"Extruder drive upgrade. If you do not have this upgrade,\n"
+"it is highly recommended to improve reliability."
+msgstr ""
+"Wanneer je jouw Ultimaker na oktober 2012 hebt aangeschaft, heb je de "
+"upgrade van de extrusie aandrijving. Voor de betrouwbaardheid van de machine "
+"wordt deze upgrade aangeraden wanneer je deze niet hebt."
+
+#: Cura/gui/configWizard.py:354
+msgid ""
+"This upgrade can be bought from the Ultimaker webshop\n"
+"or found on thingiverse as thing:26094"
+msgstr ""
+"Deze upgrade kan aangeschaft worden in de webshop van Ultimaker. De upgrade "
+"staat ook op thingiverse als ding:26094"
+
+#: Cura/gui/configWizard.py:373
+msgid "Upgrade Ultimaker Firmware"
+msgstr "Upgrade Ultimaker Firmware"
+
+#: Cura/gui/configWizard.py:374
+msgid ""
+"Firmware is the piece of software running directly on your 3D printer.\n"
+"This firmware controls the step motors, regulates the temperature\n"
+"and ultimately makes your printer work."
+msgstr ""
+"Firmware is software die op je machine zelf draait. Deze firmware stuurt de "
+"stappenmotoren aan en regelt de temperatuur. De firmware zorgt dat je "
+"printer uiteindelijk werkt."
+
+#: Cura/gui/configWizard.py:376
+msgid ""
+"The firmware shipping with new Ultimakers works, but upgrades\n"
+"have been made to make better prints, and make calibration easier."
+msgstr ""
+"De firmware die op een nieuwe Ultimaker staat werkt, maar er zijn ugrades "
+"gedaan om nog betere prints te maken en om de machine makkelijker te "
+"calibreren."
+
+#: Cura/gui/configWizard.py:378
+msgid ""
+"Cura requires these new features and thus\n"
+"your firmware will most likely need to be upgraded.\n"
+"You will get the chance to do so now."
+msgstr ""
+"Cura heeft deze nieuwe mogelijkheden nodig en zal hoogstwaarschijnlijk "
+"geupgrade moeten worden. Je krijgt nu de kans om dat te doen."
+
+#: Cura/gui/configWizard.py:383
+msgid "Do not upgrade to this firmware if:"
+msgstr "Upgrade niet naar deze firmware als:"
+
+#: Cura/gui/configWizard.py:384
+msgid "* You have an older machine based on ATMega1280"
+msgstr "* Je een oudere machine hebt die gebaseerd is op een ATMega1280"
+
+#: Cura/gui/configWizard.py:385
+msgid "* Have other changes in the firmware"
+msgstr "* Je andere wijzigingen in de firmware hebt"
+
+#: Cura/gui/configWizard.py:419
+msgid ""
+"It is a good idea to do a few sanity checks now on your Ultimaker.\n"
+"You can skip these if you know your machine is functional."
+msgstr ""
+"Het is handig om je machine nu op enkele punten te controleren.Je kan deze "
+"controle overslaan als je machine al goed is."
+
+#: Cura/gui/configWizard.py:420
+msgid "Run checks"
+msgstr "Doe een controle"
+
+#: Cura/gui/configWizard.py:420
+msgid "Skip checks"
+msgstr "Sla de controle over"
+
+#: Cura/gui/configWizard.py:424
+msgid "Communication:"
+msgstr "Communicatie:"
+
+#: Cura/gui/configWizard.py:425
+msgid "Temperature:"
+msgstr "Temperatuur:"
+
+#: Cura/gui/configWizard.py:426
+msgid "Endstops:"
+msgstr "Eindschakelaars:"
+
+#: Cura/gui/configWizard.py:431
+msgid "Show error log"
+msgstr "Laat de error log zien"
+
+#: Cura/gui/configWizard.py:465
+msgid "Connecting to machine."
+msgstr "Verbinding aan het maken met de machine"
+
+#: Cura/gui/configWizard.py:486
+msgid "Cooldown before temperature check."
+msgstr "Afkoelen voor de temperatuur controle"
+
+#: Cura/gui/configWizard.py:492 Cura/gui/configWizard.py:499
+msgid "Checking the heater and temperature sensor."
+msgstr "Controle van de verwarming en de de temperatuur sensor."
+
+#: Cura/gui/configWizard.py:510
+msgid "Please make sure none of the endstops are pressed."
+msgstr "Zorg ervoor dat geen enkele eindschakelaar is ingedrukt."
+
+#: Cura/gui/configWizard.py:523
+msgid "Temperature measurement FAILED!"
+msgstr "Temperatuur meting is MISLUKT!"
+
+#: Cura/gui/configWizard.py:528
+#, python-format
+msgid "Head temperature: %d"
+msgstr "Temperatuur van printkop: %d"
+
+#: Cura/gui/configWizard.py:535 Cura/gui/configWizard.py:544
+#, python-format
+msgid "Communication State: %s"
+msgstr "Communicatie status: %s"
+
+#: Cura/gui/configWizard.py:538
+msgid "Failed to establish connection with the printer."
+msgstr "Het is niet gelukt een verbinding te maken met de printer."
+
+#: Cura/gui/configWizard.py:583
+msgid "Please press the right X endstop."
+msgstr "Druk de rechter X eindschakaar in."
+
+#: Cura/gui/configWizard.py:588
+msgid "Please press the left X endstop."
+msgstr "Druk de linker X eindschakaar in."
+
+#: Cura/gui/configWizard.py:593
+msgid "Please press the front Y endstop."
+msgstr "Druk de voorste Y eindschakaar in."
+
+#: Cura/gui/configWizard.py:598
+msgid "Please press the back Y endstop."
+msgstr "Druk de achterste Y eindschakaar in."
+
+#: Cura/gui/configWizard.py:603
+msgid "Please press the top Z endstop."
+msgstr "Druk de onderste Y eindschakaar in."
+
+#: Cura/gui/configWizard.py:608
+msgid "Please press the bottom Z endstop."
+msgstr "Druk de bovenste Z eindschakaar in."
+
+#: Cura/gui/configWizard.py:614
+msgid "Checkup finished"
+msgstr "Controle gereed"
+
+#: Cura/gui/configWizard.py:657
+msgid "Calibrating the Steps Per E requires some manual actions."
+msgstr ""
+"Om de Stappen per E te kalibreren zijn enkele manuele handelingen nodig."
+
+#: Cura/gui/configWizard.py:658
+msgid "First remove any filament from your machine."
+msgstr "Haal eerst al het filament uit de machine."
+
+#: Cura/gui/configWizard.py:659
+msgid ""
+"Next put in your filament so the tip is aligned with the\n"
+"top of the extruder drive."
+msgstr ""
+"Voer nu je filament in. Zorg dat het uiteinde gelijk ligt met de bovenkant "
+"van de extrusie aandrijving."
+
+#: Cura/gui/configWizard.py:660
+msgid "We'll push the filament 100mm"
+msgstr "We zullen het filament 100 mm. doorvoeren"
+
+#: Cura/gui/configWizard.py:661
+msgid "Extrude 100mm filament"
+msgstr "Extrudeer 100 mm. filament"
+
+#: Cura/gui/configWizard.py:662
+msgid ""
+"Now measure the amount of extruded filament:\n"
+"(this can be more or less then 100mm)"
+msgstr ""
+"Meet nu de hoeveelheid geëxtrudeerd filament op (dit kan meer, maar ook "
+"minder zijn dan 100 mm.)"
+
+#: Cura/gui/configWizard.py:663
+msgid "Save"
+msgstr "Opslaan"
+
+#: Cura/gui/configWizard.py:664
+msgid "This results in the following steps per E:"
+msgstr "Dit resulteert in het volgende aantal stappen per E:"
+
+#: Cura/gui/configWizard.py:666
+msgid "You can repeat these steps to get better calibration."
+msgstr "Je kan deze stappen herhalen voor een betere kalibratie."
+
+#: Cura/gui/configWizard.py:669
+msgid ""
+"If you still have filament in your printer which needs\n"
+"heat to remove, press the heat up button below:"
+msgstr ""
+"Wanneer er nog filament in de printer zit, die warmte nodig heeft om het te "
+"verwijderen, druk dan op de verwarm knop hieronder:"
+
+#: Cura/gui/configWizard.py:670
+msgid "Heatup for filament removal"
+msgstr "Opwarmen voor het verwijderen van filament"
+
+#: Cura/gui/configWizard.py:693 Cura/gui/configWizard.py:725
+msgid ""
+"Error: Failed to open serial port to machine\n"
+"If this keeps happening, try disconnecting and reconnecting the USB cable"
+msgstr ""
+"Error: Het is niet gelukt via de seriele poort verbinding te maken. Wanneer "
+"dit probleem zich blijft herhalen, haal dan de USB kabel uit de printer en "
+"sluit deze opnieuw aan."
+
+#: Cura/gui/firmwareInstall.py:39
+msgid ""
+"I am sorry, but Cura does not ship with a default firmware for your machine "
+"configuration."
+msgstr ""
+"Sorry... Cura heeft geen standaard firmware voor de configuratie van jouw "
+"machine."
+
+#: Cura/gui/firmwareInstall.py:39 Cura/gui/firmwareInstall.py:98
+#: Cura/gui/mainWindow.py:459
+msgid "Firmware update"
+msgstr "Firmware update"
+
+#: Cura/gui/firmwareInstall.py:49
+msgid "OK"
+msgstr "Oké"
+
+#: Cura/gui/firmwareInstall.py:68
+msgid "Reading firmware..."
+msgstr "Firmware checken..."
+
+#: Cura/gui/firmwareInstall.py:70
+msgid "Connecting to machine..."
+msgstr "Verbinding maken met de machine..."
+
+#: Cura/gui/firmwareInstall.py:87
+msgid "Uploading firmware..."
+msgstr "Firmware aan het uploaden..."
+
+#: Cura/gui/firmwareInstall.py:90
+#, python-format
+msgid ""
+"Done!\n"
+"Installed firmware: %s"
+msgstr ""
+"Klaar!\n"
+"Firmware geïnstalleerd: %s"
+
+#: Cura/gui/firmwareInstall.py:92
+msgid "Failed to write firmware.\n"
+msgstr "Het is niet gelukt de firmware te uploaden. \n"
+
+#: Cura/gui/firmwareInstall.py:97
+msgid ""
+"Failed to find machine for firmware upgrade\n"
+"Is your machine connected to the PC?"
+msgstr ""
+"Geen machine gevonden om de firmware te upgraden\n"
+"Is je machine verbonden met de computer?"
+
+#: Cura/gui/mainWindow.py:56
+msgid "Load model file...\tCTRL+L"
+msgstr "Laad model...\tCTRL+L"
+
+#: Cura/gui/mainWindow.py:58
+msgid "Save model...\tCTRL+S"
+msgstr "Model opslaan...\tCTRL+S"
+
+#: Cura/gui/mainWindow.py:60
+msgid "Clear platform"
+msgstr "Maak het platform leeg"
+
+#: Cura/gui/mainWindow.py:64
+msgid "Print...\tCTRL+P"
+msgstr "Print...\tCTRL+P"
+
+#: Cura/gui/mainWindow.py:66 Cura/gui/sceneView.py:244
+msgid "Save GCode..."
+msgstr "Sla GCode op..."
+
+#: Cura/gui/mainWindow.py:68
+msgid "Show slice engine log..."
+msgstr "Toon slicer log..."
+
+#: Cura/gui/mainWindow.py:72
+msgid "Open Profile..."
+msgstr "Open Profiel..."
+
+#: Cura/gui/mainWindow.py:75
+msgid "Save Profile..."
+msgstr "Sla profiel op..."
+
+#: Cura/gui/mainWindow.py:78
+msgid "Load Profile from GCode..."
+msgstr "Laad Profiel uit GCode..."
+
+#: Cura/gui/mainWindow.py:82
+msgid "Reset Profile to default"
+msgstr "Reset Profiel naar standaard instellingen"
+
+#: Cura/gui/mainWindow.py:87
+msgid "Preferences...\tCTRL+,"
+msgstr "Voorkeuren...\tCTRL+,"
+
+#: Cura/gui/mainWindow.py:89
+msgid "Machine settings..."
+msgstr "Machine instellingen..."
+
+#: Cura/gui/mainWindow.py:95
+msgid "Recent Model Files"
+msgstr "Recente modellen"
+
+#: Cura/gui/mainWindow.py:102
+msgid "Recent Profile Files"
+msgstr "Recente Profielen"
+
+#: Cura/gui/mainWindow.py:108
+msgid "Quit"
+msgstr "Sluit"
+
+#: Cura/gui/mainWindow.py:110
+msgid "File"
+msgstr "Bestand"
+
+#: Cura/gui/mainWindow.py:114
+msgid "Switch to quickprint..."
+msgstr "Schakel over naar snelle print instellingen..."
+
+#: Cura/gui/mainWindow.py:118
+msgid "Switch to full settings..."
+msgstr "Schakel over naar de volledige instellingen"
+
+#: Cura/gui/mainWindow.py:128
+#, fuzzy
+msgid "Minecraft map import..."
+msgstr "Importeer Minecraft kaart data..."
+
+# Weet ik niet wat dit is en doet, vandaar de onzinnige vertaling
+#: Cura/gui/mainWindow.py:132
+msgid "PID Debugger..."
+msgstr "PID Muggendoder..."
+
+#: Cura/gui/mainWindow.py:135
+msgid "Copy profile to clipboard"
+msgstr "Kopieer profiel naar klembord"
+
+#: Cura/gui/mainWindow.py:137
+msgid "Tools"
+msgstr "Gereedschappen"
+
+#: Cura/gui/mainWindow.py:143 Cura/util/profile.py:158
+msgid "Machine"
+msgstr "Machine"
+
+#: Cura/gui/mainWindow.py:146
+msgid "Open expert settings..."
+msgstr "Open de expert instellingen"
+
+#: Cura/gui/mainWindow.py:150
+msgid "Run first run wizard..."
+msgstr "Open de startwizard"
+
+#: Cura/gui/mainWindow.py:152
+msgid "Run bed leveling wizard..."
+msgstr "Open de wizard om het platform te nivelleren"
+
+#: Cura/gui/mainWindow.py:155
+msgid "Run head offset wizard..."
+msgstr "Open de wizard "
+
+#: Cura/gui/mainWindow.py:158
+msgid "Expert"
+msgstr "Expert"
+
+#: Cura/gui/mainWindow.py:161
+msgid "Online documentation..."
+msgstr "Online documentatie"
+
+#: Cura/gui/mainWindow.py:163
+msgid "Report a problem..."
+msgstr "Meld een probleem..."
+
+#: Cura/gui/mainWindow.py:165
+msgid "Check for update..."
+msgstr "Controleer op updates..."
+
+#: Cura/gui/mainWindow.py:167
+msgid "Open YouMagine website..."
+msgstr "Open de YouMagine website..."
+
+#: Cura/gui/mainWindow.py:169
+msgid "About Cura..."
+msgstr "Over Cura..."
+
+#: Cura/gui/mainWindow.py:171
+msgid "Help"
+msgstr "Help"
+
+#: Cura/gui/mainWindow.py:391
+msgid "Add new machine..."
+msgstr "Voeg een nieuwe machine toe..."
+
+#: Cura/gui/mainWindow.py:396
+msgid "Install custom firmware"
+msgstr "Installeer je eigen firmware"
+
+#: Cura/gui/mainWindow.py:398
+msgid "Install default Marlin firmware"
+msgstr "Installeer de standaard Marlin firmware"
+
+#: Cura/gui/mainWindow.py:402
+msgid "Select profile file to load"
+msgstr "Selecteer een profiel om te laden"
+
+#: Cura/gui/mainWindow.py:414
+msgid "Select gcode file to load profile from"
+msgstr "Selecteer een GCode bestand om het profiel uit te laden"
+
+#: Cura/gui/mainWindow.py:427
+msgid ""
+"No profile found in GCode file.\n"
+"This feature only works with GCode files made by Cura 12.07 or newer."
+msgstr ""
+"Er is geen profiel gevonden in het GCode bestand.\n"
+"Deze feature werkt alleen wanneer GCode is gemaakt vanuit Cura nieuwe dan "
+"versie 12.07"
+
+#: Cura/gui/mainWindow.py:427
+msgid "Profile load error"
+msgstr "Fout bij het laden van het profiel"
+
+#: Cura/gui/mainWindow.py:431
+msgid "Select profile file to save"
+msgstr "Selecteer een profiel om op te slaan"
+
+#: Cura/gui/mainWindow.py:439
+msgid ""
+"This will reset all profile settings to defaults.\n"
+"Unless you have saved your current profile, all settings will be lost!\n"
+"Do you really want to reset?"
+msgstr ""
+"Dit zal alle profiel instellingen terug zetten naar de standaard waarden.\n"
+"Alle instellingen zullen verloren gaan, tenzij je je huidige profiel hebt "
+"opgeslagen!\n"
+"Wil je echt resetten?"
+
+#: Cura/gui/mainWindow.py:439
+msgid "Profile reset"
+msgstr "Reset profiel"
+
+#: Cura/gui/mainWindow.py:459
+msgid ""
+"Warning: Installing a custom firmware does not guarantee that you machine "
+"will function correctly, and could damage your machine."
+msgstr ""
+"Let op: Wanneer je je eigen firmware installeert, zou je machine niet goed "
+"kunnen werken en zou je je printer kunnen beschadigen."
+
+#: Cura/gui/mainWindow.py:460
+msgid "Open firmware to upload"
+msgstr "Open firmware om te installeren"
+
+#: Cura/gui/mainWindow.py:527
+msgid "You are running the latest version of Cura!"
+msgstr "Je hebt de nieuwste versie van Cura!"
+
+#: Cura/gui/mainWindow.py:527
+msgid "Awesome!"
+msgstr "Te gek!"
+
+#: Cura/gui/mainWindow.py:583
+msgid "Plugins"
+msgstr "Plugins"
+
+#: Cura/gui/pluginPanel.py:26
+msgid "Plugins:"
+msgstr "Plugins:"
+
+#: Cura/gui/pluginPanel.py:30
+msgid "Open plugin location"
+msgstr "Open de plugin locatie"
+
+#: Cura/gui/pluginPanel.py:31
+msgid "Enabled plugins"
+msgstr "Plugins aangezet"
+
+#: Cura/gui/pluginPanel.py:133
+msgid "You need to select a plugin before you can add anything."
+msgstr "Je dient een plugin te selecteren voordat je iets kan toevoegen."
+
+#: Cura/gui/pluginPanel.py:133
+msgid "Error: no plugin selected"
+msgstr "Fout: geen plugin geselecteerd"
+
+#: Cura/gui/preferencesDialog.py:24
+msgid "Colours"
+msgstr "Kleuren"
+
+#: Cura/gui/preferencesDialog.py:29
+msgid "Filament settings"
+msgstr "Filament instellingen"
+
+#: Cura/gui/preferencesDialog.py:39
+msgid "Cura settings"
+msgstr "Cura instellingen"
+
+#: Cura/gui/preferencesDialog.py:73
+msgid "Machine settings"
+msgstr "Machine instellingen"
+
+#: Cura/gui/preferencesDialog.py:82
+msgid "Printer head size"
+msgstr "Afmetingen printkop"
+
+#: Cura/gui/preferencesDialog.py:90
+#, python-format
+msgid "Extruder %d"
+msgstr "Extrusie %d"
+
+#: Cura/gui/preferencesDialog.py:94
+msgid "Communication settings"
+msgstr "Communicatie instellingen"
+
+#: Cura/gui/preferencesDialog.py:137
+msgid "Cannot remove the last machine configuration in Cura"
+msgstr "Kan de laatste machineconfiguratie niet verwijderen in Cura"
+
+#: Cura/gui/preferencesDialog.py:137
+msgid "Machine remove error"
+msgstr "Fout bij verwijderen van machine"
+
+#: Cura/gui/printWindow.py:129
+msgid "Printing"
+msgstr "Print"
+
+#: Cura/gui/printWindow.py:158
+msgid "Statistics"
+msgstr "Statistieken"
+
+#: Cura/gui/printWindow.py:163
+msgid ""
+"Your computer is running on battery power.\n"
+"Connect your computer to AC power or your print might not finish."
+msgstr ""
+"Je computer draait op een accu.\n"
+"Je print komt mogelijk niet af wanneer je je computer niet aansluit op het "
+"lichtnet."
+
+#: Cura/gui/printWindow.py:174
+msgid ""
+"Filament: ####.##m #.##g\n"
+"Estimated print time: #####:##\n"
+"Machine state:\n"
+"Detecting baudrateXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
+msgstr ""
+"Filament: ####.##m #.##g\n"
+"Geschatte print tijd: #####:##\n"
+"Machine status:\n"
+"Baudrate detecteren: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
+
+#: Cura/gui/printWindow.py:179
+msgid "Connect"
+msgstr "Verbinden"
+
+#: Cura/gui/printWindow.py:181 Cura/gui/sceneView.py:65
+#: Cura/gui/sceneView.py:804
+msgid "Print"
+msgstr "Printen"
+
+#: Cura/gui/printWindow.py:182 Cura/gui/printWindow.py:419
+msgid "Pause"
+msgstr "Pauze"
+
+#: Cura/gui/printWindow.py:183
+msgid "Cancel print"
+msgstr "Annuleer print"
+
+#: Cura/gui/printWindow.py:184
+msgid "Error log"
+msgstr "Fout log"
+
+#: Cura/gui/printWindow.py:205
+msgid "BedTemp:"
+msgstr "PlatformTemp:"
+
+#: Cura/gui/printWindow.py:213
+msgid "Temp:"
+msgstr "Temp:"
+
+#: Cura/gui/printWindow.py:261
+msgid "Jog"
+msgstr "Verplaats"
+
+#: Cura/gui/printWindow.py:276
+msgid "Outer wall:"
+msgstr "Buitenwand:"
+
+#: Cura/gui/printWindow.py:279
+msgid "Inner wall:"
+msgstr "Binnenwand:"
+
+#: Cura/gui/printWindow.py:282
+msgid "Fill:"
+msgstr "Vulling:"
+
+#: Cura/gui/printWindow.py:285
+msgid "Support:"
+msgstr "Ondersteuning:"
+
+#: Cura/gui/printWindow.py:289 Cura/util/profile.py:183
+#: Cura/util/profile.py:184 Cura/util/profile.py:185
+msgid "Speed"
+msgstr "Snelheid:"
+
+#: Cura/gui/printWindow.py:307
+msgid "Term"
+msgstr "Term"
+
+#: Cura/gui/printWindow.py:314
+msgid "Enable timelapse movie recording"
+msgstr "Maak het mogelijk om een timelapse op te nemen"
+
+#: Cura/gui/printWindow.py:328
+msgid "Show preview"
+msgstr "Toon voorvertoning"
+
+#: Cura/gui/printWindow.py:334
+msgid "Camera"
+msgstr "Camera"
+
+#: Cura/gui/printWindow.py:417
+msgid "Resume"
+msgstr "Ga door"
+
+#: Cura/gui/printWindow.py:434
+msgid "Loading gcode...\n"
+msgstr "GCode laden...\n"
+
+#: Cura/gui/printWindow.py:436
+#, python-format
+msgid "Filament: %(amount).2fm %(weight).2fg\n"
+msgstr "Filament: %(amount).2fm %(weight).2fg\n"
+
+#: Cura/gui/printWindow.py:439
+#, python-format
+msgid "Filament cost: %s\n"
+msgstr "Filament kosten: %s\n"
+
+#: Cura/gui/sceneView.py:64
+msgid "Load"
+msgstr "Laden"
+
+#: Cura/gui/sceneView.py:69
+msgid "Rotate"
+msgstr "Draaien"
+
+#: Cura/gui/sceneView.py:70
+msgid "Scale"
+msgstr "Verschalen"
+
+#: Cura/gui/sceneView.py:71
+msgid "Mirror"
+msgstr "Spiegelen"
+
+#: Cura/gui/sceneView.py:73 Cura/gui/sceneView.py:76
+msgid "Reset"
+msgstr "Reset"
+
+#: Cura/gui/sceneView.py:74
+msgid "Lay flat"
+msgstr "Leg plat"
+
+#: Cura/gui/sceneView.py:77
+msgid "To max"
+msgstr "Maximaal"
+
+#: Cura/gui/sceneView.py:79
+msgid "Mirror X"
+msgstr "Spiegel X"
+
+#: Cura/gui/sceneView.py:80
+msgid "Mirror Y"
+msgstr "Spiegel Y"
+
+#: Cura/gui/sceneView.py:81
+msgid "Mirror Z"
+msgstr "Spiegel Z"
+
+#: Cura/gui/sceneView.py:89
+msgid "Scale X"
+msgstr "Verschaal X"
+
+#: Cura/gui/sceneView.py:91
+msgid "Scale Y"
+msgstr "Verschaal Y"
+
+#: Cura/gui/sceneView.py:93
+msgid "Scale Z"
+msgstr "Verschaal Z"
+
+#: Cura/gui/sceneView.py:95
+msgid "Size X (mm)"
+msgstr "Afmeting X (mm)"
+
+#: Cura/gui/sceneView.py:97
+msgid "Size Y (mm)"
+msgstr "Afmeting Y (mm)"
+
+#: Cura/gui/sceneView.py:99
+msgid "Size Z (mm)"
+msgstr "Afmeting Z (mm)"
+
+#: Cura/gui/sceneView.py:101
+msgid "Uniform scale"
+msgstr "Uniform verschalen"
+
+#: Cura/gui/sceneView.py:104
+msgid "View mode"
+msgstr "Weergave modus"
+
+#: Cura/gui/sceneView.py:104
+msgid "Normal"
+msgstr "Normaal"
+
+#: Cura/gui/sceneView.py:104
+msgid "Overhang"
+msgstr "Overhang"
+
+#: Cura/gui/sceneView.py:104
+msgid "Transparent"
+msgstr "Transparant"
+
+#: Cura/gui/sceneView.py:104
+msgid "X-Ray"
+msgstr "Röntgen"
+
+#: Cura/gui/sceneView.py:104
+msgid "Layers"
+msgstr "Lagen"
+
+#: Cura/gui/sceneView.py:107
+msgid "Share on YouMagine"
+msgstr "Deel op YouMagine"
+
+#: Cura/gui/sceneView.py:198
+msgid "Open 3D model"
+msgstr "Open 3D model"
+
+#: Cura/gui/sceneView.py:213
+msgid "Save 3D model"
+msgstr "Sla 3D model op"
+
+#: Cura/gui/sceneView.py:243
+msgid "Print with USB"
+msgstr "Print via USB"
+
+#: Cura/gui/sceneView.py:245
+msgid "Slice engine log..."
+msgstr "Slicer log..."
+
+#: Cura/gui/sceneView.py:257 Cura/gui/sceneView.py:810
+msgid "Save toolpath"
+msgstr "Sla toolpad op"
+
+#: Cura/gui/sceneView.py:296
+msgid "The slicing engine reported the following"
+msgstr "De slicer geeft de volgende melding"
+
+#: Cura/gui/sceneView.py:296
+msgid "Engine log..."
+msgstr "Logboek..."
+
+#: Cura/gui/sceneView.py:675
+msgid "Delete object"
+msgstr "Verwijder object"
+
+#: Cura/gui/sceneView.py:676
+msgid "Center on platform"
+msgstr "Centreer op platform"
+
+#: Cura/gui/sceneView.py:677
+msgid "Multiply object"
+msgstr "Vermenigvuldig object"
+
+#: Cura/gui/sceneView.py:678
+msgid "Split object into parts"
+msgstr "Deel object op in onderdelen"
+
+#: Cura/gui/sceneView.py:680
+msgid "Dual extrusion merge"
+msgstr "Voeg duo extrusie samen"
+
+#: Cura/gui/sceneView.py:682
+msgid "Delete all objects"
+msgstr "Verwijder alle objecten"
+
+# Misschien GCode noemen in plaats van Toolpath
+#: Cura/gui/sceneView.py:807
+msgid "Toolpath to SD"
+msgstr "Toolpad naar SD"
+
+#: Cura/gui/sceneView.py:1117
+msgid "Loading toolpath for visualization..."
+msgstr "Toolpad aan het laden voor visualisatie..."
+
+#: Cura/gui/sceneView.py:1168
+msgid "Overhang view not working due to lack of OpenGL shaders support."
+msgstr ""
+"De voorvertoning van de overhang is niet mogelijk omdat OpenGL dit niet "
+"ondersteunt."
+
+#: Cura/gui/simpleMode.py:20
+msgid "High quality print"
+msgstr "Hoge kwaliteit"
+
+#: Cura/gui/simpleMode.py:21
+msgid "Normal quality print"
+msgstr "Normale kwaliteit"
+
+#: Cura/gui/simpleMode.py:22
+msgid "Fast low quality print"
+msgstr "Snelle en lage kwaliteit"
+
+#: Cura/gui/simpleMode.py:23
+msgid "Thin walled cup or vase"
+msgstr "Dunwandig kopje of vaas"
+
+#: Cura/gui/simpleMode.py:33
+msgid "Print support structure"
+msgstr "Print ondersteuningsmateriaal"
+
+#: Cura/gui/simpleMode.py:38
+msgid "Select a print type:"
+msgstr "Selecteer een printmodus:"
+
+#: Cura/gui/simpleMode.py:48
+msgid "Material:"
+msgstr "Materiaal:"
+
+#: Cura/gui/simpleMode.py:52
+msgid "Diameter:"
+msgstr "Diameter:"
+
+#: Cura/gui/simpleMode.py:58
+msgid "Other:"
+msgstr "Anders:"
+
+#: Cura/gui/simpleMode.py:119
+msgid "Exterior Only"
+msgstr "Alleen de buitenkant"
+
+# Weet niet wat dit doet, dus kon er ook geen vertaling voor bedenken
+#: Cura/gui/tools/batchRun.py:14
+msgid "Cura - Batch run"
+msgstr "Cura - Batch run"
+
+#: Cura/gui/tools/batchRun.py:29
+msgid "Add"
+msgstr "Voeg toe"
+
+#: Cura/gui/tools/batchRun.py:30
+msgid "Remove"
+msgstr "Verwijder"
+
+#: Cura/gui/tools/batchRun.py:31
+msgid "Prepare all"
+msgstr "Bereid alles voor"
+
+#: Cura/gui/tools/batchRun.py:47
+msgid "Open file to batch prepare"
+msgstr "Open bestand om batch voor te bereiden"
+
+#: Cura/gui/tools/batchRun.py:134
+#, python-format
+msgid "Building: %d                           "
+msgstr "Bouwt: %d"
+
+#: Cura/gui/tools/batchRun.py:137
+#, python-format
+msgid "Done: 0/%d                           "
+msgstr "Gedaan: 0/%d"
+
+#: Cura/gui/tools/batchRun.py:140
+msgid "Abort"
+msgstr "Onderbreek"
+
+#: Cura/gui/tools/batchRun.py:163 Cura/gui/tools/batchRun.py:233
+msgid "Close"
+msgstr "Sluit"
+
+#: Cura/gui/tools/batchRun.py:187
+#, python-format
+msgid "Build: %d models"
+msgstr "Gedaan: %d models"
+
+#: Cura/gui/tools/batchRun.py:188
+#, python-format
+msgid ""
+"\n"
+"Slicing took: %(hours)02d:%(minutes)02d"
+msgstr ""
+"\n"
+"Slicen duurde: %(hours)02d:%(minutes)02d"
+
+#: Cura/gui/tools/batchRun.py:198
+#, python-format
+msgid "Building: [%(index)d/%(size)d]"
+msgstr "Bouwt: [%(index)d/%(size)d]"
+
+#: Cura/gui/tools/batchRun.py:214
+msgid "Aborted by user."
+msgstr "Afgebroken door de gebruiker."
+
+#: Cura/gui/tools/batchRun.py:228
+#, python-format
+msgid "Done %(index)d/%(size)d"
+msgstr "Gedaan %(index)d/%(size)d"
+
+#: Cura/gui/tools/batchRun.py:236
+msgid "To SDCard"
+msgstr "Naar SD kaart"
+
+#: Cura/gui/tools/youmagineGui.py:79
+msgid "Checking token"
+msgstr "Token controleren"
+
+#: Cura/gui/tools/youmagineGui.py:83
+msgid "Failed to contact YouMagine.com"
+msgstr "Niet gelukt om te verbinden met YouMagine.com"
+
+#: Cura/gui/tools/youmagineGui.py:83 Cura/gui/tools/youmagineGui.py:116
+#: Cura/gui/tools/youmagineGui.py:133 Cura/gui/tools/youmagineGui.py:140
+#: Cura/gui/tools/youmagineGui.py:148 Cura/gui/tools/youmagineGui.py:153
+msgid "YouMagine error."
+msgstr "YouMagine fout."
+
+#: Cura/gui/tools/youmagineGui.py:100
+msgid "Cura is now authorized to share on YouMagine"
+msgstr "Cura heeft nu toestemming om te delen op YouMagine"
+
+#: Cura/gui/tools/youmagineGui.py:100
+msgid "YouMagine."
+msgstr "YouMagine."
+
+#: Cura/gui/tools/youmagineGui.py:112
+msgid "Creating new design on YouMagine..."
+msgstr "Maakt nieuw ontwerp op YouMagine..."
+
+#: Cura/gui/tools/youmagineGui.py:116
+msgid "Failed to create a design, nothing uploaded!"
+msgstr "Er is niets geupload! Het lukte niet om een ontwerp te maken."
+
+#: Cura/gui/tools/youmagineGui.py:120
+#, python-format
+msgid "Building model %s..."
+msgstr "Model bouwen %s..."
+
+#: Cura/gui/tools/youmagineGui.py:131
+#, python-format
+msgid "Uploading model %s..."
+msgstr "Model uploaden %s..."
+
+#: Cura/gui/tools/youmagineGui.py:133 Cura/gui/tools/youmagineGui.py:140
+#: Cura/gui/tools/youmagineGui.py:148
+#, python-format
+msgid "Failed to upload %s!"
+msgstr "Uploaden mislukt %s!"
+
+#: Cura/gui/tools/youmagineGui.py:137
+#, python-format
+msgid "Uploading file %s..."
+msgstr "Bestand uploaden %s..."
+
+#: Cura/gui/tools/youmagineGui.py:145
+#, python-format
+msgid "Uploading image %s..."
+msgstr "Afbeelding uploaden %s..."
+
+#: Cura/gui/tools/youmagineGui.py:153
+msgid "Failed to upload snapshot!"
+msgstr "Het uploaden van een snapshot is mislukt!"
+
+#: Cura/gui/tools/youmagineGui.py:158
+msgid "Publishing design..."
+msgstr "Ontwerp publiceren..."
+
+#: Cura/gui/tools/youmagineGui.py:230
+msgid "Request authorization from YouMagine"
+msgstr "Authorisatie vragen aan YouMagine"
+
+#: Cura/gui/tools/youmagineGui.py:231
+msgid "Paste token here"
+msgstr "Plak de token hier"
+
+#: Cura/gui/tools/youmagineGui.py:237
+msgid ""
+"To share your designs on YouMagine\n"
+"you need an account on YouMagine.com\n"
+"and authorize Cura to access your account."
+msgstr ""
+"Om je ontwerpen op YouMagine te delen heb je een account op YouMagine nodig "
+"en dien je Cura toegang tot je accont te verlenen."
+
+#: Cura/gui/tools/youmagineGui.py:239
+msgid ""
+"This will open a browser window where you can\n"
+"authorize Cura to access your YouMagine account.\n"
+"You can revoke access at any time\n"
+"from YouMagine.com"
+msgstr ""
+"Dit zal een browser scherm openen waar je Cura toestemming kan verlenen tot "
+"je YouMagine account. Je kan op elk moment toegang weigeren tot YouMagine.com"
+
+#: Cura/gui/tools/youmagineGui.py:274
+msgid "Design name"
+msgstr "Naam ontwerp"
+
+#: Cura/gui/tools/youmagineGui.py:278
+msgid "Publish after upload"
+msgstr "Publiceer na het uploaden"
+
+#: Cura/gui/tools/youmagineGui.py:279
+msgid "Share!"
+msgstr "Deel!"
+
+#: Cura/gui/tools/youmagineGui.py:287
+msgid "Add..."
+msgstr "Voeg toe..."
+
+#: Cura/gui/tools/youmagineGui.py:289
+msgid "Webcam..."
+msgstr "Webcam..."
+
+#: Cura/gui/tools/youmagineGui.py:297
+msgid ""
+"Directly publish the design after uploading.\n"
+"Without this check the design will not be public\n"
+"until you publish it yourself on YouMagine.com"
+msgstr ""
+"Publiceer het ontwerp direct na het uploaden.\n"
+"Zonder dit vinkje zal je ontwerp niet publiek zijn totdat je het zelf "
+"publiceert op YouMagine.com"
+
+#: Cura/gui/tools/youmagineGui.py:303
+msgid "Design name:"
+msgstr "Naam ontwerp:"
+
+#: Cura/gui/tools/youmagineGui.py:305
+msgid "Description:"
+msgstr "Beschrijving:"
+
+#: Cura/gui/tools/youmagineGui.py:307
+msgid "Category:"
+msgstr "Categorie:"
+
+#: Cura/gui/tools/youmagineGui.py:309
+msgid "License:"
+msgstr "Licentie:"
+
+#: Cura/gui/tools/youmagineGui.py:312
+msgid "Images:"
+msgstr "Afbeeldingen:"
+
+#: Cura/gui/tools/youmagineGui.py:315
+msgid "Related design files:"
+msgstr "Gerelateerde ontwerp bestanden:"
+
+#: Cura/gui/tools/youmagineGui.py:338
+msgid "The name cannot be empty"
+msgstr "De naam kan niet leeg blijven"
+
+#: Cura/gui/tools/youmagineGui.py:338 Cura/gui/tools/youmagineGui.py:342
+msgid "New design error."
+msgstr "Fout in nieuw ontwerp"
+
+#: Cura/gui/tools/youmagineGui.py:342
+msgid "The description cannot be empty"
+msgstr "De beschrijving kan niet leeg blijven"
+
+#: Cura/gui/util/openglGui.py:239
+msgid "An error has occurred during the 3D view drawing."
+msgstr "Er is een fout opgetreden tijdens de 3D vertoning van de tekening."
+
+#: Cura/gui/util/openglGui.py:246
+msgid "3D window error"
+msgstr "Fout in 3D scherm"
+
+#: Cura/util/profile.py:153 Cura/util/profile.py:154 Cura/util/profile.py:155
+#: Cura/util/profile.py:179 Cura/util/profile.py:180 Cura/util/profile.py:182
+msgid "Quality"
+msgstr "Kwaliteit"
+
+#: Cura/util/profile.py:153
+msgid "Layer height (mm)"
+msgstr "Laagdikte (mm)"
+
+#: Cura/util/profile.py:153
+msgid ""
+"Layer height in millimeters.\n"
+"This is the most important setting to determine the quality of your print. "
+"Normal quality prints are 0.1mm, high quality is 0.06mm. You can go up to "
+"0.25mm with an Ultimaker for very fast prints at low quality."
+msgstr ""
+"Laagdikte in millimeteres.\n"
+"Dit is de belangrijkste instelling om de kwaliteit van je print te bepalen. "
+"Normale kwaliteit is 0,1 mm., hoge kwaliteit is 0,06 mm. Je kan met je "
+"Ultimaker tot 0,25 mm. gaan voor snelle prints van lage kwaliteit."
+
+#: Cura/util/profile.py:154
+msgid "Shell thickness (mm)"
+msgstr "Wanddikte (mm)"
+
+#: Cura/util/profile.py:154
+msgid ""
+"Thickness of the outside shell in the horizontal direction.\n"
+"This is used in combination with the nozzle size to define the number\n"
+"of perimeter lines and the thickness of those perimeter lines."
+msgstr ""
+"Dikte van de buitenste laag in horizontale richting.\n"
+"Dit wordt gebruikt in combinatie met de afmeting van de printkop om het "
+"aantal lijnen en de dikte van deze lijnen te bepalen."
+
+#: Cura/util/profile.py:155
+msgid "Enable retraction"
+msgstr "Zet retractie aan"
+
+#: Cura/util/profile.py:155
+msgid ""
+"Retract the filament when the nozzle is moving over a none-printed area. "
+"Details about the retraction can be configured in the advanced tab."
+msgstr ""
+"Trekt het filament  terug wanneer de printkop over een deel beweegt waar "
+"niet geprint hoeft te worden. Details voor retractie kunnen ingesteld worden "
+"in het geavanceerde tabblad."
+
+#: Cura/util/profile.py:156 Cura/util/profile.py:157
+msgid "Fill"
+msgstr "Vulling"
+
+#: Cura/util/profile.py:156
+msgid "Bottom/Top thickness (mm)"
+msgstr "Bodem/Top dikte (mm)"
+
+#: Cura/util/profile.py:156
+msgid ""
+"This controls the thickness of the bottom and top layers, the amount of "
+"solid layers put down is calculated by the layer thickness and this value.\n"
+"Having this value a multiple of the layer thickness makes sense. And keep it "
+"near your wall thickness to make an evenly strong part."
+msgstr ""
+"Dit bepaalt de dikte van de bodem- en de bovenste laag. De hoeveelheid "
+"massieve lagen wordt berekend aan de hand van deze waarde en laagdikte.\n"
+"Het is logisch om deze waarde een veelvoud te laten zijn van de laagdikte. "
+"Voor een gelijke verdeling van de sterkte van het onderdeel is het aan te "
+"raden deze waarde ongeveer gelijk te laten zijn aan de wanddikte."
+
+#: Cura/util/profile.py:157
+msgid "Fill Density (%)"
+msgstr "Dichtheid vulling (%)"
+
+#: Cura/util/profile.py:157
+msgid ""
+"This controls how densely filled the insides of your print will be. For a "
+"solid part use 100%, for an empty part use 0%. A value around 20% is usually "
+"enough.\n"
+"This won't effect the outside of the print and only adjusts how strong the "
+"part becomes."
+msgstr ""
+"Dit bepaalt hoe massief de binnenkant van je print is. Gebruik 100% voor een "
+"massief onderdeel en 0% voor een hol onderdeel. Een waarde van 20% voldoet "
+"meestal.\n"
+"Dit beïnvloedt de buitenkant van de print niet! Het beïnvloedt de sterkte "
+"van het onderdeel."
+
+#: Cura/util/profile.py:158
+msgid ""
+"The nozzle size is very important, this is used to calculate the line width "
+"of the infill, and used to calculate the amount of outside wall lines and "
+"thickness for the wall thickness you entered in the print settings."
+msgstr ""
+"­­­­De afmeting van de nozzle is erg belangrijk, deze wordt gebruikt om de "
+"breedte van de lijn voor vulling te berekenen. Deze wordt ook gebruikt om "
+"het aantal en de dikte van de lijnen voor de buitenwand te berekenen die je "
+"bij de printinstellingen hebt ingevoerd."
+
+#: Cura/util/profile.py:159 Cura/util/profile.py:160 Cura/util/profile.py:161
+#: Cura/util/profile.py:162 Cura/util/profile.py:163 Cura/util/profile.py:164
+msgid "Speed and Temperature"
+msgstr "Snelheid en Temperatuur"
+
+#: Cura/util/profile.py:159
+msgid "Print speed (mm/s)"
+msgstr "Print snelheid (mm/s)"
+
+#: Cura/util/profile.py:159
+msgid ""
+"Speed at which printing happens. A well adjusted Ultimaker can reach 150mm/"
+"s, but for good quality prints you want to print slower. Printing speed "
+"depends on a lot of factors. So you will be experimenting with optimal "
+"settings for this."
+msgstr ""
+"Snelheid waarmee geprint wordt. Een goed afgestelde Ultimaker kan tot 150 mm/"
+"s bereiken, maar voor een goede kwaliteit zal je langzamer moeten printen. "
+"De printsnelheid hangt van veel factoren af. Je zal dus moeten "
+"experimenteren om jouw optimale snelheid te bepalen."
+
+#: Cura/util/profile.py:160
+msgid "Printing temperature (C)"
+msgstr "Print temperatuur (C)"
+
+#: Cura/util/profile.py:160 Cura/util/profile.py:161 Cura/util/profile.py:162
+#: Cura/util/profile.py:163
+msgid ""
+"Temperature used for printing. Set at 0 to pre-heat yourself.\n"
+"For PLA a value of 210C is usually used.\n"
+"For ABS a value of 230C or higher is required."
+msgstr ""
+"De temperatuur waarbij geprint wordt.\n"
+"Voor PLA wordt meestal 210C gebruikt.\n"
+"Voor ABS wordt meestal 230C of hoger gebruikt.\n"
+"Voer 0 in wanneer je zelf handmatig wil voorverwarmen."
+
+#: Cura/util/profile.py:161
+msgid "2nd nozzle temperature (C)"
+msgstr "Temperatuur 2de printkop (C)"
+
+#: Cura/util/profile.py:162
+msgid "3th nozzle temperature (C)"
+msgstr "Temperatuur 3de printkop (C)"
+
+#: Cura/util/profile.py:163
+msgid "4th nozzle temperature (C)"
+msgstr "Temperatuur 4de printkop (C)"
+
+#: Cura/util/profile.py:164
+msgid "Bed temperature (C)"
+msgstr "Temperatuur platform (C)"
+
+#: Cura/util/profile.py:164
+msgid ""
+"Temperature used for the heated printer bed. Set at 0 to pre-heat yourself."
+msgstr ""
+"Temperatuur voor een verwarmd platform. Voer 0 in wanneer je zelf handmatig "
+"voorverwarmt."
+
+#: Cura/util/profile.py:165 Cura/util/profile.py:166
+msgid "None"
+msgstr "Geen"
+
+#: Cura/util/profile.py:165
+msgid "Touching buildplate"
+msgstr "Contact met platform"
+
+#: Cura/util/profile.py:165
+msgid "Everywhere"
+msgstr "Overal"
+
+#: Cura/util/profile.py:165 Cura/util/profile.py:166 Cura/util/profile.py:167
+#: Cura/util/profile.py:206 Cura/util/profile.py:207 Cura/util/profile.py:208
+msgid "Support"
+msgstr "Ondersteuning"
+
+#: Cura/util/profile.py:165
+msgid "Support type"
+msgstr "Soort ondersteuning"
+
+#: Cura/util/profile.py:165
+msgid ""
+"Type of support structure build.\n"
+"\"Touching buildplate\" is the most commonly used support setting.\n"
+"\n"
+"None does not do any support.\n"
+"Touching buildplate only creates support where the support structure will "
+"touch the build platform.\n"
+"Everywhere creates support even on top of parts of the model."
+msgstr ""
+"\"Contact met platform\" genereert alleen ondersteuning vanaf het platform. "
+"Dit is de meest gebruikte support instelling.\n"
+"\"Geen\" wanneer je geen ondersteuning wilt gebruiken.\n"
+"\"Overal\" genereert ook ondersteuning in een model zelf."
+
+#: Cura/util/profile.py:166 Cura/util/profile.py:212
+msgid "Brim"
+msgstr "Boord"
+
+#: Cura/util/profile.py:166 Cura/util/profile.py:213 Cura/util/profile.py:214
+#: Cura/util/profile.py:215 Cura/util/profile.py:216 Cura/util/profile.py:217
+#: Cura/util/profile.py:218
+msgid "Raft"
+msgstr "Mat"
+
+#: Cura/util/profile.py:166
+msgid "Platform adhesion type"
+msgstr "Type adhesie aan platform "
+
+#: Cura/util/profile.py:166
+msgid ""
+"Different options that help in preventing corners from lifting due to "
+"warping.\n"
+"Brim adds a single layer thick flat area around your object which is easy to "
+"cut off afterwards, and the recommended option.\n"
+"Raft adds a thick raster at below the object and a thin interface between "
+"this and your object.\n"
+"(Note that enabling the brim or raft disables the skirt)"
+msgstr ""
+"Verschillende mogelijkheden helpen te voorkomen dat hoeken loslaten van het "
+"platform als gevolg van krimp van het materiaal.\n"
+"\"Brim\" voegt een enkele laag rondom je model toe. Deze is later "
+"gemakkelijk te verwijderen. Deze optie wordt aangeraden.\"Raft\" voegt een "
+"raster toe tussen het platform en het object.\n"
+"(Let op: Brim of raft heeft geen invloed op de Skirt)"
+
+#: Cura/util/profile.py:167
+msgid "Both"
+msgstr "Bijde"
+
+#: Cura/util/profile.py:167
+msgid "First extruder"
+msgstr "Eerste kop"
+
+#: Cura/util/profile.py:167
+msgid "Second extruder"
+msgstr "Tweede kop"
+
+#: Cura/util/profile.py:167
+msgid "Support dual extrusion"
+msgstr "Ondersteuning bij duo extrusie"
+
+#: Cura/util/profile.py:167
+msgid ""
+"Which extruder to use for support material, for break-away support you can "
+"use both extruders.\n"
+"But if one of the materials is more expensive then the other you could "
+"select an extruder to use for support material. This causes more extruder "
+"switches.\n"
+"You can also use the 2nd extruder for soluble support materials."
+msgstr ""
+"Welke printkop wil je gebruiken voor ondersteuningsmateriaal? Voor "
+"ondersteuning van het zelfde materiaal kan je beide printkoppen gebruiken.\n"
+"Wanneer het ene materiaal duurder is dan het andere kan je selecteren welke "
+"printkop voor het ondersteuningsmateriaal gebruikt wordt. Dit zorgt wel voor "
+"meer wisselingen tussen de printkoppen.\n"
+"Je kan de 2de printkop ook gebruiken voor oplosbaar ondersteuningsmateriaal."
+
+#: Cura/util/profile.py:168 Cura/util/profile.py:169 Cura/util/profile.py:170
+#: Cura/util/profile.py:171 Cura/util/profile.py:172
+msgid "Filament"
+msgstr "Filament"
+
+#: Cura/util/profile.py:168
+msgid "Diameter (mm)"
+msgstr "Diameter (mm)"
+
+#: Cura/util/profile.py:168
+msgid ""
+"Diameter of your filament, as accurately as possible.\n"
+"If you cannot measure this value you will have to calibrate it, a higher "
+"number means less extrusion, a smaller number generates more extrusion."
+msgstr ""
+"Diameter van je filament, zo nauwkeurig mogelijk.\n"
+"Wanneer je deze waarde niet kan meten, dien je deze te kalibreren. Een "
+"hogere waarde betekent minder materiaal een lager getal zorgt voor meer "
+"geëxtrudeerd materiaal."
+
+#: Cura/util/profile.py:169
+msgid "Diameter2 (mm)"
+msgstr "Diameter2 (mm)"
+
+#: Cura/util/profile.py:169
+msgid ""
+"Diameter of your filament for the 2nd nozzle. Use 0 to use the same diameter "
+"as for nozzle 1."
+msgstr ""
+"Diameter van het filament in de 2de printkop. Voer 0 in om dezelfde diameter "
+"te gebruiken als voor printkop 1."
+
+#: Cura/util/profile.py:170
+msgid "Diameter3 (mm)"
+msgstr "Diameter3 (mm)"
+
+#: Cura/util/profile.py:170
+msgid ""
+"Diameter of your filament for the 3th nozzle. Use 0 to use the same diameter "
+"as for nozzle 1."
+msgstr ""
+"Diameter van het filament in de 3de printkop. Voer 0 in om dezelfde diameter "
+"te gebruiken als voor printkop 1."
+
+#: Cura/util/profile.py:171
+msgid "Diameter4 (mm)"
+msgstr "Diameter4 (mm)"
+
+#: Cura/util/profile.py:171
+msgid ""
+"Diameter of your filament for the 4th nozzle. Use 0 to use the same diameter "
+"as for nozzle 1."
+msgstr ""
+"Diameter van het filament in de 4de printkop. Voer 0 in om dezelfde diameter "
+"te gebruiken als voor printkop 1."
+
+#: Cura/util/profile.py:172
+msgid "Flow (%)"
+msgstr "Flow (%)"
+
+#: Cura/util/profile.py:172
+msgid ""
+"Flow compensation, the amount of material extruded is multiplied by this "
+"value"
+msgstr ""
+"Compensatie van de flow, de hoeveelheid geëxtrudeerd materiaal wordt "
+"vermenigvuldigd met deze waarde."
+
+#: Cura/util/profile.py:173 Cura/util/profile.py:174 Cura/util/profile.py:175
+#: Cura/util/profile.py:176 Cura/util/profile.py:177 Cura/util/profile.py:178
+msgid "Retraction"
+msgstr "Terugtrekking"
+
+#: Cura/util/profile.py:173
+msgid "Speed (mm/s)"
+msgstr "Snelheid (mm/s)"
+
+#: Cura/util/profile.py:173
+msgid ""
+"Speed at which the filament is retracted, a higher retraction speed works "
+"better. But a very high retraction speed can lead to filament grinding."
+msgstr ""
+"Snelheid waarmee het filament wordt teruggetrokken. Een hogere snelheid "
+"werkt beter, maar een té hoge snelheid kan het filament beschadigen."
+
+#: Cura/util/profile.py:174
+msgid "Distance (mm)"
+msgstr "Afstand (mm)"
+
+#: Cura/util/profile.py:174
+msgid ""
+"Amount of retraction, set at 0 for no retraction at all. A value of 4.5mm "
+"seems to generate good results."
+msgstr ""
+"Hoeveelheid materiaal dat wordt teruggetrokken. Voer 0 in wanneer je geen "
+"terugtrekking wilt gebruiken. 4,5 mm geeft goede resultaten."
+
+#: Cura/util/profile.py:175
+msgid "Dual extrusion switch amount (mm)"
+msgstr ""
+"Sla ook meteen het profiel op als [stl_file]_profile.ini wanneer je een "
+"model slicet."
+
+#: Cura/util/profile.py:175
+msgid ""
+"Amount of retraction when switching nozzle with dual-extrusion, set at 0 for "
+"no retraction at all. A value of 16.0mm seems to generate good results."
+msgstr ""
+"Hoeveelheid retractie wanneer je duo extrusie gebruikt en tussen printkoppen "
+"wisselt. Voer 0 in voor geen terugtrekking. 16 mm geeft over het algemeen "
+"goede resultaten."
+
+#: Cura/util/profile.py:176
+msgid "Minimum travel (mm)"
+msgstr "Minimum doorvoer (mm)"
+
+#: Cura/util/profile.py:176
+msgid ""
+"Minimum amount of travel needed for a retraction to happen at all. To make "
+"sure you do not get a lot of retractions in a small area."
+msgstr ""
+"Minimale afstand om retractie te activeren. Dit zorgt ervoor dat je niet te "
+"veel terugtrekking hebt op een klein gebied."
+
+#: Cura/util/profile.py:177
+msgid "Enable combing"
+msgstr "Zet combing aan"
+
+#: Cura/util/profile.py:177
+msgid ""
+"Combing is the act of avoiding holes in the print for the head to travel "
+"over. If combing is disabled the printer head moves straight from the start "
+"point to the end point and it will always retract."
+msgstr ""
+"Omloop gebeurt wanneer de printkop gaten ontwijkt en er niet overheen "
+"beweegt. Wanneer omlopen aantaat zal de printer altijd retractie toepassen "
+"en recht van het start naar het eindpunt bewegen."
+
+#: Cura/util/profile.py:178
+msgid "Minimal extrusion before retracting (mm)"
+msgstr "Minimale extrusie voorafgaand aan terugtrekking (mm)"
+
+#: Cura/util/profile.py:178
+msgid ""
+"The minimal amount of extrusion that needs to be done before retracting "
+"again if a retraction needs to happen before this minimal is reached the "
+"retraction is ignored.\n"
+"This avoids retraction a lot on the same piece of filament which flattens "
+"the filament and causes grinding issues."
+msgstr ""
+"De minimale hoeveelheid extrusie die uitgevoerd moet worden voordat "
+"retractie nogmaals uitgevoerd kan worden. Wanneer retractie nodig is voordat "
+"deze hoeveelheid geextrudeerd is, wordt retractie genegeerd.\n"
+"Deze optie voorkomt te veel retractie op een korte afstand, omdat dat het "
+"filament te veel kan beschadigen."
+
+#: Cura/util/profile.py:179
+msgid "Initial layer thickness (mm)"
+msgstr "Dikte van de eerste laag (mm)"
+
+#: Cura/util/profile.py:179
+msgid ""
+"Layer thickness of the bottom layer. A thicker bottom layer makes sticking "
+"to the bed easier. Set to 0.0 to have the bottom layer thickness the same as "
+"the other layers."
+msgstr ""
+"Dikte van de eerste laag. Een dikkere eerste laag zorgt dat deze beter aan "
+"het platform hecht. Stel in op 0.0 om de eerste laag even dik te maken als "
+"de overige lagen."
+
+#: Cura/util/profile.py:180
+msgid "Cut off object bottom (mm)"
+msgstr "Model onderaan afsnijden (mm)"
+
+#: Cura/util/profile.py:180
+msgid ""
+"Sinks the object into the platform, this can be used for objects that do not "
+"have a flat bottom and thus create a too small first layer."
+msgstr ""
+"Dit laat het object in het platform zakken. Deze optie kan gebruikt worden "
+"voor objecten die geen vlakke onderkant hebben en dus een te kleine eerste "
+"laag hebben."
+
+#: Cura/util/profile.py:182
+msgid "Dual extrusion overlap (mm)"
+msgstr "Overlap bij duo extrusie (mm)"
+
+#: Cura/util/profile.py:182
+msgid ""
+"Add a certain amount of overlapping extrusion on dual-extrusion prints. This "
+"bonds the different colors better together."
+msgstr ""
+"Om een betere hechting tussen verschillende kleuren te krijgen bij duo "
+"extrusie voeg je een hoeveelheid overlap toe."
+
+#: Cura/util/profile.py:183
+msgid "Travel speed (mm/s)"
+msgstr "Verplaats snelheid (mm/s)"
+
+#: Cura/util/profile.py:183
+msgid ""
+"Speed at which travel moves are done, a high quality build Ultimaker can "
+"reach speeds of 250mm/s. But some machines might miss steps then."
+msgstr ""
+"De snelheid waarmee de printkop zich verplaatst wanneer deze niet print. Een "
+"Ultimaker kan tot 250 mm/s behalen, maar machines kunnen dan stappen gaan "
+"missen."
+
+#: Cura/util/profile.py:184
+msgid "Bottom layer speed (mm/s)"
+msgstr "Snelheid voor de eerste laag (mm/s)"
+
+#: Cura/util/profile.py:184
+msgid ""
+"Print speed for the bottom layer, you want to print the first layer slower "
+"so it sticks better to the printer bed."
+msgstr ""
+"Printsnelheid voor de eerste laag. De eerste laag kan je beter langzamer "
+"printen, zodat deze goed aan het platform hecht."
+
+#: Cura/util/profile.py:185
+msgid "Infill speed (mm/s)"
+msgstr "Snelheid voor vulling (mm/s)"
+
+#: Cura/util/profile.py:185
+msgid ""
+"Speed at which infill parts are printed. If set to 0 then the print speed is "
+"used for the infill. Printing the infill faster can greatly reduce printing, "
+"but this can negatively effect print quality.."
+msgstr ""
+"Snelheid waarmee de vulling wordt geprint. Wanneer hier 0 wordt ingevuld, "
+"wordt de vulling met de printsnelheid geprint. Wanneer je de vulling sneller "
+"print, kan dit de printsnelheid enorm verlagen, maar het kan ook de "
+"kwaliteit negatief beïnvloeden."
+
+#: Cura/util/profile.py:186 Cura/util/profile.py:187 Cura/util/profile.py:194
+#: Cura/util/profile.py:195 Cura/util/profile.py:196 Cura/util/profile.py:197
+#: Cura/util/profile.py:198
+msgid "Cool"
+msgstr "Koeling"
+
+#: Cura/util/profile.py:186
+msgid "Minimal layer time (sec)"
+msgstr "Minimale tijd per laag (sec)"
+
+#: Cura/util/profile.py:186
+msgid ""
+"Minimum time spend in a layer, gives the layer time to cool down before the "
+"next layer is put on top. If the layer will be placed down too fast the "
+"printer will slow down to make sure it has spend at least this amount of "
+"seconds printing this layer."
+msgstr ""
+"Minimale tijd per laag. Dit geeft de laag de tijd om af te koelen voordat de "
+"volgende laag erop gelegd wordt. De printer zal langzamer bewegen om de "
+"ingestelde minimum tijd aan een laag te besteden."
+
+#: Cura/util/profile.py:187
+msgid "Enable cooling fan"
+msgstr "Koelventilator aanzetten"
+
+#: Cura/util/profile.py:187
+msgid ""
+"Enable the cooling fan during the print. The extra cooling from the cooling "
+"fan is essential during faster prints."
+msgstr ""
+"Zet de koelventilator aan tijdens het printen. Extra koeling van de "
+"koelventilator is essentieel bij snellere prints."
+
+#: Cura/util/profile.py:189
+msgid "Line count"
+msgstr "Aantal lijnen"
+
+#: Cura/util/profile.py:189
+msgid ""
+"The skirt is a line drawn around the object at the first layer. This helps "
+"to prime your extruder, and to see if the object fits on your platform.\n"
+"Setting this to 0 will disable the skirt. Multiple skirt lines can help "
+"priming your extruder better for small objects."
+msgstr ""
+"De zoom is een lijn om het object heen die geprint wordt tijdens de eerste "
+"laag. Deze zorgt dat de printkop goed is doorgelopen voordat de print "
+"begint. Door de zoom zie je meteen of het object op het platform past.\n"
+"Wanneer je 0 invult begint de printer direct aan het object. Meerdere zomen "
+"zijn aan te raden bij kleine objecten."
+
+#: Cura/util/profile.py:190
+msgid "Start distance (mm)"
+msgstr "Start afstand (mm)"
+
+#: Cura/util/profile.py:190
+msgid ""
+"The distance between the skirt and the first layer.\n"
+"This is the minimal distance, multiple skirt lines will be put outwards from "
+"this distance."
+msgstr ""
+"De afstand van de zoom tot je object.\n"
+"Dit is de minimale afstand. Meerdere zomen zullen van het object af gelegd "
+"worden."
+
+#: Cura/util/profile.py:191
+msgid "Minimal length (mm)"
+msgstr "Mimale lengte (mm)"
+
+#: Cura/util/profile.py:191
+msgid ""
+"The minimal length of the skirt, if this minimal length is not reached it "
+"will add more skirt lines to reach this minimal lenght.\n"
+"Note: If the line count is set to 0 this is ignored."
+msgstr ""
+"De minimale lengte van de zoom. Wanneer deze waarde niet bereikt wordt, "
+"zullen er meer zomen geprint worden om deze minimale lengte te bereiken.\n"
+"Let op: Wanneer het aantal lijnen op 0 staat, wordt deze waarde genegeerd."
+
+#: Cura/util/profile.py:194
+msgid "Fan on layer number"
+msgstr "Koelventilator aan bij laag nummer"
+
+#: Cura/util/profile.py:194
+msgid ""
+"The layer at which the fan is turned on. The first layer is layer 0. The "
+"first layer can stick better if you turn on the fan on, on the 2nd layer."
+msgstr ""
+"De laag vanaf welke de ventilator aangezet wordt. De eerste laag is laag 0. "
+"De eerste laag hecht beter wanneer de koelventilator niet aan staat."
+
+#: Cura/util/profile.py:195
+msgid "Fan speed min (%)"
+msgstr "Minimale snelheid koelventilator (%)"
+
+#: Cura/util/profile.py:195
+msgid ""
+"When the fan is turned on, it is enabled at this speed setting. If cool "
+"slows down the layer, the fan is adjusted between the min and max speed. "
+"Minimal fan speed is used if the layer is not slowed down due to cooling."
+msgstr ""
+"De minimale snelheid van de koelventilator wordt gebruikt wanneer je deze "
+"aanzet. Wanneer de snelheid per laag lager wordt voor de koeling, wordt de "
+"ventilatorsnelheid gevarieerd tussen de minimale en maximale snelheid."
+
+#: Cura/util/profile.py:196
+msgid "Fan speed max (%)"
+msgstr "Maximale snelheid koelventilator (%)"
+
+#: Cura/util/profile.py:196
+msgid ""
+"When the fan is turned on, it is enabled at this speed setting. If cool "
+"slows down the layer, the fan is adjusted between the min and max speed. "
+"Maximal fan speed is used if the layer is slowed down due to cooling by more "
+"than 200%."
+msgstr ""
+"Wanneer de snelheid per laag 200% lager is dan de gewone printsnelheid, "
+"wordt de maximale snelheid van de koelventilator gebruikt."
+
+#: Cura/util/profile.py:197
+msgid "Minimum speed (mm/s)"
+msgstr "Minimale snelheid (mm/s)"
+
+#: Cura/util/profile.py:197
+msgid ""
+"The minimal layer time can cause the print to slow down so much it starts to "
+"ooze. The minimal feedrate protects against this. Even if a print gets slown "
+"down it will never be slower than this minimal speed."
+msgstr ""
+"De minimale tijd per laag kan de printer zo langzaam laten gaan dat de "
+"printkop kan gaan lekken. De minimale extrusiesnelheid voorkomt dit. Zelfs "
+"wanneer de printer langzamer gaat, zal dit nooit langzamer zijn dan deze "
+"snelheid."
+
+#: Cura/util/profile.py:198
+msgid "Cool head lift"
+msgstr "Printkop optrekken voor koeling"
+
+#: Cura/util/profile.py:198
+msgid ""
+"Lift the head if the minimal speed is hit because of cool slowdown, and wait "
+"the extra time so the minimal layer time is always hit."
+msgstr ""
+"Wanneer de minimale snelheid  is bereikt, zakt het platform tijdelijk en zal "
+"de machine wachten tot de minimale tijd per laag is bereikt voordat de "
+"volgende laag geprint wordt."
+
+#: Cura/util/profile.py:203 Cura/util/profile.py:204 Cura/util/profile.py:205
+msgid "Infill"
+msgstr "Vulling"
+
+#: Cura/util/profile.py:203
+msgid "Solid infill top"
+msgstr "Opvulling van bovenste lagen"
+
+#: Cura/util/profile.py:203
+msgid ""
+"Create a solid top surface, if set to false the top is filled with the fill "
+"percentage. Useful for cups/vases."
+msgstr ""
+"Wanneer je hier geen vinkje zet, zal de bovenste laag met het vulpercentage "
+"geprint worden (ideaal voor kopjes en vazen). Zet een vinkje voor een dichte "
+"bovenkant."
+
+#: Cura/util/profile.py:204
+msgid "Solid infill bottom"
+msgstr "Opvulling van onderste lagen"
+
+#: Cura/util/profile.py:204
+msgid ""
+"Create a solid bottom surface, if set to false the bottom is filled with the "
+"fill percentage. Useful for buildings."
+msgstr ""
+"Zorgt voor een dichte bodemlaag. Wanneer je hier geen vinkje zet, wordt de "
+"bodem geprint met het vulpercentage (ideaal voor gebouwen)."
+
+#: Cura/util/profile.py:205
+msgid "Infill overlap (%)"
+msgstr "Overlap van vulling (%)"
+
+#: Cura/util/profile.py:205
+msgid ""
+"Amount of overlap between the infill and the walls. There is a slight "
+"overlap with the walls and the infill so the walls connect firmly to the "
+"infill."
+msgstr ""
+"Hoeveelheid overlap tussen de vulling en de wanden. Voor een goede hechting "
+"tussen de wanden en de vulling pas je een kleine overlap toe."
+
+#: Cura/util/profile.py:206
+msgid "Fill amount (%)"
+msgstr "Hoeveelheid vulling (%)"
+
+#: Cura/util/profile.py:206
+#, python-format
+msgid ""
+"Amount of infill structure in the support material, less material gives "
+"weaker support which is easier to remove. 20% seems to be a good average."
+msgstr ""
+"Hoeveelheid vulling in ondersteuningsmateriaal. Minder materiaal creëert een "
+"ondersteuning die makkelijker te verwijderen is. 20% is over het algemeen "
+"goed."
+
+#: Cura/util/profile.py:207
+msgid "Distance X/Y (mm)"
+msgstr "Afstand X/Y (mm)"
+
+#: Cura/util/profile.py:207
+msgid ""
+"Distance of the support material from the print, in the X/Y directions.\n"
+"0.7mm gives a nice distance from the print so the support does not stick to "
+"the print."
+msgstr ""
+"Afstand van het ondersteuningsmateriaal tot de print in de X en Y "
+"richtingen.\n"
+"0,7 mm is een goede afstand die voorkomt dat de ondersteuning te goed hecht "
+"aan het model."
+
+#: Cura/util/profile.py:208
+msgid "Distance Z (mm)"
+msgstr "Afstand Z (mm)"
+
+#: Cura/util/profile.py:208
+msgid ""
+"Distance from the top/bottom of the support to the print. A small gap here "
+"makes it easier to remove the support but makes the print a bit uglier.\n"
+"0.15mm gives a good seperation of the support material."
+msgstr ""
+"Afstand van het ondersteuningsmateriaal tot de onderste of bovenste laag van "
+"de print. Een kleine afstand maakt het makkelijker om ondersteuning te "
+"verwijderen, maar maakt de print wel iets lelijker. \n"
+"0,15 mm. is een goede afstand waarbij het ondersteuningsmateriaal makkelijk "
+"te verwijderen is."
+
+#: Cura/util/profile.py:212
+msgid "Brim line amount"
+msgstr "Hoeveelheid boorden"
+
+#: Cura/util/profile.py:212
+msgid ""
+"The amount of lines used for a brim, more lines means a larger brim which "
+"sticks better, but this also makes your effective print area smaller."
+msgstr ""
+"De hoeveelheid lijnen die gebruikt worden voor een kleefrand. Meer lijnen is "
+"een grotere kleefrand, maar dit zorgt ook dat je printoppervlak kleiner "
+"wordt."
+
+#: Cura/util/profile.py:213
+msgid "Extra margin (mm)"
+msgstr "Extra marge (mm)"
+
+#: Cura/util/profile.py:213
+msgid ""
+"If the raft is enabled, this is the extra raft area around the object which "
+"is also rafted. Increasing this margin will create a stronger raft while "
+"using more material and leaving less are for your print."
+msgstr ""
+"Dit is de afstand van de mat buiten het object, wanneer de mat is "
+"ingeschakeld. Wanneer je deze marge vergroot gebruik je meer materiaal en "
+"krijg je een sterkere raft. Dit laat minder ruimte over voor je print."
+
+#: Cura/util/profile.py:214
+msgid "Line spacing (mm)"
+msgstr "Afstand tussen lijnen (mm)"
+
+#: Cura/util/profile.py:214
+msgid ""
+"When you are using the raft this is the distance between the centerlines of "
+"the raft line."
+msgstr ""
+"Wanneer je een mat gebruikt, is dit de afstand tussen de lijnen van de mat."
+
+#: Cura/util/profile.py:215
+msgid "Base thickness (mm)"
+msgstr "Dikte basis (mm)"
+
+#: Cura/util/profile.py:215
+msgid ""
+"When you are using the raft this is the thickness of the base layer which is "
+"put down."
+msgstr ""
+"Wanneer je een mat gebruikt is dit de dikte van de eerste laag van de mat."
+
+#: Cura/util/profile.py:216
+msgid "Base line width (mm)"
+msgstr "Basis lijn breedte (mm)"
+
+#: Cura/util/profile.py:216
+msgid ""
+"When you are using the raft this is the width of the base layer lines which "
+"are put down."
+msgstr ""
+"Wanneer je een mat gebruikt is dit de breedte van de lijnen van de eerste "
+"laag van de mat."
+
+#: Cura/util/profile.py:217
+msgid "Interface thickness (mm)"
+msgstr "Contact dikte (mm)"
+
+#: Cura/util/profile.py:217
+msgid ""
+"When you are using the raft this is the thickness of the interface layer "
+"which is put down."
+msgstr ""
+"Wanneer je een mat gebruikt is dit de dikte van de contactlaag met het "
+"object."
+
+#: Cura/util/profile.py:218
+msgid "Interface line width (mm)"
+msgstr "Contact lijn dikte (mm)"
+
+#: Cura/util/profile.py:218
+msgid ""
+"When you are using the raft this is the width of the interface layer lines "
+"which are put down."
+msgstr ""
+"Wanneer je een mat gebruikt is dit de breedte van de lijn van de contactlaag "
+"met het object."
+
+#: Cura/util/profile.py:220 Cura/util/profile.py:221 Cura/util/profile.py:222
+#: Cura/util/profile.py:223
+msgid "Fix horrible"
+msgstr "Repareer een dramatisch model"
+
+#: Cura/util/profile.py:220
+msgid "Combine everything (Type-A)"
+msgstr "Combineer alles (Type-A)"
+
+#: Cura/util/profile.py:220 Cura/util/profile.py:221
+msgid ""
+"This expert option adds all parts of the model together. The result is "
+"usually that internal cavities disappear. Depending on the model this can be "
+"intended or not. Enabling this option is at your own risk. Type-A is "
+"depended on the model normals and tries to keep some internal holes intact. "
+"Type-B ignores all internal holes and only keeps the outside shape per layer."
+msgstr ""
+"Deze expert optie voegt alle onderdelen van het model samen. Het resultaaat "
+"is meestal dat interne holtes verdwijnen. Afhankelijk van je model is dit "
+"wel of niet wenselijk. Het gebruik van deze optie is voor eigen risico. Type-"
+"A is afhankelijk van de normalen in het model en probeert enkele inwendige "
+"gaten in tact te laten. Type-B negeert alle interne gaten en behoudt alleen "
+"de buitenste vorm per laag."
+
+#: Cura/util/profile.py:221
+msgid "Combine everything (Type-B)"
+msgstr "Combineer alles (Type-B)"
+
+#: Cura/util/profile.py:222
+msgid "Keep open faces"
+msgstr "Behoudt open vlakken."
+
+#: Cura/util/profile.py:222
+msgid ""
+"This expert option keeps all the open bits of the model intact. Normally "
+"Cura tries to stitch up small holes and remove everything with big holes, "
+"but this option keeps bits that are not properly part of anything and just "
+"goes with whatever it is left. This option is usually not what you want, but "
+"it might enable you to slice models otherwise failing to produce proper "
+"paths.\n"
+"As with all \"Fix horrible\" options, results may vary and use at your own "
+"risk."
+msgstr ""
+"Deze expert optie houdt alle open delen van het model in tact. "
+"Normaalgesproken probeert Cura kleine gaten te dichten en alles met grote "
+"gaten te verwijderen. Deze optie behoudt delen die niet fatsoenlijk "
+"verbonden zijn met andere delen en zal doorgaan met wat er van over is. Deze "
+"optie is normaalgesproken onwenselijk, maar het kan je in staat stellen "
+"modellen te slicen die normaalgesproken geen fatsoenlijke resultaten geven.\n"
+"Zoals met alle \"Repareer een dramatisch model\" opties, zullen resultaten "
+"variëren en is het gebruik van deze opties op eigen risico."
+
+#: Cura/util/profile.py:223
+msgid "Extensive stitching"
+msgstr "Uitgebreid hechten"
+
+#: Cura/util/profile.py:223
+msgid ""
+"Extrensive stitching tries to fix up open holes in the model by closing the "
+"hole with touching polygons. This algorthm is quite expensive and could "
+"introduce a lot of processing time.\n"
+"As with all \"Fix horrible\" options, results may vary and use at your own "
+"risk."
+msgstr ""
+"Deze optie probeert open gaten te sluiten met aansluitenden polygonen. Dit "
+"is een vrij uitvoerig algoritme en het gebruik ervan kan veel tijd in beslag "
+"nemen.\n"
+"Zoals met alle \"Repareer een dramatisch model\" opties, zullen resultaten "
+"variëren en is het gebruik van deze opties op eigen risico."
+
+#: Cura/util/profile.py:338
+msgid "Save profile on slice"
+msgstr "Bewaar het profiel wanneer je slicet."
+
+#: Cura/util/profile.py:338
+msgid ""
+"When slicing save the profile as [stl_file]_profile.ini next to the model."
+msgstr ""
+"Sla ook meteen het profiel op als [stl_file]_profile.ini wanneer je slicet."
+
+#: Cura/util/profile.py:339
+msgid "Cost (price/kg)"
+msgstr "Kosten (prijs/kg)"
+
+#: Cura/util/profile.py:339
+msgid "Cost of your filament per kg, to estimate the cost of the final print."
+msgstr ""
+"Kosten van je filament per kg om de kosten van je uiteindelijke print te "
+"kunnen inschatten."
+
+#: Cura/util/profile.py:340
+msgid "Cost (price/m)"
+msgstr "Kosten (prijs/m)"
+
+#: Cura/util/profile.py:340
+msgid ""
+"Cost of your filament per meter, to estimate the cost of the final print."
+msgstr ""
+"Kosten van je filament per meter om de kosten van je uiteindelijke print te "
+"kunnen inschatten."
+
+#: Cura/util/profile.py:341
+msgid "Auto detect SD card drive"
+msgstr "Detecteer automatisch de aanwezigheid van een SD kaartlezer"
+
+#: Cura/util/profile.py:341
+msgid ""
+"Auto detect the SD card. You can disable this because on some systems "
+"external hard-drives or USB sticks are detected as SD card."
+msgstr ""
+"Detecteer automatisch een SD kaart. Je kan deze optie uitzetten, want op "
+"sommige systemen zullen externe harde schijven of USB's als SD kaart gezien "
+"worden."
+
+#: Cura/util/profile.py:342
+msgid "Check for updates"
+msgstr "Controleer of er updates zijn"
+
+#: Cura/util/profile.py:342
+msgid "Check for newer versions of Cura on startup"
+msgstr "Controleer of er een nieuwe versie van Cura is tijdens het opstarten"
+
+#: Cura/util/profile.py:343
+msgid "Send usage statistics"
+msgstr "Verstuur gebruiks statistieken"
+
+#: Cura/util/profile.py:343
+msgid "Submit anonymous usage information to improve next versions of Cura"
+msgstr ""
+"Verstuur anonieme gebruiksinformatie om de volgende versie van Cura te "
+"verbeteren"
+
+#: Cura/util/profile.py:345
+msgid "Density (kg/m3)"
+msgstr "Dichtheid (kg/m3)"
+
+#: Cura/util/profile.py:345
+msgid ""
+"Weight of the filament per m3. Around 1240 for PLA. And around 1040 for ABS. "
+"This value is used to estimate the weight if the filament used for the print."
+msgstr ""
+"Gewicht van het filament per m3. Ongeveer 1240 voor PLA en 1040 voor ABS. "
+"Deze waarde wordt gebruikt om het gewicht van de uiteindelijke print te "
+"schatten."
+
+#: Cura/util/profile.py:348
+msgid "Model colour"
+msgstr "Model kleur"
+
+#: Cura/util/profile.py:349
+msgid "Model colour (2)"
+msgstr "Model kleur (2)"
+
+#: Cura/util/profile.py:350
+msgid "Model colour (3)"
+msgstr "Model kleur (3)"
+
+#: Cura/util/profile.py:351
+msgid "Model colour (4)"
+msgstr "Model kleur (4)"
+
+#: Cura/util/profile.py:362
+msgid "Maximum width (mm)"
+msgstr "Maximale breedte (mm)"
+
+#: Cura/util/profile.py:362 Cura/util/profile.py:363 Cura/util/profile.py:364
+msgid "Size of the machine in mm"
+msgstr "Afmeting van de machine in mm"
+
+#: Cura/util/profile.py:363
+msgid "Maximum depth (mm)"
+msgstr "Maximale diepte (mm)"
+
+#: Cura/util/profile.py:364
+msgid "Maximum height (mm)"
+msgstr "Maximale hoogte (mm)"
+
+#: Cura/util/profile.py:367
+msgid ""
+"If you have an heated bed, this enabled heated bed settings (requires "
+"restart)"
+msgstr ""
+"Wanneer je een verwarmd platform hebt, zet deze vink de opties hiervoor aan. "
+"Je dient Cura wel opnieuw op te starten."
+
+#: Cura/util/profile.py:368
+msgid "GCode Flavor"
+msgstr "GCode soort"
+
+#: Cura/util/profile.py:368
+msgid ""
+"Flavor of generated GCode.\n"
+"RepRap is normal 5D GCode which works on Marlin/Sprinter based firmwares.\n"
+"UltiGCode is a variation of the RepRap GCode which puts more settings in the "
+"machine instead of the slicer."
+msgstr ""
+"De soort van de gegenereerde GCode.\n"
+"RepRap is normaal gesproken 5D GCode die werkt op Marlin/Sprinter gebaseerde "
+"firmware.\n"
+"UltiGCode is een variatie van de RepRap GCode die meer instellingen in de "
+"machine opslaat in plaats van in de slicersoftware."
+
+#: Cura/util/profile.py:369
+msgid "Extruder count"
+msgstr "Aantal printkoppen"
+
+#: Cura/util/profile.py:369
+msgid "Amount of extruders in your machine."
+msgstr "Aantal printkoppen op je printer"
+
+#: Cura/util/profile.py:370 Cura/util/profile.py:372 Cura/util/profile.py:374
+msgid "Offset X"
+msgstr "X afstand"
+
+#: Cura/util/profile.py:370 Cura/util/profile.py:371
+msgid "The offset of your secondary extruder compared to the primary."
+msgstr "De afstand tussen de eerste en de tweede printkop."
+
+#: Cura/util/profile.py:371 Cura/util/profile.py:373 Cura/util/profile.py:375
+msgid "Offset Y"
+msgstr "Y afstand"
+
+#: Cura/util/profile.py:372 Cura/util/profile.py:373
+msgid "The offset of your tertiary extruder compared to the primary."
+msgstr "De afstand tussen de eerste en de derde printkop."
+
+#: Cura/util/profile.py:374 Cura/util/profile.py:375
+msgid "The offset of your forth extruder compared to the primary."
+msgstr "De afstand tussen de eerste en de vierde printkop."
+
+#: Cura/util/profile.py:376
+msgid "E-Steps per 1mm filament"
+msgstr "E-stappen per 1 mm. filament"
+
+#: Cura/util/profile.py:376
+msgid ""
+"Amount of steps per mm filament extrusion. If set to 0 then this value is "
+"ignored and the value in your firmware is used."
+msgstr ""
+"De hoeveelheid stappen van de stappenmotor per mm geëxtrudeerd filament. "
+"Wanneer hier 0 wordt ingevoerd, wordt de waarde genegeerd en de waarde uit "
+"je firmware gebruikt."
+
+#: Cura/util/profile.py:377
+msgid "Serial port"
+msgstr "Seriële poort"
+
+#: Cura/util/profile.py:377
+msgid "Serial port to use for communication with the printer"
+msgstr "De seriële poort die gebruikt wordt voor communicatie met de printer."
+
+#: Cura/util/profile.py:379
+msgid "Baudrate"
+msgstr "Baudrate"
+
+#: Cura/util/profile.py:379
+msgid ""
+"Speed of the serial port communication\n"
+"Needs to match your firmware settings\n"
+"Common values are 250000, 115200, 57600"
+msgstr ""
+"Communicatiesnelheid van de seriële poort \n"
+"Deze dient overeen te komen met de instellingen in je firmware \n"
+"Meestal 250000, 115200 of 57600"
+
+#: Cura/util/profile.py:382
+msgid "Head size towards X min (mm)"
+msgstr "Minimale afmeting printkop X (mm)"
+
+#: Cura/util/profile.py:382
+msgid ""
+"The head size when printing multiple objects, measured from the tip of the "
+"nozzle towards the outer part of the head. 75mm for an Ultimaker if the fan "
+"is on the left side."
+msgstr ""
+"De afstand van de punt van de nozzle tot de buitenkant van de printkop. Dit "
+"is 75 mm voor een Ultimaker waar de ventilator links is gemonteerd.\n"
+"Deze waarde is belangrijk als je meerdere objecten wilt printen en de kop "
+"niet met eerdere objecten mag botsen."
+
+#: Cura/util/profile.py:383
+msgid "Head size towards Y min (mm)"
+msgstr "Minimale afmeting printkop Y (mm)"
+
+#: Cura/util/profile.py:383 Cura/util/profile.py:384
+msgid ""
+"The head size when printing multiple objects, measured from the tip of the "
+"nozzle towards the outer part of the head. 18mm for an Ultimaker if the fan "
+"is on the left side."
+msgstr ""
+"De afstand van de punt van de nozzle tot de buitenkant van de printkop. Dit "
+"is 18 mm voor een Ultimaker waar de ventilator links is gemonteerd.\n"
+"Deze waarde is belangrijk als je meerdere objecten wilt printen en de kop "
+"niet met eerdere objecten mag botsen."
+
+#: Cura/util/profile.py:384
+msgid "Head size towards X max (mm)"
+msgstr "Maximale afmeting X (mm)"
+
+#: Cura/util/profile.py:385
+msgid "Head size towards Y max (mm)"
+msgstr "Maximale afmeting printkop Y (mm)"
+
+#: Cura/util/profile.py:385
+msgid ""
+"The head size when printing multiple objects, measured from the tip of the "
+"nozzle towards the outer part of the head. 35mm for an Ultimaker if the fan "
+"is on the left side."
+msgstr ""
+"De afstand van de punt van de nozzle tot de buitenkant van de printkop. Dit "
+"is 38 mm voor een Ultimaker waar de ventilator links is gemonteerd.\n"
+"Deze waarde is belangrijk als je meerdere objecten wilt printen en de kop "
+"niet met eerdere objecten mag botsen."
+
+#: Cura/util/profile.py:386
+msgid "Printer gantry height (mm)"
+msgstr "Hoogte printkop samenstelling (mm)"
+
+#: Cura/util/profile.py:386
+msgid ""
+"The height of the gantry holding up the printer head. If an object is higher "
+"then this then you cannot print multiple objects one for one. 60mm for an "
+"Ultimaker."
+msgstr ""
+"De hoogte van de samenstelling van de printkop. Wanneer een object hoger is "
+"dan deze waarde, kan je niet meerdere objecten printen. Dit is 60 mm voor "
+"een Ultimaker."
+
+#: Cura/util/profile.py:388
+#, python-format
+msgid "More flow then 150% is rare and usually not recommended."
+msgstr ""
+
+#: Cura/util/profile.py:389
+#, python-format
+msgid "More flow then 50% is rare and usually not recommended."
+msgstr ""
+
+#: Cura/util/profile.py:390
+#, python-format
+msgid ""
+"Thicker layers then %.2fmm (80%% nozzle size) usually give bad results and "
+"are not recommended."
+msgstr ""
+
+#: Cura/util/profile.py:392
+msgid ""
+"It is highly unlikely that your machine can achieve a printing speed above "
+"150mm/s"
+msgstr ""
+
+#: Cura/util/profile.py:394 Cura/util/profile.py:395 Cura/util/profile.py:396
+#: Cura/util/profile.py:397
+msgid "Temperatures above 260C could damage your machine, be careful!"
+msgstr ""
+
+#: Cura/util/profile.py:398 Cura/util/profile.py:399 Cura/util/profile.py:400
+#: Cura/util/profile.py:401
+msgid ""
+"Are you sure your filament is that thick? Normal filament is around 3mm or "
+"1.75mm."
+msgstr ""
+
+#: Cura/util/profile.py:402
+msgid ""
+"It is highly unlikely that your machine can achieve a travel speed above "
+"300mm/s"
+msgstr ""
+
+#: Cura/util/profile.py:403
+#, python-format
+msgid ""
+"A bottom layer of more then %.2fmm (3/4 nozzle size) usually give bad "
+"results and is not recommended."
+msgstr ""
+
+#~ msgid "Copyright (C) David Braam"
+#~ msgstr "Auteursrecht (C) David Braam"
index 5e5458f8ee87354f99ce037e932168a64bec16aa..64c3316da47e36ab72ef728a87fb98cfe8db8864 100644 (file)
Binary files a/Cura/resources/locale/ru/LC_MESSAGES/Cura.mo and b/Cura/resources/locale/ru/LC_MESSAGES/Cura.mo differ
index e15391c43be05a339fa069733edfa3789a2adbf0..d9ad0b15c27dda063fe6580753e96e201dde30f6 100644 (file)
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2013
-# This file is distributed under the same license as the Cura package.
-# Ilya Kulakov <kulakov.ilya@gmail.com>, 2013.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: Cura\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-09-27 09:25+0200\n"
-"PO-Revision-Date: 2013-09-27 09:41+0100\n"
-"Last-Translator: \n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 1.5.7\n"
-
-#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:520
-msgid "A new version of Cura is available, would you like to download?"
-msgstr ""
-
-#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:520
-msgid "New version available"
-msgstr ""
-
-#: Cura/gui/configWizard.py:220
-msgid "Add new machine wizard"
-msgstr ""
-
-#: Cura/gui/configWizard.py:222
-msgid "First time run wizard"
-msgstr ""
-
-#: Cura/gui/configWizard.py:223
-msgid "Welcome, and thanks for trying Cura!"
-msgstr ""
-
-#: Cura/gui/configWizard.py:225
-msgid "This wizard will help you with the following steps:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:226
-msgid "* Configure Cura for your machine"
-msgstr ""
-
-#: Cura/gui/configWizard.py:227
-msgid "* Optionally upgrade your firmware"
-msgstr ""
-
-#: Cura/gui/configWizard.py:228
-msgid "* Optionally check if your machine is working safely"
-msgstr ""
-
-#: Cura/gui/configWizard.py:229
-msgid "* Optionally level your printer bed"
-msgstr ""
-
-#: Cura/gui/configWizard.py:239
-msgid ""
-"RepRap machines are vastly different, and there is no\n"
-"default configuration in Cura for any of them."
-msgstr ""
-
-#: Cura/gui/configWizard.py:240
-msgid ""
-"If you like a default profile for your machine added,\n"
-"then make an issue on github."
-msgstr ""
-
-#: Cura/gui/configWizard.py:242
-msgid "You will have to manually install Marlin or Sprinter firmware."
-msgstr ""
-
-#: Cura/gui/configWizard.py:244
-msgid "Machine name"
-msgstr ""
-
-#: Cura/gui/configWizard.py:245
-msgid "Machine width (mm)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:246
-msgid "Machine depth (mm)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:247
-msgid "Machine height (mm)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:248 Cura/util/profile.py:158
-msgid "Nozzle size (mm)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:249 Cura/util/profile.py:367
-msgid "Heated bed"
-msgstr ""
-
-#: Cura/gui/configWizard.py:250
-msgid "Bed center is 0,0,0 (RoStock)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:270
-msgid "Select your machine"
-msgstr ""
-
-#: Cura/gui/configWizard.py:271
-msgid "What kind of machine do you have:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:278
-msgid "Other (Ex: RepRap)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:281
-msgid ""
-"The collection of anonymous usage information helps with the continued "
-"improvement of Cura."
-msgstr ""
-
-#: Cura/gui/configWizard.py:282
-msgid ""
-"This does NOT submit your models online nor gathers any privacy related "
-"information."
-msgstr ""
-
-#: Cura/gui/configWizard.py:283
-msgid "Submit anonymous usage information:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:284
-msgid "For full details see: http://wiki.ultimaker.com/Cura:stats"
-msgstr ""
-
-#: Cura/gui/configWizard.py:346
-msgid "Select upgraded parts you have"
-msgstr ""
-
-#: Cura/gui/configWizard.py:347
-msgid ""
-"To assist you in having better default settings for your Ultimaker\n"
-"Cura would like to know which upgrades you have in your machine."
-msgstr ""
-
-#: Cura/gui/configWizard.py:349
-msgid "Extruder drive upgrade"
-msgstr ""
-
-#: Cura/gui/configWizard.py:350
-msgid "Heated printer bed (self built)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:351
-msgid "Dual extrusion (experimental)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:353
-msgid ""
-"If you have an Ultimaker bought after october 2012 you will have the\n"
-"Extruder drive upgrade. If you do not have this upgrade,\n"
-"it is highly recommended to improve reliability."
-msgstr ""
-
-#: Cura/gui/configWizard.py:354
-msgid ""
-"This upgrade can be bought from the Ultimaker webshop\n"
-"or found on thingiverse as thing:26094"
-msgstr ""
-
-#: Cura/gui/configWizard.py:373
-msgid "Upgrade Ultimaker Firmware"
-msgstr ""
-
-#: Cura/gui/configWizard.py:374
-msgid ""
-"Firmware is the piece of software running directly on your 3D printer.\n"
-"This firmware controls the step motors, regulates the temperature\n"
-"and ultimately makes your printer work."
-msgstr ""
-
-#: Cura/gui/configWizard.py:376
-msgid ""
-"The firmware shipping with new Ultimakers works, but upgrades\n"
-"have been made to make better prints, and make calibration easier."
-msgstr ""
-
-#: Cura/gui/configWizard.py:378
-msgid ""
-"Cura requires these new features and thus\n"
-"your firmware will most likely need to be upgraded.\n"
-"You will get the chance to do so now."
-msgstr ""
-
-#: Cura/gui/configWizard.py:383
-msgid "Do not upgrade to this firmware if:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:384
-msgid "* You have an older machine based on ATMega1280"
-msgstr ""
-
-#: Cura/gui/configWizard.py:385
-msgid "* Have other changes in the firmware"
-msgstr ""
-
-#: Cura/gui/configWizard.py:419
-msgid ""
-"It is a good idea to do a few sanity checks now on your Ultimaker.\n"
-"You can skip these if you know your machine is functional."
-msgstr ""
-
-#: Cura/gui/configWizard.py:420
-msgid "Run checks"
-msgstr ""
-
-#: Cura/gui/configWizard.py:420
-msgid "Skip checks"
-msgstr ""
-
-#: Cura/gui/configWizard.py:424
-msgid "Communication:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:425
-msgid "Temperature:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:426
-msgid "Endstops:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:431
-msgid "Show error log"
-msgstr ""
-
-#: Cura/gui/configWizard.py:465
-msgid "Connecting to machine."
-msgstr ""
-
-#: Cura/gui/configWizard.py:486
-msgid "Cooldown before temperature check."
-msgstr ""
-
-#: Cura/gui/configWizard.py:492 Cura/gui/configWizard.py:499
-msgid "Checking the heater and temperature sensor."
-msgstr ""
-
-#: Cura/gui/configWizard.py:510
-msgid "Please make sure none of the endstops are pressed."
-msgstr ""
-
-#: Cura/gui/configWizard.py:523
-msgid "Temperature measurement FAILED!"
-msgstr ""
-
-#: Cura/gui/configWizard.py:528
-#, python-format
-msgid "Head temperature: %d"
-msgstr ""
-
-#: Cura/gui/configWizard.py:535 Cura/gui/configWizard.py:544
-#, python-format
-msgid "Communication State: %s"
-msgstr ""
-
-#: Cura/gui/configWizard.py:538
-msgid "Failed to establish connection with the printer."
-msgstr ""
-
-#: Cura/gui/configWizard.py:583
-msgid "Please press the right X endstop."
-msgstr ""
-
-#: Cura/gui/configWizard.py:588
-msgid "Please press the left X endstop."
-msgstr ""
-
-#: Cura/gui/configWizard.py:593
-msgid "Please press the front Y endstop."
-msgstr ""
-
-#: Cura/gui/configWizard.py:598
-msgid "Please press the back Y endstop."
-msgstr ""
-
-#: Cura/gui/configWizard.py:603
-msgid "Please press the top Z endstop."
-msgstr ""
-
-#: Cura/gui/configWizard.py:608
-msgid "Please press the bottom Z endstop."
-msgstr ""
-
-#: Cura/gui/configWizard.py:614
-msgid "Checkup finished"
-msgstr ""
-
-#: Cura/gui/configWizard.py:657
-msgid "Calibrating the Steps Per E requires some manual actions."
-msgstr ""
-
-#: Cura/gui/configWizard.py:658
-msgid "First remove any filament from your machine."
-msgstr ""
-
-#: Cura/gui/configWizard.py:659
-msgid ""
-"Next put in your filament so the tip is aligned with the\n"
-"top of the extruder drive."
-msgstr ""
-
-#: Cura/gui/configWizard.py:660
-msgid "We'll push the filament 100mm"
-msgstr ""
-
-#: Cura/gui/configWizard.py:661
-msgid "Extrude 100mm filament"
-msgstr ""
-
-#: Cura/gui/configWizard.py:662
-msgid ""
-"Now measure the amount of extruded filament:\n"
-"(this can be more or less then 100mm)"
-msgstr ""
-
-#: Cura/gui/configWizard.py:663
-msgid "Save"
-msgstr ""
-
-#: Cura/gui/configWizard.py:664
-msgid "This results in the following steps per E:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:666
-msgid "You can repeat these steps to get better calibration."
-msgstr ""
-
-#: Cura/gui/configWizard.py:669
-msgid ""
-"If you still have filament in your printer which needs\n"
-"heat to remove, press the heat up button below:"
-msgstr ""
-
-#: Cura/gui/configWizard.py:670
-msgid "Heatup for filament removal"
-msgstr ""
-
-#: Cura/gui/configWizard.py:693 Cura/gui/configWizard.py:725
-msgid ""
-"Error: Failed to open serial port to machine\n"
-"If this keeps happening, try disconnecting and reconnecting the USB cable"
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:39
-msgid ""
-"I am sorry, but Cura does not ship with a default firmware for your machine "
-"configuration."
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:39 Cura/gui/firmwareInstall.py:98
-#: Cura/gui/mainWindow.py:455
-msgid "Firmware update"
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:49
-msgid "OK"
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:68
-msgid "Reading firmware..."
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:70
-msgid "Connecting to machine..."
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:87
-msgid "Uploading firmware..."
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:90
-#, python-format
-msgid ""
-"Done!\n"
-"Installed firmware: %s"
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:92
-msgid "Failed to write firmware.\n"
-msgstr ""
-
-#: Cura/gui/firmwareInstall.py:97
-msgid ""
-"Failed to find machine for firmware upgrade\n"
-"Is your machine connected to the PC?"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:54
-msgid "Load model file...\tCTRL+L"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:56
-msgid "Save model...\tCTRL+S"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:58
-msgid "Clear platform"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:62
-msgid "Print...\tCTRL+P"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:64 Cura/gui/sceneView.py:214
-msgid "Save GCode..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:66
-msgid "Show slice engine log..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:70
-msgid "Open Profile..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:73
-msgid "Save Profile..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:76
-msgid "Load Profile from GCode..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:80
-msgid "Reset Profile to default"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:85
-msgid "Preferences...\tCTRL+,"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:87
-msgid "Machine settings..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:93
-msgid "&Recent Model Files"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:100
-msgid "&Recent Profile Files"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:106
-msgid "Quit"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:108
-msgid "&File"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:112
-msgid "Switch to quickprint..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:116
-msgid "Switch to full settings..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:126
-msgid "Minecraft import..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:130
-msgid "PID Debugger..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:133
-msgid "Copy profile to clipboard"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:135
-msgid "Tools"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:141 Cura/util/profile.py:158
-msgid "Machine"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:144
-msgid "Open expert settings..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:148
-msgid "Run first run wizard..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:150
-msgid "Run bed leveling wizard..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:153
-msgid "Run head offset wizard..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:156
-msgid "Expert"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:159
-msgid "Online documentation..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:161
-msgid "Report a problem..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:163
-msgid "Check for update..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:165
-msgid "Open YouMagine website..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:167
-msgid "About Cura..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:169
-msgid "Help"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:387
-msgid "Add new machine..."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:392
-msgid "Install custom firmware"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:394
-msgid "Install default Marlin firmware"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:398
-msgid "Select profile file to load"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:410
-msgid "Select gcode file to load profile from"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:423
-msgid ""
-"No profile found in GCode file.\n"
-"This feature only works with GCode files made by Cura 12.07 or newer."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:423
-msgid "Profile load error"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:427
-msgid "Select profile file to save"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:435
-msgid ""
-"This will reset all profile settings to defaults.\n"
-"Unless you have saved your current profile, all settings will be lost!\n"
-"Do you really want to reset?"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:435
-msgid "Profile reset"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:455
-msgid ""
-"Warning: Installing a custom firmware does not guarantee that you machine "
-"will function correctly, and could damage your machine."
-msgstr ""
-
-#: Cura/gui/mainWindow.py:456
-msgid "Open firmware to upload"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:523
-msgid "You are running the latest version of Cura!"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:523
-msgid "Awesome!"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:535
-msgid "Copyright (C) David Braam"
-msgstr ""
-
-#: Cura/gui/mainWindow.py:601
-msgid "Plugins"
-msgstr ""
-
-#: Cura/gui/pluginPanel.py:26
-msgid "Plugins:"
-msgstr ""
-
-#: Cura/gui/pluginPanel.py:30
-msgid "Open plugin location"
-msgstr ""
-
-#: Cura/gui/pluginPanel.py:31
-msgid "Enabled plugins"
-msgstr ""
-
-#: Cura/gui/pluginPanel.py:133
-msgid "You need to select a plugin before you can add anything."
-msgstr ""
-
-#: Cura/gui/pluginPanel.py:133
-msgid "Error: no plugin selected"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:24
-msgid "Colours"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:29
-msgid "Filament settings"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:39
-msgid "Cura settings"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:73
-msgid "Machine settings"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:82
-msgid "Printer head size"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:90
-#, python-format
-msgid "Extruder %d"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:94
-msgid "Communication settings"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:137
-msgid "Cannot remove the last machine configuration in Cura"
-msgstr ""
-
-#: Cura/gui/preferencesDialog.py:137
-msgid "Machine remove error"
-msgstr ""
-
-#: Cura/gui/printWindow.py:129
-msgid "Printing"
-msgstr ""
-
-#: Cura/gui/printWindow.py:158
-msgid "Statistics"
-msgstr ""
-
-#: Cura/gui/printWindow.py:163
-msgid ""
-"Your computer is running on battery power.\n"
-"Connect your computer to AC power or your print might not finish."
-msgstr ""
-
-#: Cura/gui/printWindow.py:174
-msgid ""
-"Filament: ####.##m #.##g\n"
-"Estimated print time: #####:##\n"
-"Machine state:\n"
-"Detecting baudrateXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
-msgstr ""
-
-#: Cura/gui/printWindow.py:179
-msgid "Connect"
-msgstr ""
-
-#: Cura/gui/printWindow.py:181 Cura/gui/sceneView.py:64
-#: Cura/gui/sceneView.py:774
-msgid "Print"
-msgstr ""
-
-#: Cura/gui/printWindow.py:182 Cura/gui/printWindow.py:419
-msgid "Pause"
-msgstr ""
-
-#: Cura/gui/printWindow.py:183
-msgid "Cancel print"
-msgstr ""
-
-#: Cura/gui/printWindow.py:184
-msgid "Error log"
-msgstr ""
-
-#: Cura/gui/printWindow.py:205
-msgid "BedTemp:"
-msgstr ""
-
-#: Cura/gui/printWindow.py:213
-msgid "Temp:"
-msgstr ""
-
-#: Cura/gui/printWindow.py:261
-msgid "Jog"
-msgstr ""
-
-#: Cura/gui/printWindow.py:276
-msgid "Outer wall:"
-msgstr ""
-
-#: Cura/gui/printWindow.py:279
-msgid "Inner wall:"
-msgstr ""
-
-#: Cura/gui/printWindow.py:282
-msgid "Fill:"
-msgstr ""
-
-#: Cura/gui/printWindow.py:285
-msgid "Support:"
-msgstr ""
-
-#: Cura/gui/printWindow.py:289 Cura/util/profile.py:183
-#: Cura/util/profile.py:184 Cura/util/profile.py:185
-msgid "Speed"
-msgstr ""
-
-#: Cura/gui/printWindow.py:307
-msgid "Term"
-msgstr ""
-
-#: Cura/gui/printWindow.py:314
-msgid "Enable timelapse movie recording"
-msgstr ""
-
-#: Cura/gui/printWindow.py:328
-msgid "Show preview"
-msgstr ""
-
-#: Cura/gui/printWindow.py:334
-msgid "Camera"
-msgstr ""
-
-#: Cura/gui/printWindow.py:417
-msgid "Resume"
-msgstr ""
-
-#: Cura/gui/printWindow.py:434
-msgid "Loading gcode...\n"
-msgstr ""
-
-#: Cura/gui/printWindow.py:436
-#, python-format
-msgid "Filament: %(amount).2fm %(weight).2fg\n"
-msgstr ""
-
-#: Cura/gui/printWindow.py:439
-#, python-format
-msgid "Filament cost: %s\n"
-msgstr ""
-
-#: Cura/gui/sceneView.py:63
-msgid "Load"
-msgstr ""
-
-#: Cura/gui/sceneView.py:68
-msgid "Rotate"
-msgstr ""
-
-#: Cura/gui/sceneView.py:69
-msgid "Scale"
-msgstr ""
-
-#: Cura/gui/sceneView.py:70
-msgid "Mirror"
-msgstr ""
-
-#: Cura/gui/sceneView.py:72 Cura/gui/sceneView.py:75
-msgid "Reset"
-msgstr ""
-
-#: Cura/gui/sceneView.py:73
-msgid "Lay flat"
-msgstr ""
-
-#: Cura/gui/sceneView.py:76
-msgid "To max"
-msgstr ""
-
-#: Cura/gui/sceneView.py:78
-msgid "Mirror X"
-msgstr ""
-
-#: Cura/gui/sceneView.py:79
-msgid "Mirror Y"
-msgstr ""
-
-#: Cura/gui/sceneView.py:80
-msgid "Mirror Z"
-msgstr ""
-
-#: Cura/gui/sceneView.py:88
-msgid "Scale X"
-msgstr ""
-
-#: Cura/gui/sceneView.py:90
-msgid "Scale Y"
-msgstr ""
-
-#: Cura/gui/sceneView.py:92
-msgid "Scale Z"
-msgstr ""
-
-#: Cura/gui/sceneView.py:94
-msgid "Size X (mm)"
-msgstr ""
-
-#: Cura/gui/sceneView.py:96
-msgid "Size Y (mm)"
-msgstr ""
-
-#: Cura/gui/sceneView.py:98
-msgid "Size Z (mm)"
-msgstr ""
-
-#: Cura/gui/sceneView.py:100
-msgid "Uniform scale"
-msgstr ""
-
-#: Cura/gui/sceneView.py:103
-msgid "View mode"
-msgstr ""
-
-#: Cura/gui/sceneView.py:103
-msgid "Normal"
-msgstr ""
-
-#: Cura/gui/sceneView.py:103
-msgid "Overhang"
-msgstr ""
-
-#: Cura/gui/sceneView.py:103
-msgid "Transparent"
-msgstr ""
-
-#: Cura/gui/sceneView.py:103
-msgid "X-Ray"
-msgstr ""
-
-#: Cura/gui/sceneView.py:103
-msgid "Layers"
-msgstr ""
-
-#: Cura/gui/sceneView.py:106
-msgid "Share on YouMagine"
-msgstr ""
-
-#: Cura/gui/sceneView.py:168
-msgid "Open 3D model"
-msgstr ""
-
-#: Cura/gui/sceneView.py:183
-msgid "Save 3D model"
-msgstr ""
-
-#: Cura/gui/sceneView.py:213
-msgid "Print with USB"
-msgstr ""
-
-#: Cura/gui/sceneView.py:215
-msgid "Slice engine log..."
-msgstr ""
-
-#: Cura/gui/sceneView.py:229 Cura/gui/sceneView.py:780
-msgid "Save toolpath"
-msgstr ""
-
-#: Cura/gui/sceneView.py:266
-msgid "The slicing engine reported the following"
-msgstr ""
-
-#: Cura/gui/sceneView.py:266
-msgid "Engine log..."
-msgstr ""
-
-#: Cura/gui/sceneView.py:645
-msgid "Delete object"
-msgstr ""
-
-#: Cura/gui/sceneView.py:646
-msgid "Center on platform"
-msgstr ""
-
-#: Cura/gui/sceneView.py:647
-msgid "Multiply object"
-msgstr ""
-
-#: Cura/gui/sceneView.py:648
-msgid "Split object into parts"
-msgstr ""
-
-#: Cura/gui/sceneView.py:650
-msgid "Dual extrusion merge"
-msgstr ""
-
-#: Cura/gui/sceneView.py:652
-msgid "Delete all objects"
-msgstr ""
-
-#: Cura/gui/sceneView.py:777
-msgid "Toolpath to SD"
-msgstr ""
-
-#: Cura/gui/sceneView.py:1087
-msgid "Loading toolpath for visualization..."
-msgstr ""
-
-#: Cura/gui/sceneView.py:1138
-msgid "Overhang view not working due to lack of OpenGL shaders support."
-msgstr ""
-
-#: Cura/gui/simpleMode.py:20
-msgid "High quality print"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:21
-msgid "Normal quality print"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:22
-msgid "Fast low quality print"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:23
-msgid "Thin walled cup or vase"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:33
-msgid "Print support structure"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:38
-msgid "Select a print type:"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:48
-msgid "Material:"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:52
-msgid "Diameter:"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:58
-msgid "Other:"
-msgstr ""
-
-#: Cura/gui/simpleMode.py:119
-msgid "Exterior Only"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:14
-msgid "Cura - Batch run"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:29
-msgid "Add"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:30
-msgid "Remove"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:31
-msgid "Prepare all"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:47
-msgid "Open file to batch prepare"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:134
-#, python-format
-msgid "Building: %d                           "
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:137
-#, python-format
-msgid "Done: 0/%d                           "
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:140
-msgid "Abort"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:163 Cura/gui/tools/batchRun.py:233
-msgid "Close"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:187
-#, python-format
-msgid "Build: %d models"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:188
-#, python-format
-msgid ""
-"\n"
-"Slicing took: %(hours)02d:%(minutes)02d"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:198
-#, python-format
-msgid "Building: [%(index)d/%(size)d]"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:214
-msgid "Aborted by user."
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:228
-#, python-format
-msgid "Done %(index)d/%(size)d"
-msgstr ""
-
-#: Cura/gui/tools/batchRun.py:236
-msgid "To SDCard"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:79
-msgid "Checking token"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:83
-msgid "Failed to contact YouMagine.com"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:83 Cura/gui/tools/youmagineGui.py:116
-#: Cura/gui/tools/youmagineGui.py:133 Cura/gui/tools/youmagineGui.py:140
-#: Cura/gui/tools/youmagineGui.py:148 Cura/gui/tools/youmagineGui.py:153
-msgid "YouMagine error."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:100
-msgid "Cura is now authorized to share on YouMagine"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:100
-msgid "YouMagine."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:112
-msgid "Creating new design on YouMagine..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:116
-msgid "Failed to create a design, nothing uploaded!"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:120
-#, python-format
-msgid "Building model %s..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:131
-#, python-format
-msgid "Uploading model %s..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:133 Cura/gui/tools/youmagineGui.py:140
-#: Cura/gui/tools/youmagineGui.py:148
-#, python-format
-msgid "Failed to upload %s!"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:137
-#, python-format
-msgid "Uploading file %s..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:145
-#, python-format
-msgid "Uploading image %s..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:153
-msgid "Failed to upload snapshot!"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:158
-msgid "Publishing design..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:230
-msgid "Request authorization from YouMagine"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:231
-msgid "Paste token here"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:237
-msgid ""
-"To share your designs on YouMagine\n"
-"you need an account on YouMagine.com\n"
-"and authorize Cura to access your account."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:239
-msgid ""
-"This will open a browser window where you can\n"
-"authorize Cura to access your YouMagine account.\n"
-"You can revoke access at any time\n"
-"from YouMagine.com"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:274
-msgid "Design name"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:278
-msgid "Publish after upload"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:279
-msgid "Share!"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:287
-msgid "Add..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:289
-msgid "Webcam..."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:297
-msgid ""
-"Directly publish the design after uploading.\n"
-"Without this check the design will not be public\n"
-"until you publish it yourself on YouMagine.com"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:303
-msgid "Design name:"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:305
-msgid "Description:"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:307
-msgid "Category:"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:309
-msgid "License:"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:312
-msgid "Images:"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:315
-msgid "Related design files:"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:338
-msgid "The name cannot be empty"
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:338 Cura/gui/tools/youmagineGui.py:342
-msgid "New design error."
-msgstr ""
-
-#: Cura/gui/tools/youmagineGui.py:342
-msgid "The description cannot be empty"
-msgstr ""
-
-#: Cura/gui/util/openglGui.py:239
-msgid "An error has occurred during the 3D view drawing."
-msgstr ""
-
-#: Cura/gui/util/openglGui.py:246
-msgid "3D window error"
-msgstr ""
-
-#: Cura/util/profile.py:153 Cura/util/profile.py:154 Cura/util/profile.py:155
-#: Cura/util/profile.py:179 Cura/util/profile.py:180 Cura/util/profile.py:182
-msgid "Quality"
-msgstr ""
-
-#: Cura/util/profile.py:153
-msgid "Layer height (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:153
-msgid ""
-"Layer height in millimeters.\n"
-"This is the most important setting to determine the quality of your print. "
-"Normal quality prints are 0.1mm, high quality is 0.06mm. You can go up to "
-"0.25mm with an Ultimaker for very fast prints at low quality."
-msgstr ""
-
-#: Cura/util/profile.py:154
-msgid "Shell thickness (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:154
-msgid ""
-"Thickness of the outside shell in the horizontal direction.\n"
-"This is used in combination with the nozzle size to define the number\n"
-"of perimeter lines and the thickness of those perimeter lines."
-msgstr ""
-
-#: Cura/util/profile.py:155
-msgid "Enable retraction"
-msgstr ""
-
-#: Cura/util/profile.py:155
-msgid ""
-"Retract the filament when the nozzle is moving over a none-printed area. "
-"Details about the retraction can be configured in the advanced tab."
-msgstr ""
-
-#: Cura/util/profile.py:156 Cura/util/profile.py:157
-msgid "Fill"
-msgstr ""
-
-#: Cura/util/profile.py:156
-msgid "Bottom/Top thickness (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:156
-msgid ""
-"This controls the thickness of the bottom and top layers, the amount of "
-"solid layers put down is calculated by the layer thickness and this value.\n"
-"Having this value a multiple of the layer thickness makes sense. And keep it "
-"near your wall thickness to make an evenly strong part."
-msgstr ""
-
-#: Cura/util/profile.py:157
-msgid "Fill Density (%)"
-msgstr ""
-
-#: Cura/util/profile.py:157
-msgid ""
-"This controls how densely filled the insides of your print will be. For a "
-"solid part use 100%, for an empty part use 0%. A value around 20% is usually "
-"enough.\n"
-"This won't effect the outside of the print and only adjusts how strong the "
-"part becomes."
-msgstr ""
-
-#: Cura/util/profile.py:158
-msgid ""
-"The nozzle size is very important, this is used to calculate the line width "
-"of the infill, and used to calculate the amount of outside wall lines and "
-"thickness for the wall thickness you entered in the print settings."
-msgstr ""
-
-#: Cura/util/profile.py:159 Cura/util/profile.py:160 Cura/util/profile.py:161
-#: Cura/util/profile.py:162 Cura/util/profile.py:163 Cura/util/profile.py:164
-msgid "Speed & Temperature"
-msgstr ""
-
-#: Cura/util/profile.py:159
-msgid "Print speed (mm/s)"
-msgstr ""
-
-#: Cura/util/profile.py:159
-msgid ""
-"Speed at which printing happens. A well adjusted Ultimaker can reach 150mm/"
-"s, but for good quality prints you want to print slower. Printing speed "
-"depends on a lot of factors. So you will be experimenting with optimal "
-"settings for this."
-msgstr ""
-
-#: Cura/util/profile.py:160
-msgid "Printing temperature (C)"
-msgstr ""
-
-#: Cura/util/profile.py:160 Cura/util/profile.py:161 Cura/util/profile.py:162
-#: Cura/util/profile.py:163
-msgid ""
-"Temperature used for printing. Set at 0 to pre-heat yourself.\n"
-"For PLA a value of 210C is usually used.\n"
-"For ABS a value of 230C or higher is required."
-msgstr ""
-
-#: Cura/util/profile.py:161
-msgid "2nd nozzle temperature (C)"
-msgstr ""
-
-#: Cura/util/profile.py:162
-msgid "3th nozzle temperature (C)"
-msgstr ""
-
-#: Cura/util/profile.py:163
-msgid "4th nozzle temperature (C)"
-msgstr ""
-
-#: Cura/util/profile.py:164
-msgid "Bed temperature (C)"
-msgstr ""
-
-#: Cura/util/profile.py:164
-msgid ""
-"Temperature used for the heated printer bed. Set at 0 to pre-heat yourself."
-msgstr ""
-
-#: Cura/util/profile.py:165 Cura/util/profile.py:166 Cura/util/profile.py:167
-#: Cura/util/profile.py:206 Cura/util/profile.py:207 Cura/util/profile.py:208
-msgid "Support"
-msgstr ""
-
-#: Cura/util/profile.py:165
-msgid "Support type"
-msgstr ""
-
-#: Cura/util/profile.py:165
-msgid ""
-"Type of support structure build.\n"
-"\"Touching buildplate\" is the most commonly used support setting.\n"
-"\n"
-"None does not do any support.\n"
-"Touching buildplate only creates support where the support structure will "
-"touch the build platform.\n"
-"Everywhere creates support even on top of parts of the model."
-msgstr ""
-
-#: Cura/util/profile.py:166
-msgid "Platform adhesion type"
-msgstr ""
-
-#: Cura/util/profile.py:166
-msgid ""
-"Different options that help in preventing corners from lifting due to "
-"warping.\n"
-"Brim adds a single layer thick flat area around your object which is easy to "
-"cut off afterwards, and the recommended option.\n"
-"Raft adds a thick raster at below the object and a thin interface between "
-"this and your object.\n"
-"(Note that enabling the brim or raft disables the skirt)"
-msgstr ""
-
-#: Cura/util/profile.py:167
-msgid "Support dual extrusion"
-msgstr ""
-
-#: Cura/util/profile.py:167
-msgid ""
-"Which extruder to use for support material, for break-away support you can "
-"use both extruders.\n"
-"But if one of the materials is more expensive then the other you could "
-"select an extruder to use for support material. This causes more extruder "
-"switches.\n"
-"You can also use the 2nd extruder for soluble support materials."
-msgstr ""
-
-#: Cura/util/profile.py:168 Cura/util/profile.py:169 Cura/util/profile.py:170
-#: Cura/util/profile.py:171 Cura/util/profile.py:172
-msgid "Filament"
-msgstr ""
-
-#: Cura/util/profile.py:168
-msgid "Diameter (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:168
-msgid ""
-"Diameter of your filament, as accurately as possible.\n"
-"If you cannot measure this value you will have to calibrate it, a higher "
-"number means less extrusion, a smaller number generates more extrusion."
-msgstr ""
-
-#: Cura/util/profile.py:169
-msgid "Diameter2 (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:169
-msgid ""
-"Diameter of your filament for the 2nd nozzle. Use 0 to use the same diameter "
-"as for nozzle 1."
-msgstr ""
-
-#: Cura/util/profile.py:170
-msgid "Diameter3 (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:170
-msgid ""
-"Diameter of your filament for the 3th nozzle. Use 0 to use the same diameter "
-"as for nozzle 1."
-msgstr ""
-
-#: Cura/util/profile.py:171
-msgid "Diameter4 (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:171
-msgid ""
-"Diameter of your filament for the 4th nozzle. Use 0 to use the same diameter "
-"as for nozzle 1."
-msgstr ""
-
-#: Cura/util/profile.py:172
-msgid "Flow (%)"
-msgstr ""
-
-#: Cura/util/profile.py:172
-msgid ""
-"Flow compensation, the amount of material extruded is multiplied by this "
-"value"
-msgstr ""
-
-#: Cura/util/profile.py:173 Cura/util/profile.py:174 Cura/util/profile.py:175
-#: Cura/util/profile.py:176 Cura/util/profile.py:177 Cura/util/profile.py:178
-msgid "Retraction"
-msgstr ""
-
-#: Cura/util/profile.py:173
-msgid "Speed (mm/s)"
-msgstr ""
-
-#: Cura/util/profile.py:173
-msgid ""
-"Speed at which the filament is retracted, a higher retraction speed works "
-"better. But a very high retraction speed can lead to filament grinding."
-msgstr ""
-
-#: Cura/util/profile.py:174
-msgid "Distance (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:174
-msgid ""
-"Amount of retraction, set at 0 for no retraction at all. A value of 4.5mm "
-"seems to generate good results."
-msgstr ""
-
-#: Cura/util/profile.py:175
-msgid "Dual extrusion switch amount (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:175
-msgid ""
-"Amount of retraction when switching nozzle with dual-extrusion, set at 0 for "
-"no retraction at all. A value of 16.0mm seems to generate good results."
-msgstr ""
-
-#: Cura/util/profile.py:176
-msgid "Minimum travel (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:176
-msgid ""
-"Minimum amount of travel needed for a retraction to happen at all. To make "
-"sure you do not get a lot of retractions in a small area."
-msgstr ""
-
-#: Cura/util/profile.py:177
-msgid "Enable combing"
-msgstr ""
-
-#: Cura/util/profile.py:177
-msgid ""
-"Combing is the act of avoiding holes in the print for the head to travel "
-"over. If combing is disabled the printer head moves straight from the start "
-"point to the end point and it will always retract."
-msgstr ""
-
-#: Cura/util/profile.py:178
-msgid "Minimal extrusion before retracting (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:178
-msgid ""
-"The minimal amount of extrusion that needs to be done before retracting "
-"again if a retraction needs to happen before this minimal is reached the "
-"retraction is ignored.\n"
-"This avoids retraction a lot on the same piece of filament which flattens "
-"the filament and causes grinding issues."
-msgstr ""
-
-#: Cura/util/profile.py:179
-msgid "Initial layer thickness (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:179
-msgid ""
-"Layer thickness of the bottom layer. A thicker bottom layer makes sticking "
-"to the bed easier. Set to 0.0 to have the bottom layer thickness the same as "
-"the other layers."
-msgstr ""
-
-#: Cura/util/profile.py:180
-msgid "Cut off object bottom (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:180
-msgid ""
-"Sinks the object into the platform, this can be used for objects that do not "
-"have a flat bottom and thus create a too small first layer."
-msgstr ""
-
-#: Cura/util/profile.py:182
-msgid "Dual extrusion overlap (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:182
-msgid ""
-"Add a certain amount of overlapping extrusion on dual-extrusion prints. This "
-"bonds the different colors better together."
-msgstr ""
-
-#: Cura/util/profile.py:183
-msgid "Travel speed (mm/s)"
-msgstr ""
-
-#: Cura/util/profile.py:183
-msgid ""
-"Speed at which travel moves are done, a high quality build Ultimaker can "
-"reach speeds of 250mm/s. But some machines might miss steps then."
-msgstr ""
-
-#: Cura/util/profile.py:184
-msgid "Bottom layer speed (mm/s)"
-msgstr ""
-
-#: Cura/util/profile.py:184
-msgid ""
-"Print speed for the bottom layer, you want to print the first layer slower "
-"so it sticks better to the printer bed."
-msgstr ""
-
-#: Cura/util/profile.py:185
-msgid "Infill speed (mm/s)"
-msgstr ""
-
-#: Cura/util/profile.py:185
-msgid ""
-"Speed at which infill parts are printed. If set to 0 then the print speed is "
-"used for the infill. Printing the infill faster can greatly reduce printing, "
-"but this can negatively effect print quality.."
-msgstr ""
-
-#: Cura/util/profile.py:186 Cura/util/profile.py:187 Cura/util/profile.py:194
-#: Cura/util/profile.py:195 Cura/util/profile.py:196 Cura/util/profile.py:197
-#: Cura/util/profile.py:198
-msgid "Cool"
-msgstr ""
-
-#: Cura/util/profile.py:186
-msgid "Minimal layer time (sec)"
-msgstr ""
-
-#: Cura/util/profile.py:186
-msgid ""
-"Minimum time spend in a layer, gives the layer time to cool down before the "
-"next layer is put on top. If the layer will be placed down too fast the "
-"printer will slow down to make sure it has spend at least this amount of "
-"seconds printing this layer."
-msgstr ""
-
-#: Cura/util/profile.py:187
-msgid "Enable cooling fan"
-msgstr ""
-
-#: Cura/util/profile.py:187
-msgid ""
-"Enable the cooling fan during the print. The extra cooling from the cooling "
-"fan is essential during faster prints."
-msgstr ""
-
-#: Cura/util/profile.py:189
-msgid "Line count"
-msgstr ""
-
-#: Cura/util/profile.py:189
-msgid ""
-"The skirt is a line drawn around the object at the first layer. This helps "
-"to prime your extruder, and to see if the object fits on your platform.\n"
-"Setting this to 0 will disable the skirt. Multiple skirt lines can help "
-"priming your extruder better for small objects."
-msgstr ""
-
-#: Cura/util/profile.py:190
-msgid "Start distance (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:190
-msgid ""
-"The distance between the skirt and the first layer.\n"
-"This is the minimal distance, multiple skirt lines will be put outwards from "
-"this distance."
-msgstr ""
-
-#: Cura/util/profile.py:191
-msgid "Minimal length (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:191
-msgid ""
-"The minimal length of the skirt, if this minimal length is not reached it "
-"will add more skirt lines to reach this minimal lenght.\n"
-"Note: If the line count is set to 0 this is ignored."
-msgstr ""
-
-#: Cura/util/profile.py:194
-msgid "Fan on layer number"
-msgstr ""
-
-#: Cura/util/profile.py:194
-msgid ""
-"The layer at which the fan is turned on. The first layer is layer 0. The "
-"first layer can stick better if you turn on the fan on, on the 2nd layer."
-msgstr ""
-
-#: Cura/util/profile.py:195
-msgid "Fan speed min (%)"
-msgstr ""
-
-#: Cura/util/profile.py:195
-msgid ""
-"When the fan is turned on, it is enabled at this speed setting. If cool "
-"slows down the layer, the fan is adjusted between the min and max speed. "
-"Minimal fan speed is used if the layer is not slowed down due to cooling."
-msgstr ""
-
-#: Cura/util/profile.py:196
-msgid "Fan speed max (%)"
-msgstr ""
-
-#: Cura/util/profile.py:196
-msgid ""
-"When the fan is turned on, it is enabled at this speed setting. If cool "
-"slows down the layer, the fan is adjusted between the min and max speed. "
-"Maximal fan speed is used if the layer is slowed down due to cooling by more "
-"than 200%."
-msgstr ""
-
-#: Cura/util/profile.py:197
-msgid "Minimum speed (mm/s)"
-msgstr ""
-
-#: Cura/util/profile.py:197
-msgid ""
-"The minimal layer time can cause the print to slow down so much it starts to "
-"ooze. The minimal feedrate protects against this. Even if a print gets slown "
-"down it will never be slower than this minimal speed."
-msgstr ""
-
-#: Cura/util/profile.py:198
-msgid "Cool head lift"
-msgstr ""
-
-#: Cura/util/profile.py:198
-msgid ""
-"Lift the head if the minimal speed is hit because of cool slowdown, and wait "
-"the extra time so the minimal layer time is always hit."
-msgstr ""
-
-#: Cura/util/profile.py:203 Cura/util/profile.py:204 Cura/util/profile.py:205
-msgid "Infill"
-msgstr ""
-
-#: Cura/util/profile.py:203
-msgid "Solid infill top"
-msgstr ""
-
-#: Cura/util/profile.py:203
-msgid ""
-"Create a solid top surface, if set to false the top is filled with the fill "
-"percentage. Useful for cups/vases."
-msgstr ""
-
-#: Cura/util/profile.py:204
-msgid "Solid infill bottom"
-msgstr ""
-
-#: Cura/util/profile.py:204
-msgid ""
-"Create a solid bottom surface, if set to false the bottom is filled with the "
-"fill percentage. Useful for buildings."
-msgstr ""
-
-#: Cura/util/profile.py:205
-msgid "Infill overlap (%)"
-msgstr ""
-
-#: Cura/util/profile.py:205
-msgid ""
-"Amount of overlap between the infill and the walls. There is a slight "
-"overlap with the walls and the infill so the walls connect firmly to the "
-"infill."
-msgstr ""
-
-#: Cura/util/profile.py:206
-msgid "Fill amount (%)"
-msgstr ""
-
-#: Cura/util/profile.py:206
-#, python-format
-msgid ""
-"Amount of infill structure in the support material, less material gives "
-"weaker support which is easier to remove. 20% seems to be a good average."
-msgstr ""
-
-#: Cura/util/profile.py:207
-msgid "Distance X/Y (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:207
-msgid ""
-"Distance of the support material from the print, in the X/Y directions.\n"
-"0.7mm gives a nice distance from the print so the support does not stick to "
-"the print."
-msgstr ""
-
-#: Cura/util/profile.py:208
-msgid "Distance Z (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:208
-msgid ""
-"Distance from the top/bottom of the support to the print. A small gap here "
-"makes it easier to remove the support but makes the print a bit uglier.\n"
-"0.15mm gives a good seperation of the support material."
-msgstr ""
-
-#: Cura/util/profile.py:212
-msgid "Brim"
-msgstr ""
-
-#: Cura/util/profile.py:212
-msgid "Brim line amount"
-msgstr ""
-
-#: Cura/util/profile.py:212
-msgid ""
-"The amount of lines used for a brim, more lines means a larger brim which "
-"sticks better, but this also makes your effective print area smaller."
-msgstr ""
-
-#: Cura/util/profile.py:213 Cura/util/profile.py:214 Cura/util/profile.py:215
-#: Cura/util/profile.py:216 Cura/util/profile.py:217 Cura/util/profile.py:218
-msgid "Raft"
-msgstr ""
-
-#: Cura/util/profile.py:213
-msgid "Extra margin (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:213
-msgid ""
-"If the raft is enabled, this is the extra raft area around the object which "
-"is also rafted. Increasing this margin will create a stronger raft while "
-"using more material and leaving less are for your print."
-msgstr ""
-
-#: Cura/util/profile.py:214
-msgid "Line spacing (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:214
-msgid ""
-"When you are using the raft this is the distance between the centerlines of "
-"the raft line."
-msgstr ""
-
-#: Cura/util/profile.py:215
-msgid "Base thickness (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:215
-msgid ""
-"When you are using the raft this is the thickness of the base layer which is "
-"put down."
-msgstr ""
-
-#: Cura/util/profile.py:216
-msgid "Base line width (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:216
-msgid ""
-"When you are using the raft this is the width of the base layer lines which "
-"are put down."
-msgstr ""
-
-#: Cura/util/profile.py:217
-msgid "Interface thickness (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:217
-msgid ""
-"When you are using the raft this is the thickness of the interface layer "
-"which is put down."
-msgstr ""
-
-#: Cura/util/profile.py:218
-msgid "Interface line width (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:218
-msgid ""
-"When you are using the raft this is the width of the interface layer lines "
-"which are put down."
-msgstr ""
-
-#: Cura/util/profile.py:220 Cura/util/profile.py:221 Cura/util/profile.py:222
-#: Cura/util/profile.py:223
-msgid "Fix horrible"
-msgstr ""
-
-#: Cura/util/profile.py:220
-msgid "Combine everything (Type-A)"
-msgstr ""
-
-#: Cura/util/profile.py:220 Cura/util/profile.py:221
-msgid ""
-"This expert option adds all parts of the model together. The result is "
-"usually that internal cavities disappear. Depending on the model this can be "
-"intended or not. Enabling this option is at your own risk. Type-A is "
-"depended on the model normals and tries to keep some internal holes intact. "
-"Type-B ignores all internal holes and only keeps the outside shape per layer."
-msgstr ""
-
-#: Cura/util/profile.py:221
-msgid "Combine everything (Type-B)"
-msgstr ""
-
-#: Cura/util/profile.py:222
-msgid "Keep open faces"
-msgstr ""
-
-#: Cura/util/profile.py:222
-msgid ""
-"This expert option keeps all the open bits of the model intact. Normally "
-"Cura tries to stitch up small holes and remove everything with big holes, "
-"but this option keeps bits that are not properly part of anything and just "
-"goes with whatever it is left. This option is usually not what you want, but "
-"it might enable you to slice models otherwise failing to produce proper "
-"paths.\n"
-"As with all \"Fix horrible\" options, results may vary and use at your own "
-"risk."
-msgstr ""
-
-#: Cura/util/profile.py:223
-msgid "Extensive stitching"
-msgstr ""
-
-#: Cura/util/profile.py:223
-msgid ""
-"Extrensive stitching tries to fix up open holes in the model by closing the "
-"hole with touching polygons. This algorthm is quite expensive and could "
-"introduce a lot of processing time.\n"
-"As with all \"Fix horrible\" options, results may vary and use at your own "
-"risk."
-msgstr ""
-
-#: Cura/util/profile.py:338
-msgid "Save profile on slice"
-msgstr ""
-
-#: Cura/util/profile.py:338
-msgid ""
-"When slicing save the profile as [stl_file]_profile.ini next to the model."
-msgstr ""
-
-#: Cura/util/profile.py:339
-msgid "Cost (price/kg)"
-msgstr ""
-
-#: Cura/util/profile.py:339
-msgid "Cost of your filament per kg, to estimate the cost of the final print."
-msgstr ""
-
-#: Cura/util/profile.py:340
-msgid "Cost (price/m)"
-msgstr ""
-
-#: Cura/util/profile.py:340
-msgid ""
-"Cost of your filament per meter, to estimate the cost of the final print."
-msgstr ""
-
-#: Cura/util/profile.py:341
-msgid "Auto detect SD card drive"
-msgstr ""
-
-#: Cura/util/profile.py:341
-msgid ""
-"Auto detect the SD card. You can disable this because on some systems "
-"external hard-drives or USB sticks are detected as SD card."
-msgstr ""
-
-#: Cura/util/profile.py:342
-msgid "Check for updates"
-msgstr ""
-
-#: Cura/util/profile.py:342
-msgid "Check for newer versions of Cura on startup"
-msgstr ""
-
-#: Cura/util/profile.py:343
-msgid "Send usage statistics"
-msgstr ""
-
-#: Cura/util/profile.py:343
-msgid "Submit anonymous usage information to improve next versions of Cura"
-msgstr ""
-
-#: Cura/util/profile.py:345
-msgid "Density (kg/m3)"
-msgstr ""
-
-#: Cura/util/profile.py:345
-msgid ""
-"Weight of the filament per m3. Around 1240 for PLA. And around 1040 for ABS. "
-"This value is used to estimate the weight if the filament used for the print."
-msgstr ""
-
-#: Cura/util/profile.py:348
-msgid "Model colour"
-msgstr ""
-
-#: Cura/util/profile.py:349
-msgid "Model colour (2)"
-msgstr ""
-
-#: Cura/util/profile.py:350
-msgid "Model colour (3)"
-msgstr ""
-
-#: Cura/util/profile.py:351
-msgid "Model colour (4)"
-msgstr ""
-
-#: Cura/util/profile.py:362
-msgid "Maximum width (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:362 Cura/util/profile.py:363 Cura/util/profile.py:364
-msgid "Size of the machine in mm"
-msgstr ""
-
-#: Cura/util/profile.py:363
-msgid "Maximum depth (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:364
-msgid "Maximum height (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:367
-msgid ""
-"If you have an heated bed, this enabled heated bed settings (requires "
-"restart)"
-msgstr ""
-
-#: Cura/util/profile.py:368
-msgid "GCode Flavor"
-msgstr ""
-
-#: Cura/util/profile.py:368
-msgid ""
-"Flavor of generated GCode.\n"
-"RepRap is normal 5D GCode which works on Marlin/Sprinter based firmwares.\n"
-"UltiGCode is a variation of the RepRap GCode which puts more settings in the "
-"machine instead of the slicer."
-msgstr ""
-
-#: Cura/util/profile.py:369
-msgid "Extruder count"
-msgstr ""
-
-#: Cura/util/profile.py:369
-msgid "Amount of extruders in your machine."
-msgstr ""
-
-#: Cura/util/profile.py:370 Cura/util/profile.py:372 Cura/util/profile.py:374
-msgid "Offset X"
-msgstr ""
-
-#: Cura/util/profile.py:370 Cura/util/profile.py:371
-msgid "The offset of your secondary extruder compared to the primary."
-msgstr ""
-
-#: Cura/util/profile.py:371 Cura/util/profile.py:373 Cura/util/profile.py:375
-msgid "Offset Y"
-msgstr ""
-
-#: Cura/util/profile.py:372 Cura/util/profile.py:373
-msgid "The offset of your tertiary extruder compared to the primary."
-msgstr ""
-
-#: Cura/util/profile.py:374 Cura/util/profile.py:375
-msgid "The offset of your forth extruder compared to the primary."
-msgstr ""
-
-#: Cura/util/profile.py:376
-msgid "E-Steps per 1mm filament"
-msgstr ""
-
-#: Cura/util/profile.py:376
-msgid ""
-"Amount of steps per mm filament extrusion. If set to 0 then this value is "
-"ignored and the value in your firmware is used."
-msgstr ""
-
-#: Cura/util/profile.py:377
-msgid "Serial port"
-msgstr ""
-
-#: Cura/util/profile.py:377
-msgid "Serial port to use for communication with the printer"
-msgstr ""
-
-#: Cura/util/profile.py:379
-msgid "Baudrate"
-msgstr ""
-
-#: Cura/util/profile.py:379
-msgid ""
-"Speed of the serial port communication\n"
-"Needs to match your firmware settings\n"
-"Common values are 250000, 115200, 57600"
-msgstr ""
-
-#: Cura/util/profile.py:382
-msgid "Head size towards X min (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:382
-msgid ""
-"The head size when printing multiple objects, measured from the tip of the "
-"nozzle towards the outer part of the head. 75mm for an Ultimaker if the fan "
-"is on the left side."
-msgstr ""
-
-#: Cura/util/profile.py:383
-msgid "Head size towards Y min (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:383 Cura/util/profile.py:384
-msgid ""
-"The head size when printing multiple objects, measured from the tip of the "
-"nozzle towards the outer part of the head. 18mm for an Ultimaker if the fan "
-"is on the left side."
-msgstr ""
-
-#: Cura/util/profile.py:384
-msgid "Head size towards X max (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:385
-msgid "Head size towards Y max (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:385
-msgid ""
-"The head size when printing multiple objects, measured from the tip of the "
-"nozzle towards the outer part of the head. 35mm for an Ultimaker if the fan "
-"is on the left side."
-msgstr ""
-
-#: Cura/util/profile.py:386
-msgid "Printer gantry height (mm)"
-msgstr ""
-
-#: Cura/util/profile.py:386
-msgid ""
-"The height of the gantry holding up the printer head. If an object is higher "
-"then this then you cannot print multiple objects one for one. 60mm for an "
-"Ultimaker."
-msgstr ""
+# SOME DESCRIPTIVE TITLE.\r
+# Copyright (C) 2013\r
+# This file is distributed under the same license as the Cura package.\r
+# Ilya Kulakov <kulakov.ilya@gmail.com>, 2013.\r
+#\r
+msgid ""\r
+msgstr ""\r
+"Project-Id-Version: Cura\n"\r
+"Report-Msgid-Bugs-To: \n"\r
+"POT-Creation-Date: 2013-10-01 15:32+0200\n"\r
+"PO-Revision-Date: 2013-09-27 09:41+0100\n"\r
+"Last-Translator: \n"\r
+"Language-Team: LANGUAGE <LL@li.org>\n"\r
+"MIME-Version: 1.0\n"\r
+"Content-Type: text/plain; charset=UTF-8\n"\r
+"Content-Transfer-Encoding: 8bit\n"\r
+"X-Generator: Poedit 1.5.7\n"\r
+\r
+#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:524\r
+msgid "A new version of Cura is available, would you like to download?"\r
+msgstr ""\r
+\r
+#: Cura/gui/app.py:86 Cura/gui/mainWindow.py:524\r
+msgid "New version available"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:220\r
+msgid "Add new machine wizard"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:222\r
+msgid "First time run wizard"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:223\r
+msgid "Welcome, and thanks for trying Cura!"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:225\r
+msgid "This wizard will help you with the following steps:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:226\r
+msgid "* Configure Cura for your machine"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:227\r
+msgid "* Optionally upgrade your firmware"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:228\r
+msgid "* Optionally check if your machine is working safely"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:229\r
+msgid "* Optionally level your printer bed"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:239\r
+msgid ""\r
+"RepRap machines are vastly different, and there is no\n"\r
+"default configuration in Cura for any of them."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:240\r
+msgid ""\r
+"If you like a default profile for your machine added,\n"\r
+"then make an issue on github."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:242\r
+msgid "You will have to manually install Marlin or Sprinter firmware."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:244\r
+msgid "Machine name"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:245\r
+msgid "Machine width (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:246\r
+msgid "Machine depth (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:247\r
+msgid "Machine height (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:248 Cura/util/profile.py:158\r
+msgid "Nozzle size (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:249 Cura/util/profile.py:367\r
+msgid "Heated bed"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:250\r
+msgid "Bed center is 0,0,0 (RoStock)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:270\r
+msgid "Select your machine"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:271\r
+msgid "What kind of machine do you have:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:278\r
+msgid "Other (Ex: RepRap)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:281\r
+msgid ""\r
+"The collection of anonymous usage information helps with the continued "\r
+"improvement of Cura."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:282\r
+msgid ""\r
+"This does NOT submit your models online nor gathers any privacy related "\r
+"information."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:283\r
+msgid "Submit anonymous usage information:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:284\r
+msgid "For full details see: http://wiki.ultimaker.com/Cura:stats"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:346\r
+msgid "Select upgraded parts you have"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:347\r
+msgid ""\r
+"To assist you in having better default settings for your Ultimaker\n"\r
+"Cura would like to know which upgrades you have in your machine."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:349\r
+msgid "Extruder drive upgrade"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:350\r
+msgid "Heated printer bed (self built)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:351\r
+msgid "Dual extrusion (experimental)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:353\r
+msgid ""\r
+"If you have an Ultimaker bought after october 2012 you will have the\n"\r
+"Extruder drive upgrade. If you do not have this upgrade,\n"\r
+"it is highly recommended to improve reliability."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:354\r
+msgid ""\r
+"This upgrade can be bought from the Ultimaker webshop\n"\r
+"or found on thingiverse as thing:26094"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:373\r
+msgid "Upgrade Ultimaker Firmware"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:374\r
+msgid ""\r
+"Firmware is the piece of software running directly on your 3D printer.\n"\r
+"This firmware controls the step motors, regulates the temperature\n"\r
+"and ultimately makes your printer work."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:376\r
+msgid ""\r
+"The firmware shipping with new Ultimakers works, but upgrades\n"\r
+"have been made to make better prints, and make calibration easier."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:378\r
+msgid ""\r
+"Cura requires these new features and thus\n"\r
+"your firmware will most likely need to be upgraded.\n"\r
+"You will get the chance to do so now."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:383\r
+msgid "Do not upgrade to this firmware if:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:384\r
+msgid "* You have an older machine based on ATMega1280"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:385\r
+msgid "* Have other changes in the firmware"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:419\r
+msgid ""\r
+"It is a good idea to do a few sanity checks now on your Ultimaker.\n"\r
+"You can skip these if you know your machine is functional."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:420\r
+msgid "Run checks"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:420\r
+msgid "Skip checks"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:424\r
+msgid "Communication:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:425\r
+msgid "Temperature:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:426\r
+msgid "Endstops:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:431\r
+msgid "Show error log"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:465\r
+msgid "Connecting to machine."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:486\r
+msgid "Cooldown before temperature check."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:492 Cura/gui/configWizard.py:499\r
+msgid "Checking the heater and temperature sensor."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:510\r
+msgid "Please make sure none of the endstops are pressed."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:523\r
+msgid "Temperature measurement FAILED!"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:528\r
+#, python-format\r
+msgid "Head temperature: %d"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:535 Cura/gui/configWizard.py:544\r
+#, python-format\r
+msgid "Communication State: %s"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:538\r
+msgid "Failed to establish connection with the printer."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:583\r
+msgid "Please press the right X endstop."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:588\r
+msgid "Please press the left X endstop."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:593\r
+msgid "Please press the front Y endstop."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:598\r
+msgid "Please press the back Y endstop."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:603\r
+msgid "Please press the top Z endstop."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:608\r
+msgid "Please press the bottom Z endstop."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:614\r
+msgid "Checkup finished"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:657\r
+msgid "Calibrating the Steps Per E requires some manual actions."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:658\r
+msgid "First remove any filament from your machine."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:659\r
+msgid ""\r
+"Next put in your filament so the tip is aligned with the\n"\r
+"top of the extruder drive."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:660\r
+msgid "We'll push the filament 100mm"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:661\r
+msgid "Extrude 100mm filament"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:662\r
+msgid ""\r
+"Now measure the amount of extruded filament:\n"\r
+"(this can be more or less then 100mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:663\r
+msgid "Save"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:664\r
+msgid "This results in the following steps per E:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:666\r
+msgid "You can repeat these steps to get better calibration."\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:669\r
+msgid ""\r
+"If you still have filament in your printer which needs\n"\r
+"heat to remove, press the heat up button below:"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:670\r
+msgid "Heatup for filament removal"\r
+msgstr ""\r
+\r
+#: Cura/gui/configWizard.py:693 Cura/gui/configWizard.py:725\r
+msgid ""\r
+"Error: Failed to open serial port to machine\n"\r
+"If this keeps happening, try disconnecting and reconnecting the USB cable"\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:39\r
+msgid ""\r
+"I am sorry, but Cura does not ship with a default firmware for your machine "\r
+"configuration."\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:39 Cura/gui/firmwareInstall.py:98\r
+#: Cura/gui/mainWindow.py:459\r
+msgid "Firmware update"\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:49\r
+msgid "OK"\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:68\r
+msgid "Reading firmware..."\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:70\r
+msgid "Connecting to machine..."\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:87\r
+msgid "Uploading firmware..."\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:90\r
+#, python-format\r
+msgid ""\r
+"Done!\n"\r
+"Installed firmware: %s"\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:92\r
+msgid "Failed to write firmware.\n"\r
+msgstr ""\r
+\r
+#: Cura/gui/firmwareInstall.py:97\r
+msgid ""\r
+"Failed to find machine for firmware upgrade\n"\r
+"Is your machine connected to the PC?"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:56\r
+msgid "Load model file...\tCTRL+L"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:58\r
+msgid "Save model...\tCTRL+S"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:60\r
+msgid "Clear platform"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:64\r
+msgid "Print...\tCTRL+P"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:66 Cura/gui/sceneView.py:244\r
+msgid "Save GCode..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:68\r
+msgid "Show slice engine log..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:72\r
+msgid "Open Profile..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:75\r
+msgid "Save Profile..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:78\r
+msgid "Load Profile from GCode..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:82\r
+msgid "Reset Profile to default"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:87\r
+msgid "Preferences...\tCTRL+,"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:89\r
+msgid "Machine settings..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:95\r
+msgid "Recent Model Files"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:102\r
+msgid "Recent Profile Files"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:108\r
+msgid "Quit"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:110\r
+msgid "File"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:114\r
+msgid "Switch to quickprint..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:118\r
+msgid "Switch to full settings..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:128\r
+msgid "Minecraft map import..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:132\r
+msgid "PID Debugger..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:135\r
+msgid "Copy profile to clipboard"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:137\r
+msgid "Tools"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:143 Cura/util/profile.py:158\r
+msgid "Machine"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:146\r
+msgid "Open expert settings..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:150\r
+msgid "Run first run wizard..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:152\r
+msgid "Run bed leveling wizard..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:155\r
+msgid "Run head offset wizard..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:158\r
+msgid "Expert"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:161\r
+msgid "Online documentation..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:163\r
+msgid "Report a problem..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:165\r
+msgid "Check for update..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:167\r
+msgid "Open YouMagine website..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:169\r
+msgid "About Cura..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:171\r
+msgid "Help"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:391\r
+msgid "Add new machine..."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:396\r
+msgid "Install custom firmware"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:398\r
+msgid "Install default Marlin firmware"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:402\r
+msgid "Select profile file to load"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:414\r
+msgid "Select gcode file to load profile from"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:427\r
+msgid ""\r
+"No profile found in GCode file.\n"\r
+"This feature only works with GCode files made by Cura 12.07 or newer."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:427\r
+msgid "Profile load error"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:431\r
+msgid "Select profile file to save"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:439\r
+msgid ""\r
+"This will reset all profile settings to defaults.\n"\r
+"Unless you have saved your current profile, all settings will be lost!\n"\r
+"Do you really want to reset?"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:439\r
+msgid "Profile reset"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:459\r
+msgid ""\r
+"Warning: Installing a custom firmware does not guarantee that you machine "\r
+"will function correctly, and could damage your machine."\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:460\r
+msgid "Open firmware to upload"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:527\r
+msgid "You are running the latest version of Cura!"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:527\r
+msgid "Awesome!"\r
+msgstr ""\r
+\r
+#: Cura/gui/mainWindow.py:583\r
+msgid "Plugins"\r
+msgstr ""\r
+\r
+#: Cura/gui/pluginPanel.py:26\r
+msgid "Plugins:"\r
+msgstr ""\r
+\r
+#: Cura/gui/pluginPanel.py:30\r
+msgid "Open plugin location"\r
+msgstr ""\r
+\r
+#: Cura/gui/pluginPanel.py:31\r
+msgid "Enabled plugins"\r
+msgstr ""\r
+\r
+#: Cura/gui/pluginPanel.py:133\r
+msgid "You need to select a plugin before you can add anything."\r
+msgstr ""\r
+\r
+#: Cura/gui/pluginPanel.py:133\r
+msgid "Error: no plugin selected"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:24\r
+msgid "Colours"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:29\r
+msgid "Filament settings"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:39\r
+msgid "Cura settings"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:73\r
+msgid "Machine settings"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:82\r
+msgid "Printer head size"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:90\r
+#, python-format\r
+msgid "Extruder %d"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:94\r
+msgid "Communication settings"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:137\r
+msgid "Cannot remove the last machine configuration in Cura"\r
+msgstr ""\r
+\r
+#: Cura/gui/preferencesDialog.py:137\r
+msgid "Machine remove error"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:129\r
+msgid "Printing"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:158\r
+msgid "Statistics"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:163\r
+msgid ""\r
+"Your computer is running on battery power.\n"\r
+"Connect your computer to AC power or your print might not finish."\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:174\r
+msgid ""\r
+"Filament: ####.##m #.##g\n"\r
+"Estimated print time: #####:##\n"\r
+"Machine state:\n"\r
+"Detecting baudrateXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:179\r
+msgid "Connect"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:181 Cura/gui/sceneView.py:65\r
+#: Cura/gui/sceneView.py:804\r
+msgid "Print"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:182 Cura/gui/printWindow.py:419\r
+msgid "Pause"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:183\r
+msgid "Cancel print"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:184\r
+msgid "Error log"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:205\r
+msgid "BedTemp:"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:213\r
+msgid "Temp:"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:261\r
+msgid "Jog"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:276\r
+msgid "Outer wall:"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:279\r
+msgid "Inner wall:"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:282\r
+msgid "Fill:"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:285\r
+msgid "Support:"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:289 Cura/util/profile.py:183\r
+#: Cura/util/profile.py:184 Cura/util/profile.py:185\r
+msgid "Speed"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:307\r
+msgid "Term"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:314\r
+msgid "Enable timelapse movie recording"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:328\r
+msgid "Show preview"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:334\r
+msgid "Camera"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:417\r
+msgid "Resume"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:434\r
+msgid "Loading gcode...\n"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:436\r
+#, python-format\r
+msgid "Filament: %(amount).2fm %(weight).2fg\n"\r
+msgstr ""\r
+\r
+#: Cura/gui/printWindow.py:439\r
+#, python-format\r
+msgid "Filament cost: %s\n"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:64\r
+msgid "Load"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:69\r
+msgid "Rotate"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:70\r
+msgid "Scale"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:71\r
+msgid "Mirror"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:73 Cura/gui/sceneView.py:76\r
+msgid "Reset"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:74\r
+msgid "Lay flat"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:77\r
+msgid "To max"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:79\r
+msgid "Mirror X"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:80\r
+msgid "Mirror Y"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:81\r
+msgid "Mirror Z"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:89\r
+msgid "Scale X"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:91\r
+msgid "Scale Y"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:93\r
+msgid "Scale Z"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:95\r
+msgid "Size X (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:97\r
+msgid "Size Y (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:99\r
+msgid "Size Z (mm)"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:101\r
+msgid "Uniform scale"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:104\r
+msgid "View mode"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:104\r
+msgid "Normal"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:104\r
+msgid "Overhang"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:104\r
+msgid "Transparent"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:104\r
+msgid "X-Ray"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:104\r
+msgid "Layers"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:107\r
+msgid "Share on YouMagine"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:198\r
+msgid "Open 3D model"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:213\r
+msgid "Save 3D model"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:243\r
+msgid "Print with USB"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:245\r
+msgid "Slice engine log..."\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:257 Cura/gui/sceneView.py:810\r
+msgid "Save toolpath"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:296\r
+msgid "The slicing engine reported the following"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:296\r
+msgid "Engine log..."\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:675\r
+msgid "Delete object"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:676\r
+msgid "Center on platform"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:677\r
+msgid "Multiply object"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:678\r
+msgid "Split object into parts"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:680\r
+msgid "Dual extrusion merge"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:682\r
+msgid "Delete all objects"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:807\r
+msgid "Toolpath to SD"\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:1117\r
+msgid "Loading toolpath for visualization..."\r
+msgstr ""\r
+\r
+#: Cura/gui/sceneView.py:1168\r
+msgid "Overhang view not working due to lack of OpenGL shaders support."\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:20\r
+msgid "High quality print"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:21\r
+msgid "Normal quality print"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:22\r
+msgid "Fast low quality print"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:23\r
+msgid "Thin walled cup or vase"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:33\r
+msgid "Print support structure"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:38\r
+msgid "Select a print type:"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:48\r
+msgid "Material:"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:52\r
+msgid "Diameter:"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:58\r
+msgid "Other:"\r
+msgstr ""\r
+\r
+#: Cura/gui/simpleMode.py:119\r
+msgid "Exterior Only"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:14\r
+msgid "Cura - Batch run"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:29\r
+msgid "Add"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:30\r
+msgid "Remove"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:31\r
+msgid "Prepare all"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:47\r
+msgid "Open file to batch prepare"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:134\r
+#, python-format\r
+msgid "Building: %d                           "\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:137\r
+#, python-format\r
+msgid "Done: 0/%d                           "\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:140\r
+msgid "Abort"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:163 Cura/gui/tools/batchRun.py:233\r
+msgid "Close"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:187\r
+#, python-format\r
+msgid "Build: %d models"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:188\r
+#, python-format\r
+msgid ""\r
+"\n"\r
+"Slicing took: %(hours)02d:%(minutes)02d"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:198\r
+#, python-format\r
+msgid "Building: [%(index)d/%(size)d]"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:214\r
+msgid "Aborted by user."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:228\r
+#, python-format\r
+msgid "Done %(index)d/%(size)d"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/batchRun.py:236\r
+msgid "To SDCard"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:79\r
+msgid "Checking token"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:83\r
+msgid "Failed to contact YouMagine.com"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:83 Cura/gui/tools/youmagineGui.py:116\r
+#: Cura/gui/tools/youmagineGui.py:133 Cura/gui/tools/youmagineGui.py:140\r
+#: Cura/gui/tools/youmagineGui.py:148 Cura/gui/tools/youmagineGui.py:153\r
+msgid "YouMagine error."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:100\r
+msgid "Cura is now authorized to share on YouMagine"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:100\r
+msgid "YouMagine."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:112\r
+msgid "Creating new design on YouMagine..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:116\r
+msgid "Failed to create a design, nothing uploaded!"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:120\r
+#, python-format\r
+msgid "Building model %s..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:131\r
+#, python-format\r
+msgid "Uploading model %s..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:133 Cura/gui/tools/youmagineGui.py:140\r
+#: Cura/gui/tools/youmagineGui.py:148\r
+#, python-format\r
+msgid "Failed to upload %s!"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:137\r
+#, python-format\r
+msgid "Uploading file %s..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:145\r
+#, python-format\r
+msgid "Uploading image %s..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:153\r
+msgid "Failed to upload snapshot!"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:158\r
+msgid "Publishing design..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:230\r
+msgid "Request authorization from YouMagine"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:231\r
+msgid "Paste token here"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:237\r
+msgid ""\r
+"To share your designs on YouMagine\n"\r
+"you need an account on YouMagine.com\n"\r
+"and authorize Cura to access your account."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:239\r
+msgid ""\r
+"This will open a browser window where you can\n"\r
+"authorize Cura to access your YouMagine account.\n"\r
+"You can revoke access at any time\n"\r
+"from YouMagine.com"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:274\r
+msgid "Design name"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:278\r
+msgid "Publish after upload"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:279\r
+msgid "Share!"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:287\r
+msgid "Add..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:289\r
+msgid "Webcam..."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:297\r
+msgid ""\r
+"Directly publish the design after uploading.\n"\r
+"Without this check the design will not be public\n"\r
+"until you publish it yourself on YouMagine.com"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:303\r
+msgid "Design name:"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:305\r
+msgid "Description:"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:307\r
+msgid "Category:"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:309\r
+msgid "License:"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:312\r
+msgid "Images:"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:315\r
+msgid "Related design files:"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:338\r
+msgid "The name cannot be empty"\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:338 Cura/gui/tools/youmagineGui.py:342\r
+msgid "New design error."\r
+msgstr ""\r
+\r
+#: Cura/gui/tools/youmagineGui.py:342\r
+msgid "The description cannot be empty"\r
+msgstr ""\r
+\r
+#: Cura/gui/util/openglGui.py:239\r
+msgid "An error has occurred during the 3D view drawing."\r
+msgstr ""\r
+\r
+#: Cura/gui/util/openglGui.py:246\r
+msgid "3D window error"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:153 Cura/util/profile.py:154 Cura/util/profile.py:155\r
+#: Cura/util/profile.py:179 Cura/util/profile.py:180 Cura/util/profile.py:182\r
+msgid "Quality"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:153\r
+msgid "Layer height (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:153\r
+msgid ""\r
+"Layer height in millimeters.\n"\r
+"This is the most important setting to determine the quality of your print. "\r
+"Normal quality prints are 0.1mm, high quality is 0.06mm. You can go up to "\r
+"0.25mm with an Ultimaker for very fast prints at low quality."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:154\r
+msgid "Shell thickness (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:154\r
+msgid ""\r
+"Thickness of the outside shell in the horizontal direction.\n"\r
+"This is used in combination with the nozzle size to define the number\n"\r
+"of perimeter lines and the thickness of those perimeter lines."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:155\r
+msgid "Enable retraction"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:155\r
+msgid ""\r
+"Retract the filament when the nozzle is moving over a none-printed area. "\r
+"Details about the retraction can be configured in the advanced tab."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:156 Cura/util/profile.py:157\r
+msgid "Fill"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:156\r
+msgid "Bottom/Top thickness (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:156\r
+msgid ""\r
+"This controls the thickness of the bottom and top layers, the amount of "\r
+"solid layers put down is calculated by the layer thickness and this value.\n"\r
+"Having this value a multiple of the layer thickness makes sense. And keep it "\r
+"near your wall thickness to make an evenly strong part."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:157\r
+msgid "Fill Density (%)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:157\r
+msgid ""\r
+"This controls how densely filled the insides of your print will be. For a "\r
+"solid part use 100%, for an empty part use 0%. A value around 20% is usually "\r
+"enough.\n"\r
+"This won't effect the outside of the print and only adjusts how strong the "\r
+"part becomes."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:158\r
+msgid ""\r
+"The nozzle size is very important, this is used to calculate the line width "\r
+"of the infill, and used to calculate the amount of outside wall lines and "\r
+"thickness for the wall thickness you entered in the print settings."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:159 Cura/util/profile.py:160 Cura/util/profile.py:161\r
+#: Cura/util/profile.py:162 Cura/util/profile.py:163 Cura/util/profile.py:164\r
+msgid "Speed and Temperature"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:159\r
+msgid "Print speed (mm/s)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:159\r
+msgid ""\r
+"Speed at which printing happens. A well adjusted Ultimaker can reach 150mm/"\r
+"s, but for good quality prints you want to print slower. Printing speed "\r
+"depends on a lot of factors. So you will be experimenting with optimal "\r
+"settings for this."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:160\r
+msgid "Printing temperature (C)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:160 Cura/util/profile.py:161 Cura/util/profile.py:162\r
+#: Cura/util/profile.py:163\r
+msgid ""\r
+"Temperature used for printing. Set at 0 to pre-heat yourself.\n"\r
+"For PLA a value of 210C is usually used.\n"\r
+"For ABS a value of 230C or higher is required."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:161\r
+msgid "2nd nozzle temperature (C)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:162\r
+msgid "3th nozzle temperature (C)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:163\r
+msgid "4th nozzle temperature (C)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:164\r
+msgid "Bed temperature (C)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:164\r
+msgid ""\r
+"Temperature used for the heated printer bed. Set at 0 to pre-heat yourself."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165 Cura/util/profile.py:166\r
+msgid "None"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165\r
+msgid "Touching buildplate"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165\r
+msgid "Everywhere"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165 Cura/util/profile.py:166 Cura/util/profile.py:167\r
+#: Cura/util/profile.py:206 Cura/util/profile.py:207 Cura/util/profile.py:208\r
+msgid "Support"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165\r
+msgid "Support type"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:165\r
+msgid ""\r
+"Type of support structure build.\n"\r
+"\"Touching buildplate\" is the most commonly used support setting.\n"\r
+"\n"\r
+"None does not do any support.\n"\r
+"Touching buildplate only creates support where the support structure will "\r
+"touch the build platform.\n"\r
+"Everywhere creates support even on top of parts of the model."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:166 Cura/util/profile.py:212\r
+msgid "Brim"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:166 Cura/util/profile.py:213 Cura/util/profile.py:214\r
+#: Cura/util/profile.py:215 Cura/util/profile.py:216 Cura/util/profile.py:217\r
+#: Cura/util/profile.py:218\r
+msgid "Raft"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:166\r
+msgid "Platform adhesion type"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:166\r
+msgid ""\r
+"Different options that help in preventing corners from lifting due to "\r
+"warping.\n"\r
+"Brim adds a single layer thick flat area around your object which is easy to "\r
+"cut off afterwards, and the recommended option.\n"\r
+"Raft adds a thick raster at below the object and a thin interface between "\r
+"this and your object.\n"\r
+"(Note that enabling the brim or raft disables the skirt)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:167\r
+msgid "Both"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:167\r
+msgid "First extruder"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:167\r
+msgid "Second extruder"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:167\r
+msgid "Support dual extrusion"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:167\r
+msgid ""\r
+"Which extruder to use for support material, for break-away support you can "\r
+"use both extruders.\n"\r
+"But if one of the materials is more expensive then the other you could "\r
+"select an extruder to use for support material. This causes more extruder "\r
+"switches.\n"\r
+"You can also use the 2nd extruder for soluble support materials."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:168 Cura/util/profile.py:169 Cura/util/profile.py:170\r
+#: Cura/util/profile.py:171 Cura/util/profile.py:172\r
+msgid "Filament"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:168\r
+msgid "Diameter (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:168\r
+msgid ""\r
+"Diameter of your filament, as accurately as possible.\n"\r
+"If you cannot measure this value you will have to calibrate it, a higher "\r
+"number means less extrusion, a smaller number generates more extrusion."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:169\r
+msgid "Diameter2 (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:169\r
+msgid ""\r
+"Diameter of your filament for the 2nd nozzle. Use 0 to use the same diameter "\r
+"as for nozzle 1."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:170\r
+msgid "Diameter3 (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:170\r
+msgid ""\r
+"Diameter of your filament for the 3th nozzle. Use 0 to use the same diameter "\r
+"as for nozzle 1."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:171\r
+msgid "Diameter4 (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:171\r
+msgid ""\r
+"Diameter of your filament for the 4th nozzle. Use 0 to use the same diameter "\r
+"as for nozzle 1."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:172\r
+msgid "Flow (%)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:172\r
+msgid ""\r
+"Flow compensation, the amount of material extruded is multiplied by this "\r
+"value"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:173 Cura/util/profile.py:174 Cura/util/profile.py:175\r
+#: Cura/util/profile.py:176 Cura/util/profile.py:177 Cura/util/profile.py:178\r
+msgid "Retraction"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:173\r
+msgid "Speed (mm/s)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:173\r
+msgid ""\r
+"Speed at which the filament is retracted, a higher retraction speed works "\r
+"better. But a very high retraction speed can lead to filament grinding."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:174\r
+msgid "Distance (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:174\r
+msgid ""\r
+"Amount of retraction, set at 0 for no retraction at all. A value of 4.5mm "\r
+"seems to generate good results."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:175\r
+msgid "Dual extrusion switch amount (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:175\r
+msgid ""\r
+"Amount of retraction when switching nozzle with dual-extrusion, set at 0 for "\r
+"no retraction at all. A value of 16.0mm seems to generate good results."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:176\r
+msgid "Minimum travel (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:176\r
+msgid ""\r
+"Minimum amount of travel needed for a retraction to happen at all. To make "\r
+"sure you do not get a lot of retractions in a small area."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:177\r
+msgid "Enable combing"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:177\r
+msgid ""\r
+"Combing is the act of avoiding holes in the print for the head to travel "\r
+"over. If combing is disabled the printer head moves straight from the start "\r
+"point to the end point and it will always retract."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:178\r
+msgid "Minimal extrusion before retracting (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:178\r
+msgid ""\r
+"The minimal amount of extrusion that needs to be done before retracting "\r
+"again if a retraction needs to happen before this minimal is reached the "\r
+"retraction is ignored.\n"\r
+"This avoids retraction a lot on the same piece of filament which flattens "\r
+"the filament and causes grinding issues."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:179\r
+msgid "Initial layer thickness (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:179\r
+msgid ""\r
+"Layer thickness of the bottom layer. A thicker bottom layer makes sticking "\r
+"to the bed easier. Set to 0.0 to have the bottom layer thickness the same as "\r
+"the other layers."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:180\r
+msgid "Cut off object bottom (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:180\r
+msgid ""\r
+"Sinks the object into the platform, this can be used for objects that do not "\r
+"have a flat bottom and thus create a too small first layer."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:182\r
+msgid "Dual extrusion overlap (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:182\r
+msgid ""\r
+"Add a certain amount of overlapping extrusion on dual-extrusion prints. This "\r
+"bonds the different colors better together."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:183\r
+msgid "Travel speed (mm/s)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:183\r
+msgid ""\r
+"Speed at which travel moves are done, a high quality build Ultimaker can "\r
+"reach speeds of 250mm/s. But some machines might miss steps then."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:184\r
+msgid "Bottom layer speed (mm/s)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:184\r
+msgid ""\r
+"Print speed for the bottom layer, you want to print the first layer slower "\r
+"so it sticks better to the printer bed."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:185\r
+msgid "Infill speed (mm/s)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:185\r
+msgid ""\r
+"Speed at which infill parts are printed. If set to 0 then the print speed is "\r
+"used for the infill. Printing the infill faster can greatly reduce printing, "\r
+"but this can negatively effect print quality.."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:186 Cura/util/profile.py:187 Cura/util/profile.py:194\r
+#: Cura/util/profile.py:195 Cura/util/profile.py:196 Cura/util/profile.py:197\r
+#: Cura/util/profile.py:198\r
+msgid "Cool"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:186\r
+msgid "Minimal layer time (sec)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:186\r
+msgid ""\r
+"Minimum time spend in a layer, gives the layer time to cool down before the "\r
+"next layer is put on top. If the layer will be placed down too fast the "\r
+"printer will slow down to make sure it has spend at least this amount of "\r
+"seconds printing this layer."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:187\r
+msgid "Enable cooling fan"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:187\r
+msgid ""\r
+"Enable the cooling fan during the print. The extra cooling from the cooling "\r
+"fan is essential during faster prints."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:189\r
+msgid "Line count"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:189\r
+msgid ""\r
+"The skirt is a line drawn around the object at the first layer. This helps "\r
+"to prime your extruder, and to see if the object fits on your platform.\n"\r
+"Setting this to 0 will disable the skirt. Multiple skirt lines can help "\r
+"priming your extruder better for small objects."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:190\r
+msgid "Start distance (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:190\r
+msgid ""\r
+"The distance between the skirt and the first layer.\n"\r
+"This is the minimal distance, multiple skirt lines will be put outwards from "\r
+"this distance."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:191\r
+msgid "Minimal length (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:191\r
+msgid ""\r
+"The minimal length of the skirt, if this minimal length is not reached it "\r
+"will add more skirt lines to reach this minimal lenght.\n"\r
+"Note: If the line count is set to 0 this is ignored."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:194\r
+msgid "Fan on layer number"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:194\r
+msgid ""\r
+"The layer at which the fan is turned on. The first layer is layer 0. The "\r
+"first layer can stick better if you turn on the fan on, on the 2nd layer."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:195\r
+msgid "Fan speed min (%)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:195\r
+msgid ""\r
+"When the fan is turned on, it is enabled at this speed setting. If cool "\r
+"slows down the layer, the fan is adjusted between the min and max speed. "\r
+"Minimal fan speed is used if the layer is not slowed down due to cooling."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:196\r
+msgid "Fan speed max (%)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:196\r
+msgid ""\r
+"When the fan is turned on, it is enabled at this speed setting. If cool "\r
+"slows down the layer, the fan is adjusted between the min and max speed. "\r
+"Maximal fan speed is used if the layer is slowed down due to cooling by more "\r
+"than 200%."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:197\r
+msgid "Minimum speed (mm/s)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:197\r
+msgid ""\r
+"The minimal layer time can cause the print to slow down so much it starts to "\r
+"ooze. The minimal feedrate protects against this. Even if a print gets slown "\r
+"down it will never be slower than this minimal speed."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:198\r
+msgid "Cool head lift"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:198\r
+msgid ""\r
+"Lift the head if the minimal speed is hit because of cool slowdown, and wait "\r
+"the extra time so the minimal layer time is always hit."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:203 Cura/util/profile.py:204 Cura/util/profile.py:205\r
+msgid "Infill"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:203\r
+msgid "Solid infill top"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:203\r
+msgid ""\r
+"Create a solid top surface, if set to false the top is filled with the fill "\r
+"percentage. Useful for cups/vases."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:204\r
+msgid "Solid infill bottom"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:204\r
+msgid ""\r
+"Create a solid bottom surface, if set to false the bottom is filled with the "\r
+"fill percentage. Useful for buildings."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:205\r
+msgid "Infill overlap (%)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:205\r
+msgid ""\r
+"Amount of overlap between the infill and the walls. There is a slight "\r
+"overlap with the walls and the infill so the walls connect firmly to the "\r
+"infill."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:206\r
+msgid "Fill amount (%)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:206\r
+#, python-format\r
+msgid ""\r
+"Amount of infill structure in the support material, less material gives "\r
+"weaker support which is easier to remove. 20% seems to be a good average."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:207\r
+msgid "Distance X/Y (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:207\r
+msgid ""\r
+"Distance of the support material from the print, in the X/Y directions.\n"\r
+"0.7mm gives a nice distance from the print so the support does not stick to "\r
+"the print."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:208\r
+msgid "Distance Z (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:208\r
+msgid ""\r
+"Distance from the top/bottom of the support to the print. A small gap here "\r
+"makes it easier to remove the support but makes the print a bit uglier.\n"\r
+"0.15mm gives a good seperation of the support material."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:212\r
+msgid "Brim line amount"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:212\r
+msgid ""\r
+"The amount of lines used for a brim, more lines means a larger brim which "\r
+"sticks better, but this also makes your effective print area smaller."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:213\r
+msgid "Extra margin (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:213\r
+msgid ""\r
+"If the raft is enabled, this is the extra raft area around the object which "\r
+"is also rafted. Increasing this margin will create a stronger raft while "\r
+"using more material and leaving less are for your print."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:214\r
+msgid "Line spacing (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:214\r
+msgid ""\r
+"When you are using the raft this is the distance between the centerlines of "\r
+"the raft line."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:215\r
+msgid "Base thickness (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:215\r
+msgid ""\r
+"When you are using the raft this is the thickness of the base layer which is "\r
+"put down."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:216\r
+msgid "Base line width (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:216\r
+msgid ""\r
+"When you are using the raft this is the width of the base layer lines which "\r
+"are put down."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:217\r
+msgid "Interface thickness (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:217\r
+msgid ""\r
+"When you are using the raft this is the thickness of the interface layer "\r
+"which is put down."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:218\r
+msgid "Interface line width (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:218\r
+msgid ""\r
+"When you are using the raft this is the width of the interface layer lines "\r
+"which are put down."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:220 Cura/util/profile.py:221 Cura/util/profile.py:222\r
+#: Cura/util/profile.py:223\r
+msgid "Fix horrible"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:220\r
+msgid "Combine everything (Type-A)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:220 Cura/util/profile.py:221\r
+msgid ""\r
+"This expert option adds all parts of the model together. The result is "\r
+"usually that internal cavities disappear. Depending on the model this can be "\r
+"intended or not. Enabling this option is at your own risk. Type-A is "\r
+"depended on the model normals and tries to keep some internal holes intact. "\r
+"Type-B ignores all internal holes and only keeps the outside shape per layer."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:221\r
+msgid "Combine everything (Type-B)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:222\r
+msgid "Keep open faces"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:222\r
+msgid ""\r
+"This expert option keeps all the open bits of the model intact. Normally "\r
+"Cura tries to stitch up small holes and remove everything with big holes, "\r
+"but this option keeps bits that are not properly part of anything and just "\r
+"goes with whatever it is left. This option is usually not what you want, but "\r
+"it might enable you to slice models otherwise failing to produce proper "\r
+"paths.\n"\r
+"As with all \"Fix horrible\" options, results may vary and use at your own "\r
+"risk."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:223\r
+msgid "Extensive stitching"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:223\r
+msgid ""\r
+"Extrensive stitching tries to fix up open holes in the model by closing the "\r
+"hole with touching polygons. This algorthm is quite expensive and could "\r
+"introduce a lot of processing time.\n"\r
+"As with all \"Fix horrible\" options, results may vary and use at your own "\r
+"risk."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:338\r
+msgid "Save profile on slice"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:338\r
+msgid ""\r
+"When slicing save the profile as [stl_file]_profile.ini next to the model."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:339\r
+msgid "Cost (price/kg)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:339\r
+msgid "Cost of your filament per kg, to estimate the cost of the final print."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:340\r
+msgid "Cost (price/m)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:340\r
+msgid ""\r
+"Cost of your filament per meter, to estimate the cost of the final print."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:341\r
+msgid "Auto detect SD card drive"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:341\r
+msgid ""\r
+"Auto detect the SD card. You can disable this because on some systems "\r
+"external hard-drives or USB sticks are detected as SD card."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:342\r
+msgid "Check for updates"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:342\r
+msgid "Check for newer versions of Cura on startup"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:343\r
+msgid "Send usage statistics"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:343\r
+msgid "Submit anonymous usage information to improve next versions of Cura"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:345\r
+msgid "Density (kg/m3)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:345\r
+msgid ""\r
+"Weight of the filament per m3. Around 1240 for PLA. And around 1040 for ABS. "\r
+"This value is used to estimate the weight if the filament used for the print."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:348\r
+msgid "Model colour"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:349\r
+msgid "Model colour (2)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:350\r
+msgid "Model colour (3)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:351\r
+msgid "Model colour (4)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:362\r
+msgid "Maximum width (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:362 Cura/util/profile.py:363 Cura/util/profile.py:364\r
+msgid "Size of the machine in mm"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:363\r
+msgid "Maximum depth (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:364\r
+msgid "Maximum height (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:367\r
+msgid ""\r
+"If you have an heated bed, this enabled heated bed settings (requires "\r
+"restart)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:368\r
+msgid "GCode Flavor"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:368\r
+msgid ""\r
+"Flavor of generated GCode.\n"\r
+"RepRap is normal 5D GCode which works on Marlin/Sprinter based firmwares.\n"\r
+"UltiGCode is a variation of the RepRap GCode which puts more settings in the "\r
+"machine instead of the slicer."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:369\r
+msgid "Extruder count"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:369\r
+msgid "Amount of extruders in your machine."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:370 Cura/util/profile.py:372 Cura/util/profile.py:374\r
+msgid "Offset X"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:370 Cura/util/profile.py:371\r
+msgid "The offset of your secondary extruder compared to the primary."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:371 Cura/util/profile.py:373 Cura/util/profile.py:375\r
+msgid "Offset Y"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:372 Cura/util/profile.py:373\r
+msgid "The offset of your tertiary extruder compared to the primary."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:374 Cura/util/profile.py:375\r
+msgid "The offset of your forth extruder compared to the primary."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:376\r
+msgid "E-Steps per 1mm filament"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:376\r
+msgid ""\r
+"Amount of steps per mm filament extrusion. If set to 0 then this value is "\r
+"ignored and the value in your firmware is used."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:377\r
+msgid "Serial port"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:377\r
+msgid "Serial port to use for communication with the printer"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:379\r
+msgid "Baudrate"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:379\r
+msgid ""\r
+"Speed of the serial port communication\n"\r
+"Needs to match your firmware settings\n"\r
+"Common values are 250000, 115200, 57600"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:382\r
+msgid "Head size towards X min (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:382\r
+msgid ""\r
+"The head size when printing multiple objects, measured from the tip of the "\r
+"nozzle towards the outer part of the head. 75mm for an Ultimaker if the fan "\r
+"is on the left side."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:383\r
+msgid "Head size towards Y min (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:383 Cura/util/profile.py:384\r
+msgid ""\r
+"The head size when printing multiple objects, measured from the tip of the "\r
+"nozzle towards the outer part of the head. 18mm for an Ultimaker if the fan "\r
+"is on the left side."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:384\r
+msgid "Head size towards X max (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:385\r
+msgid "Head size towards Y max (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:385\r
+msgid ""\r
+"The head size when printing multiple objects, measured from the tip of the "\r
+"nozzle towards the outer part of the head. 35mm for an Ultimaker if the fan "\r
+"is on the left side."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:386\r
+msgid "Printer gantry height (mm)"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:386\r
+msgid ""\r
+"The height of the gantry holding up the printer head. If an object is higher "\r
+"then this then you cannot print multiple objects one for one. 60mm for an "\r
+"Ultimaker."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:388\r
+#, python-format\r
+msgid "More flow then 150% is rare and usually not recommended."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:389\r
+#, python-format\r
+msgid "More flow then 50% is rare and usually not recommended."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:390\r
+#, python-format\r
+msgid ""\r
+"Thicker layers then %.2fmm (80%% nozzle size) usually give bad results and "\r
+"are not recommended."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:392\r
+msgid ""\r
+"It is highly unlikely that your machine can achieve a printing speed above "\r
+"150mm/s"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:394 Cura/util/profile.py:395 Cura/util/profile.py:396\r
+#: Cura/util/profile.py:397\r
+msgid "Temperatures above 260C could damage your machine, be careful!"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:398 Cura/util/profile.py:399 Cura/util/profile.py:400\r
+#: Cura/util/profile.py:401\r
+msgid ""\r
+"Are you sure your filament is that thick? Normal filament is around 3mm or "\r
+"1.75mm."\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:402\r
+msgid ""\r
+"It is highly unlikely that your machine can achieve a travel speed above "\r
+"300mm/s"\r
+msgstr ""\r
+\r
+#: Cura/util/profile.py:403\r
+#, python-format\r
+msgid ""\r
+"A bottom layer of more then %.2fmm (3/4 nozzle size) usually give bad "\r
+"results and is not recommended."\r
+msgstr ""\r
index af774f4e40405d77cd1528bf90b6ce7bb3c4c696..4dbe4c2aeee1d37910438dc3420ecfd6f6a9edf9 100644 (file)
@@ -156,15 +156,15 @@ setting('retraction_enable',       False, bool,  'basic',    _('Quality')).setLa
 setting('solid_layer_thickness',     0.6, float, 'basic',    _('Fill')).setRange(0).setLabel(_("Bottom/Top thickness (mm)"), _("This controls the thickness of the bottom and top layers, the amount of solid layers put down is calculated by the layer thickness and this value.\nHaving this value a multiple of the layer thickness makes sense. And keep it near your wall thickness to make an evenly strong part."))
 setting('fill_density',               20, float, 'basic',    _('Fill')).setRange(0, 100).setLabel(_("Fill Density (%)"), _("This controls how densely filled the insides of your print will be. For a solid part use 100%, for an empty part use 0%. A value around 20% is usually enough.\nThis won't effect the outside of the print and only adjusts how strong the part becomes."))
 setting('nozzle_size',               0.4, float, 'advanced', _('Machine')).setRange(0.1,10).setLabel(_("Nozzle size (mm)"), _("The nozzle size is very important, this is used to calculate the line width of the infill, and used to calculate the amount of outside wall lines and thickness for the wall thickness you entered in the print settings."))
-setting('print_speed',                50, float, 'basic',    _('Speed & Temperature')).setRange(1).setLabel(_("Print speed (mm/s)"), _("Speed at which printing happens. A well adjusted Ultimaker can reach 150mm/s, but for good quality prints you want to print slower. Printing speed depends on a lot of factors. So you will be experimenting with optimal settings for this."))
-setting('print_temperature',         220, int,   'basic',    _('Speed & Temperature')).setRange(0,340).setLabel(_("Printing temperature (C)"), _("Temperature used for printing. Set at 0 to pre-heat yourself.\nFor PLA a value of 210C is usually used.\nFor ABS a value of 230C or higher is required."))
-setting('print_temperature2',          0, int,   'basic',    _('Speed & Temperature')).setRange(0,340).setLabel(_("2nd nozzle temperature (C)"), _("Temperature used for printing. Set at 0 to pre-heat yourself.\nFor PLA a value of 210C is usually used.\nFor ABS a value of 230C or higher is required."))
-setting('print_temperature3',          0, int,   'basic',    _('Speed & Temperature')).setRange(0,340).setLabel(_("3th nozzle temperature (C)"), _("Temperature used for printing. Set at 0 to pre-heat yourself.\nFor PLA a value of 210C is usually used.\nFor ABS a value of 230C or higher is required."))
-setting('print_temperature4',          0, int,   'basic',    _('Speed & Temperature')).setRange(0,340).setLabel(_("4th nozzle temperature (C)"), _("Temperature used for printing. Set at 0 to pre-heat yourself.\nFor PLA a value of 210C is usually used.\nFor ABS a value of 230C or higher is required."))
-setting('print_bed_temperature',      70, int,   'basic',    _('Speed & Temperature')).setRange(0,340).setLabel(_("Bed temperature (C)"), _("Temperature used for the heated printer bed. Set at 0 to pre-heat yourself."))
-setting('support',                'None', ['None', 'Touching buildplate', 'Everywhere'], 'basic', _('Support')).setLabel(_("Support type"), _("Type of support structure build.\n\"Touching buildplate\" is the most commonly used support setting.\n\nNone does not do any support.\nTouching buildplate only creates support where the support structure will touch the build platform.\nEverywhere creates support even on top of parts of the model."))
-setting('platform_adhesion',      'None', ['None', 'Brim', 'Raft'], 'basic', _('Support')).setLabel(_("Platform adhesion type"), _("Different options that help in preventing corners from lifting due to warping.\nBrim adds a single layer thick flat area around your object which is easy to cut off afterwards, and the recommended option.\nRaft adds a thick raster at below the object and a thin interface between this and your object.\n(Note that enabling the brim or raft disables the skirt)"))
-setting('support_dual_extrusion',  'Both', ['Both', 'First extruder', 'Second extruder'], 'basic', _('Support')).setLabel(_("Support dual extrusion"), _("Which extruder to use for support material, for break-away support you can use both extruders.\nBut if one of the materials is more expensive then the other you could select an extruder to use for support material. This causes more extruder switches.\nYou can also use the 2nd extruder for soluble support materials."))
+setting('print_speed',                50, float, 'basic',    _('Speed and Temperature')).setRange(1).setLabel(_("Print speed (mm/s)"), _("Speed at which printing happens. A well adjusted Ultimaker can reach 150mm/s, but for good quality prints you want to print slower. Printing speed depends on a lot of factors. So you will be experimenting with optimal settings for this."))
+setting('print_temperature',         220, int,   'basic',    _('Speed and Temperature')).setRange(0,340).setLabel(_("Printing temperature (C)"), _("Temperature used for printing. Set at 0 to pre-heat yourself.\nFor PLA a value of 210C is usually used.\nFor ABS a value of 230C or higher is required."))
+setting('print_temperature2',          0, int,   'basic',    _('Speed and Temperature')).setRange(0,340).setLabel(_("2nd nozzle temperature (C)"), _("Temperature used for printing. Set at 0 to pre-heat yourself.\nFor PLA a value of 210C is usually used.\nFor ABS a value of 230C or higher is required."))
+setting('print_temperature3',          0, int,   'basic',    _('Speed and Temperature')).setRange(0,340).setLabel(_("3th nozzle temperature (C)"), _("Temperature used for printing. Set at 0 to pre-heat yourself.\nFor PLA a value of 210C is usually used.\nFor ABS a value of 230C or higher is required."))
+setting('print_temperature4',          0, int,   'basic',    _('Speed and Temperature')).setRange(0,340).setLabel(_("4th nozzle temperature (C)"), _("Temperature used for printing. Set at 0 to pre-heat yourself.\nFor PLA a value of 210C is usually used.\nFor ABS a value of 230C or higher is required."))
+setting('print_bed_temperature',      70, int,   'basic',    _('Speed and Temperature')).setRange(0,340).setLabel(_("Bed temperature (C)"), _("Temperature used for the heated printer bed. Set at 0 to pre-heat yourself."))
+setting('support',                'None', [_('None'), _('Touching buildplate'), _('Everywhere')], 'basic', _('Support')).setLabel(_("Support type"), _("Type of support structure build.\n\"Touching buildplate\" is the most commonly used support setting.\n\nNone does not do any support.\nTouching buildplate only creates support where the support structure will touch the build platform.\nEverywhere creates support even on top of parts of the model."))
+setting('platform_adhesion',      'None', [_('None'), _('Brim'), _('Raft')], 'basic', _('Support')).setLabel(_("Platform adhesion type"), _("Different options that help in preventing corners from lifting due to warping.\nBrim adds a single layer thick flat area around your object which is easy to cut off afterwards, and the recommended option.\nRaft adds a thick raster at below the object and a thin interface between this and your object.\n(Note that enabling the brim or raft disables the skirt)"))
+setting('support_dual_extrusion',  'Both', [_('Both'), _('First extruder'), _('Second extruder')], 'basic', _('Support')).setLabel(_("Support dual extrusion"), _("Which extruder to use for support material, for break-away support you can use both extruders.\nBut if one of the materials is more expensive then the other you could select an extruder to use for support material. This causes more extruder switches.\nYou can also use the 2nd extruder for soluble support materials."))
 setting('filament_diameter',        2.85, float, 'basic',    _('Filament')).setRange(1).setLabel(_("Diameter (mm)"), _("Diameter of your filament, as accurately as possible.\nIf you cannot measure this value you will have to calibrate it, a higher number means less extrusion, a smaller number generates more extrusion."))
 setting('filament_diameter2',          0, float, 'basic',    _('Filament')).setRange(0).setLabel(_("Diameter2 (mm)"), _("Diameter of your filament for the 2nd nozzle. Use 0 to use the same diameter as for nozzle 1."))
 setting('filament_diameter3',          0, float, 'basic',    _('Filament')).setRange(0).setLabel(_("Diameter3 (mm)"), _("Diameter of your filament for the 3th nozzle. Use 0 to use the same diameter as for nozzle 1."))
@@ -385,22 +385,22 @@ setting('extruder_head_size_max_x', '0.0', float, 'machine', 'hidden').setLabel(
 setting('extruder_head_size_max_y', '0.0', float, 'machine', 'hidden').setLabel(_("Head size towards Y max (mm)"), _("The head size when printing multiple objects, measured from the tip of the nozzle towards the outer part of the head. 35mm for an Ultimaker if the fan is on the left side."))
 setting('extruder_head_size_height', '0.0', float, 'machine', 'hidden').setLabel(_("Printer gantry height (mm)"), _("The height of the gantry holding up the printer head. If an object is higher then this then you cannot print multiple objects one for one. 60mm for an Ultimaker."))
 
-validators.warningAbove(settingsDictionary['filament_flow'], 150, "More flow then 150% is rare and usually not recommended.")
-validators.warningBelow(settingsDictionary['filament_flow'], 50, "More flow then 50% is rare and usually not recommended.")
-validators.warningAbove(settingsDictionary['layer_height'], lambda : (float(getProfileSetting('nozzle_size')) * 80.0 / 100.0), "Thicker layers then %.2fmm (80%% nozzle size) usually give bad results and are not recommended.")
+validators.warningAbove(settingsDictionary['filament_flow'], 150, _("More flow then 150% is rare and usually not recommended."))
+validators.warningBelow(settingsDictionary['filament_flow'], 50, _("More flow then 50% is rare and usually not recommended."))
+validators.warningAbove(settingsDictionary['layer_height'], lambda : (float(getProfileSetting('nozzle_size')) * 80.0 / 100.0), _("Thicker layers then %.2fmm (80%% nozzle size) usually give bad results and are not recommended."))
 validators.wallThicknessValidator(settingsDictionary['wall_thickness'])
-validators.warningAbove(settingsDictionary['print_speed'], 150.0, "It is highly unlikely that your machine can achieve a printing speed above 150mm/s")
+validators.warningAbove(settingsDictionary['print_speed'], 150.0, _("It is highly unlikely that your machine can achieve a printing speed above 150mm/s"))
 validators.printSpeedValidator(settingsDictionary['print_speed'])
-validators.warningAbove(settingsDictionary['print_temperature'], 260.0, "Temperatures above 260C could damage your machine, be careful!")
-validators.warningAbove(settingsDictionary['print_temperature2'], 260.0, "Temperatures above 260C could damage your machine, be careful!")
-validators.warningAbove(settingsDictionary['print_temperature3'], 260.0, "Temperatures above 260C could damage your machine, be careful!")
-validators.warningAbove(settingsDictionary['print_temperature4'], 260.0, "Temperatures above 260C could damage your machine, be careful!")
-validators.warningAbove(settingsDictionary['filament_diameter'], 3.5, "Are you sure your filament is that thick? Normal filament is around 3mm or 1.75mm.")
-validators.warningAbove(settingsDictionary['filament_diameter2'], 3.5, "Are you sure your filament is that thick? Normal filament is around 3mm or 1.75mm.")
-validators.warningAbove(settingsDictionary['filament_diameter3'], 3.5, "Are you sure your filament is that thick? Normal filament is around 3mm or 1.75mm.")
-validators.warningAbove(settingsDictionary['filament_diameter4'], 3.5, "Are you sure your filament is that thick? Normal filament is around 3mm or 1.75mm.")
-validators.warningAbove(settingsDictionary['travel_speed'], 300.0, "It is highly unlikely that your machine can achieve a travel speed above 300mm/s")
-validators.warningAbove(settingsDictionary['bottom_thickness'], lambda : (float(getProfileSetting('nozzle_size')) * 3.0 / 4.0), "A bottom layer of more then %.2fmm (3/4 nozzle size) usually give bad results and is not recommended.")
+validators.warningAbove(settingsDictionary['print_temperature'], 260.0, _("Temperatures above 260C could damage your machine, be careful!"))
+validators.warningAbove(settingsDictionary['print_temperature2'], 260.0, _("Temperatures above 260C could damage your machine, be careful!"))
+validators.warningAbove(settingsDictionary['print_temperature3'], 260.0, _("Temperatures above 260C could damage your machine, be careful!"))
+validators.warningAbove(settingsDictionary['print_temperature4'], 260.0, _("Temperatures above 260C could damage your machine, be careful!"))
+validators.warningAbove(settingsDictionary['filament_diameter'], 3.5, _("Are you sure your filament is that thick? Normal filament is around 3mm or 1.75mm."))
+validators.warningAbove(settingsDictionary['filament_diameter2'], 3.5, _("Are you sure your filament is that thick? Normal filament is around 3mm or 1.75mm."))
+validators.warningAbove(settingsDictionary['filament_diameter3'], 3.5, _("Are you sure your filament is that thick? Normal filament is around 3mm or 1.75mm."))
+validators.warningAbove(settingsDictionary['filament_diameter4'], 3.5, _("Are you sure your filament is that thick? Normal filament is around 3mm or 1.75mm."))
+validators.warningAbove(settingsDictionary['travel_speed'], 300.0, _("It is highly unlikely that your machine can achieve a travel speed above 300mm/s"))
+validators.warningAbove(settingsDictionary['bottom_thickness'], lambda : (float(getProfileSetting('nozzle_size')) * 3.0 / 4.0), _("A bottom layer of more then %.2fmm (3/4 nozzle size) usually give bad results and is not recommended."))
 
 #Conditions for multiple extruders
 settingsDictionary['print_temperature2'].addCondition(lambda : int(getMachineSetting('extruder_amount')) > 1)
index bd242a933ea0ae30a035d640b27e84534bff9f83..e071e419ff9b2391e0101407697f50c54b576891 100644 (file)
@@ -54,6 +54,7 @@ def setupLocalization():
        except Exception as e:
                languages = ['en']
 
+       languages = ['nl']
        locale_path = os.path.normpath(os.path.join(resourceBasePath, 'locale'))
        translation = gettext.translation('Cura', locale_path, languages, fallback=True)
        translation.install(unicode=True)
index d784b6f48fba2d4c9dbfbf240ccbb8844651daeb..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
--- a/changelog
+++ b/changelog
@@ -1,47 +0,0 @@
-== Cura 12.11 ==
-* Bugfix: Critical, printing window does not open without a webcam attached under windows.
-
-== Cura 12.10 ==
-* Update: Vastly updated serial port and baudrate auto-detection. No longer tries to reset the machine multiple times which improves detection success to 100%. And tries last succesful settings first.
-* Added: Loading splashscreen
-* Added: Support printed with dual extruder
-* Removed: Dwindle, did remove some stringing, but caused holes in the models.
-* Added: Retraction on/off checkbox on first tab of normal mode. So you no longer need to mess with the retraction length. A default retraction length of 4.5mm has been added.
-* Fixed: Unicode support in filenames
-* Added: Split up long moves into moves of 3mm, this to improve reaction speed of speed changes, and give better time left estimates during printing.
-* Removed: Odd calculation which caused retraction on every Z move
-* Fixed: SF bug with fillet plugin (but fillet not accessable from Cura)
-* Added: Two example models, the Ultimaker robot, and the Ultimaker handle. Ultimaker robot is loaded on first start
-* Added: Support for *.obj files
-* Fixed: Batch runner tool shows slightly better how far it is done, and no longer starts more threads then objects you try to slice.
-* Removed: Black console window for windows
-* Updated: "First run wizard" huge update on the machine check, which is now stable and easier to follow.
-* Update: Created a tool menu, which contains the batch run tool, the project planner, and the switch to quickprint. So this is no longer hidden in the file menu.
-* Added: Heated bed temperature option support. If you have a heated bed, enable the heated bed setting in the preferences.
-* Update: 3D view is now Ultimaker blue instead of black&white
-* Added: Support for timelaps webcam capture during USB printing (Windows only)
-* Added: Extrusion/retraction buttons to USB printer interface
-* Added: Error log in case something goes wrong during USB printing. For easier diagnostics what is going wrong.
-* Update: Temperature graph now shows a grid to indicate the scale
-* Fixed: Project planner bug when slicing all at once, the bug caused the printer head to move into the print.
-* Added: Default temperatures for printing in quickprint mode
-* Update: Quickprint vase mode only had 2 bottom solid layers, updated to 3 to give a much bigger chance of being watertight
-* Update: Improved loading speed for complex models
-* Fixed: Loading of ascii-stl files with Mac lineends
-* Update: Adjusted the quickprint low quality profile a bit, so it produces stronger parts
-* Added: Ultimaker 3D platform for scale reference
-* Added: COLLADA .dae support, for better compatibility with SketchUp
-* Improved: MacOS .app build for easier install and start
-* Added: Postprocessing plugins
-
-== Cura 12.08 ==
-* Added: Loading STL files from the commandline
-* Added: Open STL files on doubleclick for Windows
-* Update: Numpy for math heavy 3D calculations, speeds up model loading, rotation and size calculations
-* Added: Setting to configure the 3D model colour
-* Update: Default print temperture of 230C
-* Update: Start/End code for cleaner prints
-* Update: Slightly improved serial auto-detection code
-* Added: Temperature graph in printing interface
-* Added: Forced sending line on comm timeout, so printing always continues.
-* Added: Draw model borders feature