mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 23:46:22 -06:00
Merge branch '2.1'
Conflicts: resources/machines/fdmprinter.json resources/machines/innovo-inventor.json resources/profiles/general/High+Quality.cfg resources/profiles/general/Low+Quality.cfg resources/profiles/general/Normal+Quality.cfg resources/profiles/general/Ulti+Quality.cfg resources/profiles/ultimaker2+/pla_0.4_high.curaprofile
This commit is contained in:
commit
0684cee681
86 changed files with 2336 additions and 3490 deletions
|
@ -163,6 +163,9 @@ class BuildVolume(SceneNode):
|
|||
|
||||
if self._active_instance:
|
||||
self._width = self._active_instance.getMachineSettingValue("machine_width")
|
||||
if Application.getInstance().getMachineManager().getWorkingProfile().getSettingValue("print_sequence") == "one_at_a_time":
|
||||
self._height = Application.getInstance().getMachineManager().getWorkingProfile().getSettingValue("gantry_height")
|
||||
else:
|
||||
self._height = self._active_instance.getMachineSettingValue("machine_height")
|
||||
self._depth = self._active_instance.getMachineSettingValue("machine_depth")
|
||||
|
||||
|
@ -180,11 +183,19 @@ class BuildVolume(SceneNode):
|
|||
self._updateDisallowedAreas()
|
||||
self.rebuild()
|
||||
|
||||
def _onSettingValueChanged(self, setting):
|
||||
if setting in self._skirt_settings:
|
||||
def _onSettingValueChanged(self, setting_key):
|
||||
if setting_key == "print_sequence":
|
||||
if Application.getInstance().getMachineManager().getWorkingProfile().getSettingValue("print_sequence") == "one_at_a_time":
|
||||
self._height = Application.getInstance().getMachineManager().getWorkingProfile().getSettingValue("gantry_height")
|
||||
else:
|
||||
self._height = self._active_instance.getMachineSettingValue("machine_depth")
|
||||
self.rebuild()
|
||||
if setting_key in self._skirt_settings:
|
||||
self._updateDisallowedAreas()
|
||||
self.rebuild()
|
||||
|
||||
|
||||
|
||||
def _updateDisallowedAreas(self):
|
||||
if not self._active_instance or not self._active_profile:
|
||||
return
|
||||
|
@ -257,7 +268,7 @@ class BuildVolume(SceneNode):
|
|||
skirt_line_count = profile.getSettingValue("skirt_line_count")
|
||||
skirt_size = skirt_distance + (skirt_line_count * profile.getSettingValue("skirt_line_width"))
|
||||
elif adhesion_type == "brim":
|
||||
skirt_size = profile.getSettingValue("brim_width")
|
||||
skirt_size = profile.getSettingValue("brim_line_count") * profile.getSettingValue("skirt_line_width")
|
||||
elif adhesion_type == "raft":
|
||||
skirt_size = profile.getSettingValue("raft_margin")
|
||||
|
||||
|
|
|
@ -88,9 +88,3 @@ class ConvexHullNode(SceneNode):
|
|||
|
||||
if not node:
|
||||
return
|
||||
|
||||
if node.hasDecoration("getProfile"):
|
||||
self._color.setR(0.75)
|
||||
|
||||
if node.hasDecoration("getSetting"):
|
||||
self._color.setG(0.75)
|
||||
|
|
|
@ -21,8 +21,6 @@ class OneAtATimeIterator(Iterator.Iterator):
|
|||
if not type(node) is SceneNode:
|
||||
continue
|
||||
|
||||
if node.getBoundingBox().height > Application.getInstance().getMachineManager().getWorkingProfile().getSettingValue("gantry_height"):
|
||||
return
|
||||
if node.callDecoration("getConvexHull"):
|
||||
node_list.append(node)
|
||||
|
||||
|
|
|
@ -61,11 +61,6 @@ class PlatformPhysics:
|
|||
# Mark the node as outside the build volume if the bounding box test fails.
|
||||
if build_volume_bounding_box.intersectsBox(bbox) != AxisAlignedBox.IntersectionResult.FullIntersection:
|
||||
node._outside_buildarea = True
|
||||
else:
|
||||
# When printing one at a time too high objects are not printable.
|
||||
if Application.getInstance().getMachineManager().getWorkingProfile().getSettingValue("print_sequence") == "one_at_a_time":
|
||||
if node.getBoundingBox().height > Application.getInstance().getMachineManager().getWorkingProfile().getSettingValue("gantry_height"):
|
||||
node._outside_buildarea = True
|
||||
|
||||
# Move it downwards if bottom is above platform
|
||||
move_vector = Vector()
|
||||
|
|
|
@ -62,6 +62,11 @@ class ThreeMFReader(MeshReader):
|
|||
mesh.addFace(vertex_list[v1][0],vertex_list[v1][1],vertex_list[v1][2],vertex_list[v2][0],vertex_list[v2][1],vertex_list[v2][2],vertex_list[v3][0],vertex_list[v3][1],vertex_list[v3][2])
|
||||
Job.yieldThread()
|
||||
|
||||
# Rotate the model; We use a different coordinate frame.
|
||||
rotation = Matrix()
|
||||
rotation.setByRotationAxis(-0.5 * math.pi, Vector(1,0,0))
|
||||
mesh = mesh.getTransformed(rotation)
|
||||
|
||||
#TODO: We currently do not check for normals and simply recalculate them.
|
||||
mesh.calculateNormals()
|
||||
node.setMeshData(mesh)
|
||||
|
@ -70,7 +75,7 @@ class ThreeMFReader(MeshReader):
|
|||
transformation = root.findall("./3mf:build/3mf:item[@objectid='{0}']".format(entry.get("id")), self._namespaces)
|
||||
if transformation:
|
||||
transformation = transformation[0]
|
||||
|
||||
try:
|
||||
if transformation.get("transform"):
|
||||
splitted_transformation = transformation.get("transform").split()
|
||||
## Transformation is saved as:
|
||||
|
@ -96,22 +101,10 @@ class ThreeMFReader(MeshReader):
|
|||
temp_mat._data[1,3] = splitted_transformation[10]
|
||||
temp_mat._data[2,3] = splitted_transformation[11]
|
||||
|
||||
node.setPosition(Vector(temp_mat.at(0,3), temp_mat.at(1,3), temp_mat.at(2,3)))
|
||||
node.setTransformation(temp_mat)
|
||||
except AttributeError:
|
||||
pass # Empty list was found. Getting transformation is not possible
|
||||
|
||||
temp_quaternion = Quaternion()
|
||||
temp_quaternion.setByMatrix(temp_mat)
|
||||
node.setOrientation(temp_quaternion)
|
||||
|
||||
# Magical scale extraction
|
||||
scale = temp_mat.getTransposed().multiply(temp_mat)
|
||||
scale_x = math.sqrt(scale.at(0,0))
|
||||
scale_y = math.sqrt(scale.at(1,1))
|
||||
scale_z = math.sqrt(scale.at(2,2))
|
||||
node.setScale(Vector(scale_x,scale_y,scale_z))
|
||||
|
||||
# We use a different coordinate frame, so rotate.
|
||||
#rotation = Quaternion.fromAngleAxis(-0.5 * math.pi, Vector(1,0,0))
|
||||
#node.rotate(rotation)
|
||||
result.addChild(node)
|
||||
|
||||
Job.yieldThread()
|
||||
|
|
|
@ -12,8 +12,8 @@ UM.Dialog
|
|||
{
|
||||
id: base
|
||||
minimumWidth: 400
|
||||
minimumHeight: 300;
|
||||
title: "Changelog"
|
||||
minimumHeight: 300
|
||||
title: catalog.i18nc("@label", "Changelog")
|
||||
|
||||
ScrollView
|
||||
{
|
||||
|
@ -28,8 +28,13 @@ UM.Dialog
|
|||
}
|
||||
Button
|
||||
{
|
||||
UM.I18nCatalog
|
||||
{
|
||||
id: catalog
|
||||
name: "cura"
|
||||
}
|
||||
anchors.bottom:parent.bottom
|
||||
text: "close"
|
||||
text: catalog.i18nc("@action:button", "Close")
|
||||
onClicked: base.hide()
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@ def getMetaData():
|
|||
"name": catalog.i18nc("@label", "Changelog"),
|
||||
"author": "Ultimaker",
|
||||
"version": "1.0",
|
||||
"description": catalog.i18nc("@info:whatsthis", "Shows changes since latest checked version"),
|
||||
"description": catalog.i18nc("@info:whatsthis", "Shows changes since latest checked version."),
|
||||
"api": 2
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,7 +47,9 @@ class CuraEngineBackend(Backend):
|
|||
self._onActiveViewChanged()
|
||||
self._stored_layer_data = None
|
||||
|
||||
Application.getInstance().getMachineManager().activeMachineInstanceChanged.connect(self._onChanged)
|
||||
# When there are current settings and machine instance is changed, there is no profile changed event. We should
|
||||
# pretend there is though.
|
||||
Application.getInstance().getMachineManager().activeMachineInstanceChanged.connect(self._onActiveProfileChanged)
|
||||
|
||||
self._profile = None
|
||||
Application.getInstance().getMachineManager().activeProfileChanged.connect(self._onActiveProfileChanged)
|
||||
|
@ -104,6 +106,7 @@ class CuraEngineBackend(Backend):
|
|||
|
||||
## Perform a slice of the scene.
|
||||
def slice(self):
|
||||
|
||||
if not self._enabled:
|
||||
return
|
||||
|
||||
|
@ -114,7 +117,6 @@ class CuraEngineBackend(Backend):
|
|||
self._message.hide()
|
||||
self._message = None
|
||||
|
||||
self.slicingCancelled.emit()
|
||||
return
|
||||
|
||||
if self._process_layers_job:
|
||||
|
@ -150,14 +152,18 @@ class CuraEngineBackend(Backend):
|
|||
self._slicing = False
|
||||
self._restart = True
|
||||
self.slicingCancelled.emit()
|
||||
self.processingProgress.emit(0)
|
||||
Logger.log("d", "Attempting to kill the engine process")
|
||||
if self._process is not None:
|
||||
Logger.log("d", "Killing engine process")
|
||||
try:
|
||||
self._process.terminate()
|
||||
Logger.log("d", "Engine process is killed. Recieved return code %s", self._process.wait())
|
||||
self._process = None
|
||||
except: # terminating a process that is already terminating causes an exception, silently ignore this.
|
||||
pass
|
||||
Logger.log("d", "Engine process is killed")
|
||||
#self._createSocket() # Re create the socket
|
||||
except Exception as e: # terminating a process that is already terminating causes an exception, silently ignore this.
|
||||
Logger.log("d", "Exception occured while trying to kill the engine %s", str(e))
|
||||
|
||||
|
||||
def _onStartSliceCompleted(self, job):
|
||||
if job.getError() or job.getResult() != True:
|
||||
|
@ -184,8 +190,7 @@ class CuraEngineBackend(Backend):
|
|||
def _onSocketError(self, error):
|
||||
super()._onSocketError(error)
|
||||
|
||||
self._slicing = False
|
||||
self.processingProgress.emit(0)
|
||||
self._terminate()
|
||||
|
||||
if error.getErrorCode() not in [Arcus.ErrorCode.BindFailedError, Arcus.ErrorCode.ConnectionResetError, Arcus.ErrorCode.Debug]:
|
||||
Logger.log("e", "A socket error caused the connection to be reset")
|
||||
|
@ -277,9 +282,9 @@ class CuraEngineBackend(Backend):
|
|||
|
||||
def _onInstanceChanged(self):
|
||||
self._terminate()
|
||||
self.slicingCancelled.emit()
|
||||
|
||||
def _onBackendQuit(self):
|
||||
if not self._restart and self._process:
|
||||
Logger.log("d", "Backend quit with return code %s. Resetting process and socket.", self._process.wait())
|
||||
self._process = None
|
||||
self._createSocket()
|
||||
|
|
|
@ -12,7 +12,7 @@ def getMetaData():
|
|||
"plugin": {
|
||||
"name": catalog.i18nc("@label", "CuraEngine Backend"),
|
||||
"author": "Ultimaker",
|
||||
"description": catalog.i18nc("@info:whatsthis", "Provides the link to the CuraEngine slicing backend"),
|
||||
"description": catalog.i18nc("@info:whatsthis", "Provides the link to the CuraEngine slicing backend."),
|
||||
"api": 2
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@ def getMetaData():
|
|||
"name": catalog.i18nc("@label", "GCode Writer"),
|
||||
"author": "Ultimaker",
|
||||
"version": "1.0",
|
||||
"description": catalog.i18nc("@info:whatsthis", "Writes GCode to a file"),
|
||||
"description": catalog.i18nc("@info:whatsthis", "Writes GCode to a file."),
|
||||
"api": 2
|
||||
},
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ def getMetaData():
|
|||
"plugin": {
|
||||
"name": catalog.i18nc("@label", "Removable Drive Output Device Plugin"),
|
||||
"author": "Ultimaker B.V.",
|
||||
"description": catalog.i18nc("@info:whatsthis", "Provides removable drive hotplugging and writing support"),
|
||||
"description": catalog.i18nc("@info:whatsthis", "Provides removable drive hotplugging and writing support."),
|
||||
"version": "1.0",
|
||||
"api": 2
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@ def getMetaData():
|
|||
"name": i18n_catalog.i18nc("@label", "Solid View"),
|
||||
"author": "Ultimaker",
|
||||
"version": "1.0",
|
||||
"decription": i18n_catalog.i18nc("@info:whatsthis", "Provides a normal solid mesh view."),
|
||||
"description": i18n_catalog.i18nc("@info:whatsthis", "Provides a normal solid mesh view."),
|
||||
"api": 2
|
||||
},
|
||||
"view": {
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -33,7 +33,6 @@ msgid "Open Web Page"
|
|||
msgstr "Webseite öffnen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/cura/CuraApplication.py:158
|
||||
#, fuzzy
|
||||
msgctxt "@info:progress"
|
||||
msgid "Setting up scene..."
|
||||
msgstr "Die Szene wird eingerichtet..."
|
||||
|
@ -55,14 +54,12 @@ msgid "Cura Profile Reader"
|
|||
msgstr "Cura-Profil-Reader"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides support for importing Cura profiles."
|
||||
msgstr "Ermöglicht das Importieren von Cura-Profilen."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:21
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:21
|
||||
#, fuzzy
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Cura Profile"
|
||||
msgstr "Cura-Profil"
|
||||
|
@ -196,37 +193,31 @@ msgid "CuraEngine Backend"
|
|||
msgstr "CuraEngine Backend"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the link to the CuraEngine slicing backend"
|
||||
msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "GCode Writer"
|
||||
msgstr "G-Code-Writer"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Writes GCode to a file"
|
||||
msgstr "Schreibt G-Code in eine Datei"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||
#, fuzzy
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "GCode File"
|
||||
msgstr "G-Code-Datei"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:49
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu"
|
||||
msgid "Firmware"
|
||||
msgstr "Firmware"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:50
|
||||
#, fuzzy
|
||||
msgctxt "@item:inmenu"
|
||||
msgid "Update Firmware"
|
||||
msgstr "Firmware aktualisieren"
|
||||
|
@ -257,7 +248,6 @@ msgid "USB printing"
|
|||
msgstr "USB-Drucken"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/__init__.py:17
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
|
||||
msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren."
|
||||
|
@ -283,19 +273,16 @@ msgid "Submits anonymous slice info. Can be disabled through preferences."
|
|||
msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Cura Profile Writer"
|
||||
msgstr "Cura-Profil-Writer"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides support for exporting Cura profiles."
|
||||
msgstr "Ermöglicht das Exportieren von Cura-Profilen."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ImageReader/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Image Reader"
|
||||
msgstr "Bild-Reader"
|
||||
|
@ -331,13 +318,11 @@ msgid "GIF Image"
|
|||
msgstr "GIF-Bilddatei"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "GCode Profile Reader"
|
||||
msgstr "G-Code-Writer"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides support for importing profiles from g-code files."
|
||||
msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien."
|
||||
|
@ -368,13 +353,11 @@ msgid "Layer View"
|
|||
msgstr "Schichtenansicht"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:16
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the Layer view."
|
||||
msgstr "Bietet eine Schichtenansicht."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:20
|
||||
#, fuzzy
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Layers"
|
||||
msgstr "Schichten"
|
||||
|
@ -395,13 +378,11 @@ msgid "Per Object Settings Tool"
|
|||
msgstr "Einstellungstool pro Objekt"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the Per Object Settings."
|
||||
msgstr "Bietet die Einstellungen pro Objekt"
|
||||
msgstr "Bietet die Einstellungen pro Objekt."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:19
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Per Object Settings"
|
||||
msgstr "Einstellungen pro Objekt"
|
||||
|
@ -417,7 +398,6 @@ msgid "Legacy Cura Profile Reader"
|
|||
msgstr "Cura-Vorgängerprofil-Reader"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/LegacyProfileReader/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides support for importing profiles from legacy Cura versions."
|
||||
msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura."
|
||||
|
@ -679,139 +659,116 @@ msgid "Toggle Fu&ll Screen"
|
|||
msgstr "Umschalten auf Vo&llbild-Modus"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:57
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Undo"
|
||||
msgstr "&Rückgängig machen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:65
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Redo"
|
||||
msgstr "&Wiederholen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:73
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:file"
|
||||
msgid "&Quit"
|
||||
msgstr "&Beenden"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:81
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:settings"
|
||||
msgid "&Preferences..."
|
||||
msgstr "&Einstellungen..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:88
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:printer"
|
||||
msgid "&Add Printer..."
|
||||
msgstr "&Drucker hinzufügen..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:94
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:printer"
|
||||
msgid "Manage Pr&inters..."
|
||||
msgstr "Dr&ucker verwalten..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:101
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:profile"
|
||||
msgid "Manage Profiles..."
|
||||
msgstr "Profile verwalten..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:108
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:help"
|
||||
msgid "Show Online &Documentation"
|
||||
msgstr "Online-&Dokumentation anzeigen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:115
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:help"
|
||||
msgid "Report a &Bug"
|
||||
msgstr "&Fehler melden"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:122
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:help"
|
||||
msgid "&About..."
|
||||
msgstr "&Über..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:129
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "Delete &Selection"
|
||||
msgstr "&Auswahl löschen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:137
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu"
|
||||
msgid "Delete Object"
|
||||
msgstr "Objekt löschen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:144
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu"
|
||||
msgid "Ce&nter Object on Platform"
|
||||
msgstr "Objekt auf Druckplatte ze&ntrieren"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:150
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Group Objects"
|
||||
msgstr "Objekte &gruppieren"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:158
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "Ungroup Objects"
|
||||
msgstr "Gruppierung für Objekte aufheben"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:166
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Merge Objects"
|
||||
msgstr "Objekt &zusammenführen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:174
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu"
|
||||
msgid "&Duplicate Object"
|
||||
msgstr "Objekt &duplizieren"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:181
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Clear Build Platform"
|
||||
msgstr "Druckplatte &reinigen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:189
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:file"
|
||||
msgid "Re&load All Objects"
|
||||
msgstr "Alle Objekte neu &laden"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:196
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "Reset All Object Positions"
|
||||
msgstr "Alle Objektpositionen zurücksetzen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:202
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "Reset All Object &Transformations"
|
||||
msgstr "Alle Objekt&transformationen zurücksetzen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:208
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:file"
|
||||
msgid "&Open File..."
|
||||
msgstr "&Datei öffnen..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:216
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:help"
|
||||
msgid "Show Engine &Log..."
|
||||
msgstr "Engine-&Protokoll anzeigen..."
|
||||
|
@ -827,7 +784,6 @@ msgid "Hollow"
|
|||
msgstr "Hohl"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:239
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "No (0%) infill will leave your model hollow at the cost of low strength"
|
||||
msgstr "Bei keiner (0 %) Füllung bleibt Ihr Modell hohl, was allerdings eine niedrige Festigkeit zur Folge hat"
|
||||
|
@ -838,7 +794,6 @@ msgid "Light"
|
|||
msgstr "Dünn"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:245
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Light (20%) infill will give your model an average strength"
|
||||
msgstr "Eine dünne (20 %) Füllung gibt Ihrem Modell eine durchschnittliche Festigkeit"
|
||||
|
@ -864,7 +819,6 @@ msgid "Solid (100%) infill will make your model completely solid"
|
|||
msgstr "Eine solide (100 %) Füllung macht Ihr Modell vollständig massiv"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:276
|
||||
#, fuzzy
|
||||
msgctxt "@label:listbox"
|
||||
msgid "Helpers:"
|
||||
msgstr "Helfer:"
|
||||
|
@ -941,7 +895,6 @@ msgid "Ensure objects are kept apart"
|
|||
msgstr "Stellen Sie sicher, dass die Objekte getrennt gehalten werden"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:131
|
||||
#, fuzzy
|
||||
msgctxt "@info:tooltip"
|
||||
msgid "Should opened files be scaled to the build volume if they are too large?"
|
||||
msgstr "Sollen offene Dateien an das Erstellungsvolumen angepasst werden, wenn Sie zu groß sind?"
|
||||
|
@ -972,7 +925,6 @@ msgid "Highlight unsupported areas of the model in red. Without support these ar
|
|||
msgstr "Nicht gestützte Bereiche des Modells in rot hervorheben. Ohne Stützstruktur werden diese Bereiche nicht korrekt gedruckt."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/ViewPage.qml:42
|
||||
#, fuzzy
|
||||
msgctxt "@option:check"
|
||||
msgid "Display overhang"
|
||||
msgstr "Überhang anzeigen"
|
||||
|
@ -1095,13 +1047,11 @@ msgid "To assist you in having better default settings for your Ultimaker. Cura
|
|||
msgstr "Um Ihnen dabei zu helfen, bessere Standardeinstellungen für Ihren Ultimaker festzulegen, würde Cura gerne erfahren, welche Upgrades auf Ihrem Gerät vorhanden sind:"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/SelectUpgradedParts.qml:57
|
||||
#, fuzzy
|
||||
msgctxt "@option:check"
|
||||
msgid "Extruder driver ugrades"
|
||||
msgstr "Upgrades für Extruder-Driver"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/SelectUpgradedParts.qml:63
|
||||
#, fuzzy
|
||||
msgctxt "@option:check"
|
||||
msgid "Heated printer bed"
|
||||
msgstr "Heizbares Druckbett"
|
||||
|
@ -1188,7 +1138,6 @@ msgid "Cura requires these new features and thus your firmware will most likely
|
|||
msgstr "Cura benötigt diese neuen Funktionen und daher ist es sehr wahrscheinlich, dass Ihre Firmware aktualisiert werden muss. Sie können dies jetzt erledigen."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/UpgradeFirmware.qml:64
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Upgrade to Marlin Firmware"
|
||||
msgstr "Auf Marlin-Firmware aktualisieren"
|
||||
|
@ -1224,183 +1173,164 @@ msgid "Select the active output device"
|
|||
msgstr "Wählen Sie das aktive Ausgabegerät"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:15
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "About Cura"
|
||||
msgstr "Über Cura"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:54
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "End-to-end solution for fused filament 3D printing."
|
||||
msgstr "Komplettlösung für den 3D-Druck mit geschmolzenem Filament."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:66
|
||||
#, fuzzy
|
||||
msgctxt "@info:credit"
|
||||
msgid "Cura has been developed by Ultimaker B.V. in cooperation with the community."
|
||||
msgstr "Cura wurde von Ultimaker B.V. in Zusammenarbeit mit der Community entwickelt."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:16
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "Cura"
|
||||
msgstr "Cura"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:53
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&File"
|
||||
msgstr "&Datei"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:62
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:file"
|
||||
msgid "Open &Recent"
|
||||
msgstr "&Zuletzt geöffnet"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:92
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:file"
|
||||
msgid "&Save Selection to File"
|
||||
msgstr "Auswahl als Datei &speichern"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:100
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:file"
|
||||
msgid "Save &All"
|
||||
msgstr "&Alles speichern"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:128
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&Edit"
|
||||
msgstr "&Bearbeiten"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:145
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&View"
|
||||
msgstr "&Ansicht"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:167
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&Printer"
|
||||
msgstr "Dr&ucker"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:213
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "P&rofile"
|
||||
msgstr "&Profil"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:240
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "E&xtensions"
|
||||
msgstr "Er&weiterungen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:273
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&Settings"
|
||||
msgstr "&Einstellungen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:281
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&Help"
|
||||
msgstr "&Hilfe"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:366
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Open File"
|
||||
msgstr "Datei öffnen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:410
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "View Mode"
|
||||
msgstr "Ansichtsmodus"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:495
|
||||
#, fuzzy
|
||||
msgctxt "@title:tab"
|
||||
msgid "View"
|
||||
msgstr "Ansicht"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:644
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "Open file"
|
||||
msgstr "Datei öffnen"
|
||||
|
||||
#~ msgctxt "@label"
|
||||
#~ msgid "Variant:"
|
||||
#~ msgstr "Variante:"
|
||||
msgctxt "@label"
|
||||
msgid "Variant:"
|
||||
msgstr "Variante:"
|
||||
|
||||
#~ msgctxt "@label"
|
||||
#~ msgid "Global Profile:"
|
||||
#~ msgstr "Globales Profil:"
|
||||
msgctxt "@label"
|
||||
msgid "Global Profile:"
|
||||
msgstr "Globales Profil:"
|
||||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Heated printer bed (standard kit)"
|
||||
#~ msgstr "Heizbares Druckbett (Standard-Kit)"
|
||||
msgctxt "@option:check"
|
||||
msgid "Heated printer bed (standard kit)"
|
||||
msgstr "Heizbares Druckbett (Standard-Kit)"
|
||||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Dual extrusion (experimental)"
|
||||
#~ msgstr "Dual-Extruder (experimental)"
|
||||
msgctxt "@option:check"
|
||||
msgid "Dual extrusion (experimental)"
|
||||
msgstr "Dual-Extruder (experimental)"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Bulgarian"
|
||||
#~ msgstr "Bulgarisch"
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Bulgarian"
|
||||
msgstr "Bulgarisch"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Czech"
|
||||
#~ msgstr "Tschechisch"
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Czech"
|
||||
msgstr "Tschechisch"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Italian"
|
||||
#~ msgstr "Italienisch"
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Italian"
|
||||
msgstr "Italienisch"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Russian"
|
||||
#~ msgstr "Russisch"
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Russian"
|
||||
msgstr "Russisch"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Spanish"
|
||||
#~ msgstr "Spanisch"
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Spanish"
|
||||
msgstr "Spanisch"
|
||||
|
||||
#~ msgctxt "@label:textbox"
|
||||
#~ msgid "Printjob Name"
|
||||
#~ msgstr "Name des Druckauftrags"
|
||||
msgctxt "@label:textbox"
|
||||
msgid "Printjob Name"
|
||||
msgstr "Name des Druckauftrags"
|
||||
|
||||
#~ msgctxt "@label"
|
||||
#~ msgid "Sparse"
|
||||
#~ msgstr "Dünn"
|
||||
msgctxt "@label"
|
||||
msgid "Sparse"
|
||||
msgstr "Dünn"
|
||||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Enable Skirt Adhesion"
|
||||
#~ msgstr "Adhäsion der Unterlage aktivieren"
|
||||
msgctxt "@option:check"
|
||||
msgid "Enable Skirt Adhesion"
|
||||
msgstr "Adhäsion der Unterlage aktivieren"
|
||||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Enable Support"
|
||||
#~ msgstr "Stützstruktur aktivieren"
|
||||
msgctxt "@option:check"
|
||||
msgid "Enable Support"
|
||||
msgstr "Stützstruktur aktivieren"
|
||||
|
||||
#~ msgctxt "@label:listbox"
|
||||
#~ msgid "Machine:"
|
||||
#~ msgstr "Gerät:"
|
||||
msgctxt "@label:listbox"
|
||||
msgid "Machine:"
|
||||
msgstr "Gerät:"
|
||||
|
||||
#~ msgctxt "@title:menu"
|
||||
#~ msgid "&Machine"
|
||||
#~ msgstr "&Gerät"
|
||||
msgctxt "@title:menu"
|
||||
msgid "&Machine"
|
||||
msgstr "&Gerät"
|
||||
|
||||
#~ msgctxt "Save button tooltip"
|
||||
#~ msgid "Save to Disk"
|
||||
#~ msgstr "Auf Datenträger speichern"
|
||||
msgctxt "Save button tooltip"
|
||||
msgid "Save to Disk"
|
||||
msgstr "Auf Datenträger speichern"
|
||||
|
||||
#~ msgctxt "Message action tooltip, {0} is sdcard"
|
||||
#~ msgid "Eject SD Card {0}"
|
||||
#~ msgstr "SD-Karte auswerfen {0}"
|
||||
msgctxt "Message action tooltip, {0} is sdcard"
|
||||
msgid "Eject SD Card {0}"
|
||||
msgstr "SD-Karte auswerfen {0}"
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,6 @@
|
|||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 2.1\n"
|
||||
|
@ -38,13 +37,11 @@ msgid "Open Web Page"
|
|||
msgstr "Avaa verkkosivu"
|
||||
|
||||
#: /home/tamara/2.1/Cura/cura/CuraApplication.py:158
|
||||
#, fuzzy
|
||||
msgctxt "@info:progress"
|
||||
msgid "Setting up scene..."
|
||||
msgstr "Asetetaan näkymää..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/cura/CuraApplication.py:192
|
||||
#, fuzzy
|
||||
msgctxt "@info:progress"
|
||||
msgid "Loading interface..."
|
||||
msgstr "Ladataan käyttöliittymää..."
|
||||
|
@ -61,26 +58,22 @@ msgid "Cura Profile Reader"
|
|||
msgstr "Cura-profiilin lukija"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides support for importing Cura profiles."
|
||||
msgstr "Tukee Cura-profiilien tuontia."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:21
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:21
|
||||
#, fuzzy
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Cura Profile"
|
||||
msgstr "Cura-profiili"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/XRayView/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "X-Ray View"
|
||||
msgstr "Kerrosnäkymä"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/XRayView/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the X-Ray view."
|
||||
msgstr "Näyttää kerrosnäkymän."
|
||||
|
@ -173,13 +166,11 @@ msgid "Provides removable drive hotplugging and writing support"
|
|||
msgstr "Tukee irrotettavan aseman kytkemistä lennossa ja sille kirjoittamista"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||
#, fuzzy
|
||||
msgctxt "@item:inmenu"
|
||||
msgid "Show Changelog"
|
||||
msgstr "Näytä muutosloki"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Changelog"
|
||||
msgstr "Muutosloki"
|
||||
|
@ -206,7 +197,6 @@ msgid "CuraEngine Backend"
|
|||
msgstr "CuraEngine-taustaosa"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the link to the CuraEngine slicing backend"
|
||||
msgstr "Linkki CuraEngine-viipalointiin taustalla"
|
||||
|
@ -222,7 +212,6 @@ msgid "Writes GCode to a file"
|
|||
msgstr "Kirjoittaa GCodea tiedostoon"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||
#, fuzzy
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "GCode File"
|
||||
msgstr "GCode-tiedosto"
|
||||
|
@ -233,7 +222,6 @@ msgid "Firmware"
|
|||
msgstr "Laiteohjelmisto"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:50
|
||||
#, fuzzy
|
||||
msgctxt "@item:inmenu"
|
||||
msgid "Update Firmware"
|
||||
msgstr "Päivitä laiteohjelmisto"
|
||||
|
@ -291,19 +279,16 @@ msgid "Submits anonymous slice info. Can be disabled through preferences."
|
|||
msgstr "Lähettää anonyymiä viipalointitietoa. Voidaan lisäasetuksista kytkeä pois käytöstä."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Cura Profile Writer"
|
||||
msgstr "Cura-profiilin kirjoitin"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides support for exporting Cura profiles."
|
||||
msgstr "Tukee Cura-profiilien vientiä."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ImageReader/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Image Reader"
|
||||
msgstr "Kuvanlukija"
|
||||
|
@ -339,37 +324,31 @@ msgid "GIF Image"
|
|||
msgstr "GIF-kuva"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "GCode Profile Reader"
|
||||
msgstr "GCode-profiilin lukija"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides support for importing profiles from g-code files."
|
||||
msgstr "Tukee profiilien tuontia GCode-tiedostoista."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:21
|
||||
#, fuzzy
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "G-code File"
|
||||
msgstr "GCode-tiedosto"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Solid View"
|
||||
msgstr "Kiinteä näkymä"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides a normal solid mesh view."
|
||||
msgstr "Näyttää normaalin kiinteän verkkonäkymän."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:19
|
||||
#, fuzzy
|
||||
msgctxt "@item:inmenu"
|
||||
msgid "Solid"
|
||||
msgstr "Kiinteä"
|
||||
|
@ -405,13 +384,11 @@ msgid "Per Object Settings Tool"
|
|||
msgstr "Kappalekohtaisten asetusten työkalu"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the Per Object Settings."
|
||||
msgstr "Näyttää kappalekohtaiset asetukset."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:19
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Per Object Settings"
|
||||
msgstr "Kappalekohtaiset asetukset"
|
||||
|
@ -427,7 +404,6 @@ msgid "Legacy Cura Profile Reader"
|
|||
msgstr "Aikaisempien Cura-profiilien lukija"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/LegacyProfileReader/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides support for importing profiles from legacy Cura versions."
|
||||
msgstr "Tukee profiilien tuontia aikaisemmista Cura-versioista."
|
||||
|
@ -443,19 +419,16 @@ msgid "Firmware Update"
|
|||
msgstr "Laiteohjelmiston päivitys"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:38
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Starting firmware update, this may take a while."
|
||||
msgstr "Käynnistetään laiteohjelmiston päivitystä, mikä voi kestää hetken."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:43
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Firmware update completed."
|
||||
msgstr "Laiteohjelmiston päivitys suoritettu."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:48
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Updating firmware."
|
||||
msgstr "Päivitetään laiteohjelmistoa."
|
||||
|
@ -463,7 +436,6 @@ msgstr "Päivitetään laiteohjelmistoa."
|
|||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:80
|
||||
#: /home/tamara/2.1/Cura/resources/qml/EngineLog.qml:38
|
||||
#: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:74
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Close"
|
||||
msgstr "Sulje"
|
||||
|
@ -474,19 +446,16 @@ msgid "Print with USB"
|
|||
msgstr "Tulostus USB:n kautta"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:28
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Extruder Temperature %1"
|
||||
msgstr "Suulakkeen lämpötila %1"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:33
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Bed Temperature %1"
|
||||
msgstr "Pöydän lämpötila %1"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:60
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Print"
|
||||
msgstr "Tulosta"
|
||||
|
@ -495,7 +464,6 @@ msgstr "Tulosta"
|
|||
#: /home/tamara/2.1/Cura/plugins/ImageReader/ConfigUI.qml:200
|
||||
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:303
|
||||
#: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:58
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel"
|
||||
msgstr "Peruuta"
|
||||
|
@ -592,7 +560,6 @@ msgid "Object profile"
|
|||
msgstr "Kappaleprofiili"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Add Setting"
|
||||
msgstr "Lisää asetus"
|
||||
|
@ -618,19 +585,16 @@ msgid "0.0 m"
|
|||
msgstr "0,0 m"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/JobSpecs.qml:218
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "%1 m"
|
||||
msgstr "%1 m"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SidebarHeader.qml:29
|
||||
#, fuzzy
|
||||
msgctxt "@label:listbox"
|
||||
msgid "Print Job"
|
||||
msgstr "Tulostustyö"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SidebarHeader.qml:50
|
||||
#, fuzzy
|
||||
msgctxt "@label:listbox"
|
||||
msgid "Printer:"
|
||||
msgstr "Tulostin:"
|
||||
|
@ -641,7 +605,6 @@ msgid "Nozzle:"
|
|||
msgstr "Suutin:"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Sidebar.qml:89
|
||||
#, fuzzy
|
||||
msgctxt "@label:listbox"
|
||||
msgid "Setup"
|
||||
msgstr "Asetukset"
|
||||
|
@ -657,20 +620,17 @@ msgid "Advanced"
|
|||
msgstr "Laajennettu"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/AddMachineWizard.qml:18
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "Add Printer"
|
||||
msgstr "Lisää tulostin"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/AddMachineWizard.qml:25
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:99
|
||||
#, fuzzy
|
||||
msgctxt "@title"
|
||||
msgid "Add Printer"
|
||||
msgstr "Lisää tulostin"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:15
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "Load profile"
|
||||
msgstr "Lataa profiili"
|
||||
|
@ -689,7 +649,6 @@ msgid "Show details."
|
|||
msgstr "Näytä tiedot."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:50
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Merge settings"
|
||||
msgstr "Yhdistä asetukset"
|
||||
|
@ -700,13 +659,11 @@ msgid "Reset profile"
|
|||
msgstr "Nollaa profiili"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/ProfileSetup.qml:28
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Profile:"
|
||||
msgstr "Profiili:"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/EngineLog.qml:15
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "Engine Log"
|
||||
msgstr "Moottorin loki"
|
||||
|
@ -717,67 +674,56 @@ msgid "Toggle Fu&ll Screen"
|
|||
msgstr "Vaihda &koko näyttöön"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:57
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Undo"
|
||||
msgstr "&Kumoa"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:65
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Redo"
|
||||
msgstr "Tee &uudelleen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:73
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:file"
|
||||
msgid "&Quit"
|
||||
msgstr "&Lopeta"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:81
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:settings"
|
||||
msgid "&Preferences..."
|
||||
msgstr "&Lisäasetukset..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:88
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:printer"
|
||||
msgid "&Add Printer..."
|
||||
msgstr "L&isää tulostin..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:94
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:printer"
|
||||
msgid "Manage Pr&inters..."
|
||||
msgstr "Tulostinten &hallinta..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:101
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:profile"
|
||||
msgid "Manage Profiles..."
|
||||
msgstr "Profiilien hallinta..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:108
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:help"
|
||||
msgid "Show Online &Documentation"
|
||||
msgstr "Näytä sähköinen &dokumentaatio"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:115
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:help"
|
||||
msgid "Report a &Bug"
|
||||
msgstr "Ilmoita &virheestä"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:122
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:help"
|
||||
msgid "&About..."
|
||||
msgstr "Ti&etoja..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:129
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "Delete &Selection"
|
||||
msgstr "&Poista valinta"
|
||||
|
@ -793,19 +739,16 @@ msgid "Ce&nter Object on Platform"
|
|||
msgstr "K&eskitä kappale alustalle"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:150
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Group Objects"
|
||||
msgstr "&Ryhmitä kappaleet"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:158
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "Ungroup Objects"
|
||||
msgstr "Pura kappaleiden ryhmitys"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:166
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Merge Objects"
|
||||
msgstr "&Yhdistä kappaleet"
|
||||
|
@ -816,37 +759,31 @@ msgid "&Duplicate Object"
|
|||
msgstr "&Monista kappale"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:181
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Clear Build Platform"
|
||||
msgstr "&Tyhjennä alusta"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:189
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:file"
|
||||
msgid "Re&load All Objects"
|
||||
msgstr "&Lataa kaikki kappaleet uudelleen"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:196
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "Reset All Object Positions"
|
||||
msgstr "Nollaa kaikkien kappaleiden sijainnit"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:202
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "Reset All Object &Transformations"
|
||||
msgstr "Nollaa kaikkien kappaleiden m&uunnokset"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:208
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:file"
|
||||
msgid "&Open File..."
|
||||
msgstr "&Avaa tiedosto..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:216
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:help"
|
||||
msgid "Show Engine &Log..."
|
||||
msgstr "Näytä moottorin l&oki"
|
||||
|
@ -862,7 +799,6 @@ msgid "Hollow"
|
|||
msgstr "Ontto"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:239
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "No (0%) infill will leave your model hollow at the cost of low strength"
|
||||
msgstr "Ei (0 %) täyttöä jättää mallin ontoksi ja lujuudeltaan alhaiseksi"
|
||||
|
@ -873,7 +809,6 @@ msgid "Light"
|
|||
msgstr "Harva"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:245
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Light (20%) infill will give your model an average strength"
|
||||
msgstr "Harva (20 %) täyttö antaa mallille keskimääräisen lujuuden"
|
||||
|
@ -934,7 +869,6 @@ msgid "General"
|
|||
msgstr "Yleiset"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:51
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Language:"
|
||||
msgstr "Kieli:"
|
||||
|
@ -982,14 +916,12 @@ msgid "Ensure objects are kept apart"
|
|||
msgstr "Pidä kappaleet erillään"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:131
|
||||
#, fuzzy
|
||||
msgctxt "@info:tooltip"
|
||||
msgid ""
|
||||
"Should opened files be scaled to the build volume if they are too large?"
|
||||
msgstr "Pitäisikö avoimia tiedostoja skaalata rakennustilavuuteen, jos ne ovat liian isoja?"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:136
|
||||
#, fuzzy
|
||||
msgctxt "@option:check"
|
||||
msgid "Scale large files"
|
||||
msgstr "Skaalaa isot tiedostot"
|
||||
|
@ -1003,13 +935,11 @@ msgid ""
|
|||
msgstr "Pitäisikö anonyymejä tietoja tulosteesta lähettää Ultimakerille? Huomaa, että malleja, IP-osoitteita tai muita henkilökohtaisia tietoja ei lähetetä eikä tallenneta."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:150
|
||||
#, fuzzy
|
||||
msgctxt "@option:check"
|
||||
msgid "Send (anonymous) print information"
|
||||
msgstr "Lähetä (anonyymit) tulostustiedot"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/ViewPage.qml:16
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "View"
|
||||
msgstr "Näytä"
|
||||
|
@ -1022,7 +952,6 @@ msgid ""
|
|||
msgstr "Korostaa mallin vailla tukea olevat alueet punaisella. Ilman tukea nämä alueet eivät tulostu kunnolla."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/ViewPage.qml:42
|
||||
#, fuzzy
|
||||
msgctxt "@option:check"
|
||||
msgid "Display overhang"
|
||||
msgstr "Näytä uloke"
|
||||
|
@ -1156,7 +1085,6 @@ msgid "Extruder driver ugrades"
|
|||
msgstr "Suulakekäytön päivitykset"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/SelectUpgradedParts.qml:63
|
||||
#, fuzzy
|
||||
msgctxt "@option:check"
|
||||
msgid "Heated printer bed"
|
||||
msgstr "Lämmitetty tulostinpöytä"
|
||||
|
@ -1176,7 +1104,6 @@ msgid ""
|
|||
msgstr "Jos olet hankkinut Ultimakerin lokakuun 2012 jälkeen, sinulla on suulakekäytön päivityspaketti (Extruder drive). Ellei sinulla ole tätä päivitystä, sitä suositellaan luotettavuuden parantamiseksi. Tämä päivityspaketti voidaan ostaa Ultimakerin verkkokaupasta, ja se löytyy thingiverse-sivustolta numerolla 26094"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:108
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Please select the type of printer:"
|
||||
msgstr "Valitse tulostimen tyyppi:"
|
||||
|
@ -1189,7 +1116,6 @@ msgid ""
|
|||
msgstr "Tämä tulostimen nimi on jo käytössä. Valitse toinen tulostimen nimi."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:245
|
||||
#, fuzzy
|
||||
msgctxt "@label:textbox"
|
||||
msgid "Printer Name:"
|
||||
msgstr "Tulostimen nimi:"
|
||||
|
@ -1284,7 +1210,6 @@ msgid "Preparing to slice..."
|
|||
msgstr "Valmistellaan viipalointia..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SaveButton.qml:28
|
||||
#, fuzzy
|
||||
msgctxt "@label:PrintjobStatus"
|
||||
msgid "Slicing..."
|
||||
msgstr "Viipaloidaan..."
|
||||
|
@ -1316,165 +1241,149 @@ msgid ""
|
|||
msgstr "Cura-ohjelman on kehittänyt Ultimaker B.V. yhteistyössä käyttäjäyhteisön kanssa."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:16
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "Cura"
|
||||
msgstr "Cura"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:53
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&File"
|
||||
msgstr "&Tiedosto"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:62
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:file"
|
||||
msgid "Open &Recent"
|
||||
msgstr "Avaa &viimeisin"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:92
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:file"
|
||||
msgid "&Save Selection to File"
|
||||
msgstr "&Tallenna valinta tiedostoon"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:100
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:file"
|
||||
msgid "Save &All"
|
||||
msgstr "Tallenna &kaikki"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:128
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&Edit"
|
||||
msgstr "&Muokkaa"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:145
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&View"
|
||||
msgstr "&Näytä"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:167
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&Printer"
|
||||
msgstr "&Tulostin"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:213
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "P&rofile"
|
||||
msgstr "&Profiili"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:240
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "E&xtensions"
|
||||
msgstr "Laa&jennukset"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:273
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&Settings"
|
||||
msgstr "&Asetukset"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:281
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&Help"
|
||||
msgstr "&Ohje"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:366
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Open File"
|
||||
msgstr "Avaa tiedosto"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:410
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "View Mode"
|
||||
msgstr "Näyttötapa"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:495
|
||||
#, fuzzy
|
||||
msgctxt "@title:tab"
|
||||
msgid "View"
|
||||
msgstr "Näytä"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:644
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "Open file"
|
||||
msgstr "Avaa tiedosto"
|
||||
|
||||
#~ msgctxt "@label"
|
||||
#~ msgid "Variant:"
|
||||
#~ msgstr "Variantti:"
|
||||
msgctxt "@label"
|
||||
msgid "Variant:"
|
||||
msgstr "Variantti:"
|
||||
|
||||
#~ msgctxt "@label"
|
||||
#~ msgid "Global Profile:"
|
||||
#~ msgstr "Yleisprofiili:"
|
||||
msgctxt "@label"
|
||||
msgid "Global Profile:"
|
||||
msgstr "Yleisprofiili:"
|
||||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Heated printer bed (standard kit)"
|
||||
#~ msgstr "Lämmitetty tulostinpöytä (normaali sarja)"
|
||||
msgctxt "@option:check"
|
||||
msgid "Heated printer bed (standard kit)"
|
||||
msgstr "Lämmitetty tulostinpöytä (normaali sarja)"
|
||||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Dual extrusion (experimental)"
|
||||
#~ msgstr "Kaksoispursotus (kokeellinen)"
|
||||
msgctxt "@option:check"
|
||||
msgid "Dual extrusion (experimental)"
|
||||
msgstr "Kaksoispursotus (kokeellinen)"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Bulgarian"
|
||||
#~ msgstr "bulgaria"
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Bulgarian"
|
||||
msgstr "Bulgaria"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Czech"
|
||||
#~ msgstr "tsekki"
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Czech"
|
||||
msgstr "Tsekki"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Italian"
|
||||
#~ msgstr "italia"
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Italian"
|
||||
msgstr "Italia"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Russian"
|
||||
#~ msgstr "venäjä"
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Russian"
|
||||
msgstr "Venäjä"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Spanish"
|
||||
#~ msgstr "espanja"
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Spanish"
|
||||
msgstr "Espanja"
|
||||
|
||||
#~ msgctxt "@label:textbox"
|
||||
#~ msgid "Printjob Name"
|
||||
#~ msgstr "Tulostustyön nimi"
|
||||
msgctxt "@label:textbox"
|
||||
msgid "Printjob Name"
|
||||
msgstr "Tulostustyön nimi"
|
||||
|
||||
#~ msgctxt "@label"
|
||||
#~ msgid "Sparse"
|
||||
#~ msgstr "Harva"
|
||||
msgctxt "@label"
|
||||
msgid "Sparse"
|
||||
msgstr "Harva"
|
||||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Enable Skirt Adhesion"
|
||||
#~ msgstr "Ota helman tarttuvuus käyttöön"
|
||||
msgctxt "@option:check"
|
||||
msgid "Enable Skirt Adhesion"
|
||||
msgstr "Ota helman tarttuvuus käyttöön"
|
||||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Enable Support"
|
||||
#~ msgstr "Ota tuki käyttöön"
|
||||
msgctxt "@option:check"
|
||||
msgid "Enable Support"
|
||||
msgstr "Ota tuki käyttöön"
|
||||
|
||||
#~ msgctxt "@label:listbox"
|
||||
#~ msgid "Machine:"
|
||||
#~ msgstr "Laite:"
|
||||
msgctxt "@label:listbox"
|
||||
msgid "Machine:"
|
||||
msgstr "Laite:"
|
||||
|
||||
#~ msgctxt "@title:menu"
|
||||
#~ msgid "&Machine"
|
||||
#~ msgstr "&Laite"
|
||||
msgctxt "@title:menu"
|
||||
msgid "&Machine"
|
||||
msgstr "&Laite"
|
||||
|
||||
#~ msgctxt "Save button tooltip"
|
||||
#~ msgid "Save to Disk"
|
||||
#~ msgstr "Tallenna levylle"
|
||||
msgctxt "Save button tooltip"
|
||||
msgid "Save to Disk"
|
||||
msgstr "Tallenna levylle"
|
||||
|
||||
#~ msgctxt "Message action tooltip, {0} is sdcard"
|
||||
#~ msgid "Eject SD Card {0}"
|
||||
#~ msgstr "Poista SD-kortti {0}"
|
||||
msgctxt "Message action tooltip, {0} is sdcard"
|
||||
msgid "Eject SD Card {0}"
|
||||
msgstr "Poista SD-kortti {0}"
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -33,13 +33,11 @@ msgid "Open Web Page"
|
|||
msgstr "Ouvrir la page Web"
|
||||
|
||||
#: /home/tamara/2.1/Cura/cura/CuraApplication.py:158
|
||||
#, fuzzy
|
||||
msgctxt "@info:progress"
|
||||
msgid "Setting up scene..."
|
||||
msgstr "Préparation de la scène..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/cura/CuraApplication.py:192
|
||||
#, fuzzy
|
||||
msgctxt "@info:progress"
|
||||
msgid "Loading interface..."
|
||||
msgstr "Chargement de l'interface..."
|
||||
|
@ -56,25 +54,21 @@ msgid "Cura Profile Reader"
|
|||
msgstr "Lecteur de profil Cura"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides support for importing Cura profiles."
|
||||
msgstr "Fournit la prise en charge de l'importation de profils Cura."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:21 /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:21
|
||||
#, fuzzy
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Cura Profile"
|
||||
msgstr "Profil Cura"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/XRayView/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "X-Ray View"
|
||||
msgstr "Vue Rayon-X"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/XRayView/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the X-Ray view."
|
||||
msgstr "Permet la vue Rayon-X."
|
||||
|
@ -95,7 +89,6 @@ msgid "Provides support for reading 3MF files."
|
|||
msgstr "Fournit la prise en charge de la lecture de fichiers 3MF."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/3MFReader/__init__.py:21
|
||||
#, fuzzy
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "3MF File"
|
||||
msgstr "Fichier 3MF"
|
||||
|
@ -124,7 +117,6 @@ msgid "Saved to Removable Drive {0} as {1}"
|
|||
msgstr "Enregistré sur le lecteur amovible {0} sous {1}"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:86
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Eject"
|
||||
msgstr "Ejecter"
|
||||
|
@ -169,13 +161,11 @@ msgid "Provides removable drive hotplugging and writing support"
|
|||
msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||
#, fuzzy
|
||||
msgctxt "@item:inmenu"
|
||||
msgid "Show Changelog"
|
||||
msgstr "Afficher le récapitulatif des changements"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Changelog"
|
||||
msgstr "Récapitulatif des changements"
|
||||
|
@ -201,37 +191,31 @@ msgid "CuraEngine Backend"
|
|||
msgstr "Système CuraEngine"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the link to the CuraEngine slicing backend"
|
||||
msgstr "Fournit le lien vers le système de découpage CuraEngine"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "GCode Writer"
|
||||
msgstr "Générateur de GCode"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Writes GCode to a file"
|
||||
msgstr "Enregistre le GCode dans un fichier"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||
#, fuzzy
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "GCode File"
|
||||
msgstr "Fichier GCode"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:49
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu"
|
||||
msgid "Firmware"
|
||||
msgstr "Firmware"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:50
|
||||
#, fuzzy
|
||||
msgctxt "@item:inmenu"
|
||||
msgid "Update Firmware"
|
||||
msgstr "Mise à jour du firmware"
|
||||
|
@ -262,7 +246,6 @@ msgid "USB printing"
|
|||
msgstr "Impression par USB"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/__init__.py:17
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
|
||||
msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware."
|
||||
|
@ -288,19 +271,16 @@ msgid "Submits anonymous slice info. Can be disabled through preferences."
|
|||
msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Cura Profile Writer"
|
||||
msgstr "Générateur de profil Cura"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides support for exporting Cura profiles."
|
||||
msgstr "Fournit la prise en charge de l'exportation de profils Cura."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ImageReader/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Image Reader"
|
||||
msgstr "Lecteur d'images"
|
||||
|
@ -336,55 +316,46 @@ msgid "GIF Image"
|
|||
msgstr "Image GIF"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "GCode Profile Reader"
|
||||
msgstr "Lecteur de profil GCode"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides support for importing profiles from g-code files."
|
||||
msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:21
|
||||
#, fuzzy
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "G-code File"
|
||||
msgstr "Fichier GCode"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:12
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Solid View"
|
||||
msgstr "Vue solide"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides a normal solid mesh view."
|
||||
msgstr "Affiche une vue en maille solide normale."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:19
|
||||
#, fuzzy
|
||||
msgctxt "@item:inmenu"
|
||||
msgid "Solid"
|
||||
msgstr "Solide"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:13
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Layer View"
|
||||
msgstr "Vue en couches"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:16
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the Layer view."
|
||||
msgstr "Permet la vue en couches."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:20
|
||||
#, fuzzy
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Layers"
|
||||
msgstr "Couches"
|
||||
|
@ -405,13 +376,11 @@ msgid "Per Object Settings Tool"
|
|||
msgstr "Outil de configuration par objet"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the Per Object Settings."
|
||||
msgstr "Affiche les Paramètres par objet."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:19
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Per Object Settings"
|
||||
msgstr "Paramètres par objet"
|
||||
|
@ -427,7 +396,6 @@ msgid "Legacy Cura Profile Reader"
|
|||
msgstr "Lecteur de profil Cura antérieur"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/LegacyProfileReader/__init__.py:15
|
||||
#, fuzzy
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides support for importing profiles from legacy Cura versions."
|
||||
msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures."
|
||||
|
@ -438,31 +406,26 @@ msgid "Cura 15.04 profiles"
|
|||
msgstr "Profils Cura 15.04"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:20
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "Firmware Update"
|
||||
msgstr "Mise à jour du firmware"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:38
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Starting firmware update, this may take a while."
|
||||
msgstr "Démarrage de la mise à jour du firmware, cela peut prendre un certain temps."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:43
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Firmware update completed."
|
||||
msgstr "Mise à jour du firmware terminée."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:48
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Updating firmware."
|
||||
msgstr "Mise à jour du firmware en cours."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:80 /home/tamara/2.1/Cura/resources/qml/EngineLog.qml:38 /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:74
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
@ -473,25 +436,21 @@ msgid "Print with USB"
|
|||
msgstr "Imprimer par USB"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:28
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Extruder Temperature %1"
|
||||
msgstr "Température de l'extrudeuse %1"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:33
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Bed Temperature %1"
|
||||
msgstr "Température du plateau %1"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:60
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Print"
|
||||
msgstr "Imprimer"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:67 /home/tamara/2.1/Cura/plugins/ImageReader/ConfigUI.qml:200 /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:303 /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:58
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
@ -582,7 +541,6 @@ msgid "Object profile"
|
|||
msgstr "Profil d'objet"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Add Setting"
|
||||
msgstr "Ajouter un paramètre"
|
||||
|
@ -608,19 +566,16 @@ msgid "0.0 m"
|
|||
msgstr "0,0 m"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/JobSpecs.qml:218
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "%1 m"
|
||||
msgstr "%1 m"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SidebarHeader.qml:29
|
||||
#, fuzzy
|
||||
msgctxt "@label:listbox"
|
||||
msgid "Print Job"
|
||||
msgstr "Imprimer la tâche"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SidebarHeader.qml:50
|
||||
#, fuzzy
|
||||
msgctxt "@label:listbox"
|
||||
msgid "Printer:"
|
||||
msgstr "Imprimante :"
|
||||
|
@ -631,37 +586,31 @@ msgid "Nozzle:"
|
|||
msgstr "Buse :"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Sidebar.qml:89
|
||||
#, fuzzy
|
||||
msgctxt "@label:listbox"
|
||||
msgid "Setup"
|
||||
msgstr "Configuration"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Sidebar.qml:215
|
||||
#, fuzzy
|
||||
msgctxt "@title:tab"
|
||||
msgid "Simple"
|
||||
msgstr "Simple"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Sidebar.qml:216
|
||||
#, fuzzy
|
||||
msgctxt "@title:tab"
|
||||
msgid "Advanced"
|
||||
msgstr "Avancée"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/AddMachineWizard.qml:18
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "Add Printer"
|
||||
msgstr "Ajouter une imprimante"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/AddMachineWizard.qml:25 /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:99
|
||||
#, fuzzy
|
||||
msgctxt "@title"
|
||||
msgid "Add Printer"
|
||||
msgstr "Ajouter une imprimante"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:15
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "Load profile"
|
||||
msgstr "Charger un profil"
|
||||
|
@ -677,7 +626,6 @@ msgid "Show details."
|
|||
msgstr "Afficher les détails."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:50
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Merge settings"
|
||||
msgstr "Fusionner les paramètres"
|
||||
|
@ -688,13 +636,11 @@ msgid "Reset profile"
|
|||
msgstr "Réinitialiser le profil"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/ProfileSetup.qml:28
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Profile:"
|
||||
msgstr "Profil :"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/EngineLog.qml:15
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "Engine Log"
|
||||
msgstr "Journal du moteur"
|
||||
|
@ -705,139 +651,116 @@ msgid "Toggle Fu&ll Screen"
|
|||
msgstr "Passer en P&lein écran"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:57
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Undo"
|
||||
msgstr "&Annuler"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:65
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Redo"
|
||||
msgstr "&Rétablir"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:73
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:file"
|
||||
msgid "&Quit"
|
||||
msgstr "&Quitter"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:81
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:settings"
|
||||
msgid "&Preferences..."
|
||||
msgstr "&Préférences..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:88
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:printer"
|
||||
msgid "&Add Printer..."
|
||||
msgstr "&Ajouter une imprimante..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:94
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:printer"
|
||||
msgid "Manage Pr&inters..."
|
||||
msgstr "Gérer les &imprimantes..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:101
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:profile"
|
||||
msgid "Manage Profiles..."
|
||||
msgstr "Gérer les profils..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:108
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:help"
|
||||
msgid "Show Online &Documentation"
|
||||
msgstr "Afficher la &documentation en ligne"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:115
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:help"
|
||||
msgid "Report a &Bug"
|
||||
msgstr "Notifier un &bug"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:122
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:help"
|
||||
msgid "&About..."
|
||||
msgstr "&À propos de..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:129
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "Delete &Selection"
|
||||
msgstr "&Supprimer la sélection"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:137
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu"
|
||||
msgid "Delete Object"
|
||||
msgstr "Supprimer l'objet"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:144
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu"
|
||||
msgid "Ce&nter Object on Platform"
|
||||
msgstr "Ce&ntrer l’objet sur le plateau"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:150
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Group Objects"
|
||||
msgstr "&Grouper les objets"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:158
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "Ungroup Objects"
|
||||
msgstr "Dégrouper les objets"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:166
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Merge Objects"
|
||||
msgstr "&Fusionner les objets"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:174
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu"
|
||||
msgid "&Duplicate Object"
|
||||
msgstr "&Dupliquer l’objet"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:181
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "&Clear Build Platform"
|
||||
msgstr "&Supprimer les objets du plateau"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:189
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:file"
|
||||
msgid "Re&load All Objects"
|
||||
msgstr "Rechar&ger tous les objets"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:196
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "Reset All Object Positions"
|
||||
msgstr "Réinitialiser les positions de tous les objets"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:202
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:edit"
|
||||
msgid "Reset All Object &Transformations"
|
||||
msgstr "Réinitialiser les &transformations de tous les objets"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:208
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:file"
|
||||
msgid "&Open File..."
|
||||
msgstr "&Ouvrir un fichier..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:216
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:help"
|
||||
msgid "Show Engine &Log..."
|
||||
msgstr "Afficher le &journal du moteur..."
|
||||
|
@ -853,7 +776,6 @@ msgid "Hollow"
|
|||
msgstr "Creux"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:239
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "No (0%) infill will leave your model hollow at the cost of low strength"
|
||||
msgstr "L'absence de remplissage (0 %) laissera votre modèle creux pour une solidité faible"
|
||||
|
@ -864,7 +786,6 @@ msgid "Light"
|
|||
msgstr "Clairsemé"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:245
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Light (20%) infill will give your model an average strength"
|
||||
msgstr "Un remplissage clairsemé (20 %) donnera à votre modèle une solidité moyenne"
|
||||
|
@ -890,7 +811,6 @@ msgid "Solid (100%) infill will make your model completely solid"
|
|||
msgstr "Un remplissage solide (100 %) rendra votre modèle vraiment résistant"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:276
|
||||
#, fuzzy
|
||||
msgctxt "@label:listbox"
|
||||
msgid "Helpers:"
|
||||
msgstr "Aides :"
|
||||
|
@ -921,7 +841,6 @@ msgid "General"
|
|||
msgstr "Général"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:51
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Language:"
|
||||
msgstr "Langue :"
|
||||
|
@ -967,13 +886,11 @@ msgid "Ensure objects are kept apart"
|
|||
msgstr "Veillez à ce que les objets restent séparés"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:131
|
||||
#, fuzzy
|
||||
msgctxt "@info:tooltip"
|
||||
msgid "Should opened files be scaled to the build volume if they are too large?"
|
||||
msgstr "Les fichiers ouverts doivent-ils être mis à l'échelle du volume d'impression s'ils sont trop grands ?"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:136
|
||||
#, fuzzy
|
||||
msgctxt "@option:check"
|
||||
msgid "Scale large files"
|
||||
msgstr "Réduire la taille des fichiers trop grands"
|
||||
|
@ -984,13 +901,11 @@ msgid "Should anonymous data about your print be sent to Ultimaker? Note, no mod
|
|||
msgstr "Les données anonymes de votre impression doivent-elles être envoyées à Ultimaker ? Notez qu'aucun modèle, aucune adresse IP ni aucune autre information permettant de vous identifier personnellement ne seront envoyés ou stockés."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:150
|
||||
#, fuzzy
|
||||
msgctxt "@option:check"
|
||||
msgid "Send (anonymous) print information"
|
||||
msgstr "Envoyer des informations (anonymes) sur l'impression"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/ViewPage.qml:16
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "View"
|
||||
msgstr "Visualisation"
|
||||
|
@ -1001,7 +916,6 @@ msgid "Highlight unsupported areas of the model in red. Without support these ar
|
|||
msgstr "Surligne les parties non supportées du modèle en rouge. Sans ajouter de support, ces zones ne s'imprimeront pas correctement."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/ViewPage.qml:42
|
||||
#, fuzzy
|
||||
msgctxt "@option:check"
|
||||
msgid "Display overhang"
|
||||
msgstr "Mettre en surbrillance les porte-à-faux"
|
||||
|
@ -1017,7 +931,6 @@ msgid "Center camera when item is selected"
|
|||
msgstr "Centrer la caméra lorsqu'un élément est sélectionné"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/UltimakerCheckup.qml:72 /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:275
|
||||
#, fuzzy
|
||||
msgctxt "@title"
|
||||
msgid "Check Printer"
|
||||
msgstr "Tester l'imprimante"
|
||||
|
@ -1095,7 +1008,6 @@ msgid "Checking"
|
|||
msgstr "Vérification en cours"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/UltimakerCheckup.qml:267
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "bed temperature check:"
|
||||
msgstr "test de la température du plateau :"
|
||||
|
@ -1116,13 +1028,11 @@ msgid "To assist you in having better default settings for your Ultimaker. Cura
|
|||
msgstr "Afin de vous aider à créer de meilleurs réglages par défaut pour votre Ultimaker, Cura doit savoir quelles améliorations vous avez installées sur votre machine :"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/SelectUpgradedParts.qml:57
|
||||
#, fuzzy
|
||||
msgctxt "@option:check"
|
||||
msgid "Extruder driver ugrades"
|
||||
msgstr "Améliorations de l'entrainement de l'extrudeuse"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/SelectUpgradedParts.qml:63
|
||||
#, fuzzy
|
||||
msgctxt "@option:check"
|
||||
msgid "Heated printer bed"
|
||||
msgstr "Plateau d'imprimante chauffant"
|
||||
|
@ -1138,7 +1048,6 @@ msgid "If you bought your Ultimaker after october 2012 you will have the Extrude
|
|||
msgstr "Si vous avez acheté votre Ultimaker après octobre 2012, la mise à jour du système d'entraînement est déjà installée. Si vous n'avez pas encore cette amélioration, sachez qu'elle est fortement recommandée pour améliorer la fiabilité. Cette amélioration peut être achetée sur l'e-shop Ultimaker ou téléchargée sur thingiverse, sous la référence : thing:26094"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:108
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "Please select the type of printer:"
|
||||
msgstr "Veuillez sélectionner le type d’imprimante :"
|
||||
|
@ -1149,13 +1058,11 @@ msgid "This printer name has already been used. Please choose a different printe
|
|||
msgstr "Ce nom d'imprimante a déjà été utilisé. Veuillez choisir un autre nom d'imprimante."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:245
|
||||
#, fuzzy
|
||||
msgctxt "@label:textbox"
|
||||
msgid "Printer Name:"
|
||||
msgstr "Nom de l'imprimante :"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:272 /home/tamara/2.1/Cura/resources/qml/WizardPages/UpgradeFirmware.qml:22
|
||||
#, fuzzy
|
||||
msgctxt "@title"
|
||||
msgid "Upgrade Firmware"
|
||||
msgstr "Mise à niveau du firmware"
|
||||
|
@ -1211,7 +1118,6 @@ msgid "Cura requires these new features and thus your firmware will most likely
|
|||
msgstr "Cura a besoin de ces nouvelles fonctionnalités et par conséquent, votre firmware a besoin d'être mis à jour. Vous pouvez procéder à la mise à jour maintenant."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/UpgradeFirmware.qml:64
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Upgrade to Marlin Firmware"
|
||||
msgstr "Mettre à jour vers le firmware Marlin"
|
||||
|
@ -1232,7 +1138,6 @@ msgid "Preparing to slice..."
|
|||
msgstr "Préparation de la découpe..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/SaveButton.qml:28
|
||||
#, fuzzy
|
||||
msgctxt "@label:PrintjobStatus"
|
||||
msgid "Slicing..."
|
||||
msgstr "Découpe en cours..."
|
||||
|
@ -1248,115 +1153,96 @@ msgid "Select the active output device"
|
|||
msgstr "Sélectionner le périphérique de sortie actif"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:15
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "About Cura"
|
||||
msgstr "À propos de Cura"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:54
|
||||
#, fuzzy
|
||||
msgctxt "@label"
|
||||
msgid "End-to-end solution for fused filament 3D printing."
|
||||
msgstr "Solution complète pour l'impression 3D par dépôt de filament fondu."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:66
|
||||
#, fuzzy
|
||||
msgctxt "@info:credit"
|
||||
msgid "Cura has been developed by Ultimaker B.V. in cooperation with the community."
|
||||
msgstr "Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:16
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "Cura"
|
||||
msgstr "Cura"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:53
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&File"
|
||||
msgstr "&Fichier"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:62
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:file"
|
||||
msgid "Open &Recent"
|
||||
msgstr "Ouvrir un fichier &récent"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:92
|
||||
#, fuzzy
|
||||
msgctxt "@action:inmenu menubar:file"
|
||||
msgid "&Save Selection to File"
|
||||
msgstr "Enregi&strer la sélection dans un fichier"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:100
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:file"
|
||||
msgid "Save &All"
|
||||
msgstr "Enregistrer &tout"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:128
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&Edit"
|
||||
msgstr "&Modifier"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:145
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&View"
|
||||
msgstr "&Visualisation"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:167
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&Printer"
|
||||
msgstr "Im&primante"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:213
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "P&rofile"
|
||||
msgstr "P&rofil"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:240
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "E&xtensions"
|
||||
msgstr "E&xtensions"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:273
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&Settings"
|
||||
msgstr "&Paramètres"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:281
|
||||
#, fuzzy
|
||||
msgctxt "@title:menu menubar:toplevel"
|
||||
msgid "&Help"
|
||||
msgstr "&Aide"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:366
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "Open File"
|
||||
msgstr "Ouvrir un fichier"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:410
|
||||
#, fuzzy
|
||||
msgctxt "@action:button"
|
||||
msgid "View Mode"
|
||||
msgstr "Mode d’affichage"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:495
|
||||
#, fuzzy
|
||||
msgctxt "@title:tab"
|
||||
msgid "View"
|
||||
msgstr "Visualisation"
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:644
|
||||
#, fuzzy
|
||||
msgctxt "@title:window"
|
||||
msgid "Open file"
|
||||
msgstr "Ouvrir un fichier"
|
||||
|
@ -1407,7 +1293,7 @@ msgstr "Ouvrir un fichier"
|
|||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Enable Skirt Adhesion"
|
||||
#~ msgstr "Adhäsion der Unterlage aktivieren"
|
||||
#~ msgstr "Activer l'Adhérence de Jupe"
|
||||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Enable Support"
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -37,7 +37,6 @@
|
|||
|
||||
"overrides": {
|
||||
"layer_height": { "default": 0.2 },
|
||||
"shell_thickness": { "default": 0.8 },
|
||||
"wall_thickness": { "default": 0.8 },
|
||||
"top_bottom_thickness": { "default": 0.3, "visible": true },
|
||||
"material_print_temperature": { "default": 195, "visible": true },
|
||||
|
|
|
@ -35,7 +35,6 @@
|
|||
|
||||
"overrides": {
|
||||
"layer_height": { "default": 0.2 },
|
||||
"shell_thickness": { "default": 0.8},
|
||||
"wall_thickness": { "default": 0.8 },
|
||||
"top_bottom_thickness": { "default": 0.3, "visible": true },
|
||||
"material_print_temperature": { "default": 195, "visible": true },
|
||||
|
|
|
@ -38,7 +38,6 @@
|
|||
},
|
||||
"layer_height": { "default": 0.2 },
|
||||
"layer_height_0": { "default": 0.2, "visible": false },
|
||||
"shell_thickness": { "default": 1.0 },
|
||||
"wall_thickness": { "default": 1.0, "visible": false },
|
||||
"top_bottom_thickness": { "default": 1.0, "visible": false},
|
||||
"bottom_thickness": { "default": 1.0, "visible": false },
|
||||
|
|
|
@ -41,7 +41,6 @@
|
|||
"material_diameter": { "default": 1.75 },
|
||||
"layer_height": { "default": 0.2 },
|
||||
"layer_height_0": { "default": 0.2, "visible": true },
|
||||
"shell_thickness": { "default": 1.2 },
|
||||
"wall_line_count": { "default": 3, "visible": false },
|
||||
"wall_thickness": { "default": 1.2, "visible": false },
|
||||
"top_bottom_thickness": { "default": 1.2, "visible": false },
|
||||
|
|
|
@ -38,7 +38,6 @@
|
|||
},
|
||||
"layer_height": { "default": 0.2 },
|
||||
"layer_height_0": { "default": 0.2, "visible": false },
|
||||
"shell_thickness": { "default": 1.0 },
|
||||
"wall_thickness": { "default": 1.0, "visible": false },
|
||||
"top_bottom_thickness": { "default": 1.0, "visible": false},
|
||||
"bottom_thickness": { "default": 1.0, "visible": false },
|
||||
|
|
|
@ -38,7 +38,6 @@
|
|||
},
|
||||
"layer_height": { "default": 0.2 },
|
||||
"layer_height_0": { "default": 0.2, "visible": false },
|
||||
"shell_thickness": { "default": 1.0 },
|
||||
"wall_thickness": { "default": 1.0, "visible": false },
|
||||
"top_bottom_thickness": { "default": 1.0, "visible": false},
|
||||
"bottom_thickness": { "default": 1.0, "visible": false },
|
||||
|
|
|
@ -41,7 +41,6 @@
|
|||
"material_diameter": { "default": 1.75 },
|
||||
"layer_height": { "default": 0.2 },
|
||||
"layer_height_0": { "default": 0.2, "visible": true },
|
||||
"shell_thickness": { "default": 1.2 },
|
||||
"wall_line_count": { "default": 3, "visible": false },
|
||||
"wall_thickness": { "default": 1.2, "visible": false },
|
||||
"top_bottom_thickness": { "default": 1.2, "visible": false },
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -27,15 +27,13 @@
|
|||
"machine_end_gcode": {"default": "M104 S0\nG91 ; relative positioning\nG1 E-2 F5000; retract 2mm\nG28 Z; move bed down\nG90 ; absolute positioning\nM84 ; disable motors"},
|
||||
"machine_platform_offset": {"default": [-180, -0.25, 160]}
|
||||
},
|
||||
|
||||
"overrides": {
|
||||
"layer_height": { "default": 0.15 },
|
||||
"shell_thickness": { "default": 0.8},
|
||||
"wall_thickness": { "default": 0.8 },
|
||||
"top_bottom_thickness": { "default": 0.3, "visible": true },
|
||||
"material_print_temperature": { "default": 215, "visible": true },
|
||||
"material_bed_temperature": { "default": 60, "visible": true },
|
||||
"material_diameter": { "default": 1.75, "visible": true },
|
||||
"layer_height": { "default": 0.15},
|
||||
"wall_thickness": { "default": 0.8},
|
||||
"top_bottom_thickness": { "default": 0.3, "visible": true},
|
||||
"material_print_temperature": { "default": 215, "visible": true},
|
||||
"material_bed_temperature": { "default": 60, "visible": true},
|
||||
"material_diameter": { "default": 1.75, "visible": true},
|
||||
"retraction_enable": { "default": true, "always_visible": true},
|
||||
"retraction_speed": { "default": 50.0, "visible": false },
|
||||
"retraction_amount": { "default": 2.5, "visible": false },
|
||||
|
|
|
@ -11,10 +11,6 @@
|
|||
|
||||
"inherits": "ultimaker.json",
|
||||
|
||||
"pages": [
|
||||
"SelectUpgradedPartsUM2"
|
||||
],
|
||||
|
||||
"machine_extruder_trains": [
|
||||
{
|
||||
"machine_nozzle_heat_up_speed": {
|
||||
|
@ -67,7 +63,7 @@
|
|||
]
|
||||
},
|
||||
"machine_center_is_zero": { "default": false },
|
||||
"machine_nozzle_size": { "default": 0.4, "min_value": "0.001", "description": "The inner diameter of the nozzle. If you are using an Olsson Block with a non-standard nozzle diameter, set this field to the diameter you are using." },
|
||||
"machine_nozzle_size": { "default": 0.4, "min_value": "0.001"},
|
||||
"machine_nozzle_heat_up_speed": { "default": 2.0 },
|
||||
"machine_nozzle_cool_down_speed": { "default": 2.0 },
|
||||
"gantry_height": { "default": 55 },
|
||||
|
|
|
@ -15,8 +15,6 @@
|
|||
],
|
||||
|
||||
"machine_settings": {
|
||||
"machine_width": { "default": 230 },
|
||||
"machine_depth": { "default": 225 },
|
||||
"machine_height": { "default": 315 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,13 +8,10 @@
|
|||
"platform_texture": "Ultimaker2Extendedbackplate.png",
|
||||
"visible": false,
|
||||
"file_formats": "text/x-gcode",
|
||||
"inherits": "ultimaker2.json",
|
||||
"inherits": "ultimaker2_olsson.json",
|
||||
|
||||
"machine_settings": {
|
||||
"machine_width": { "default": 230 },
|
||||
"machine_depth": { "default": 225 },
|
||||
"machine_height": { "default": 310 },
|
||||
"machine_show_variants": { "default": true },
|
||||
"gantry_height": { "default": 50 }
|
||||
"machine_height": { "default": 313 },
|
||||
"machine_show_variants": { "default": true }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
"variant": "0.25 mm",
|
||||
"profiles_machine": "ultimaker2_olsson",
|
||||
"machine_settings": {
|
||||
"machine_nozzle_size": { "default": 0.25 }
|
||||
"machine_nozzle_size": { "default": 0.25 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 0.8 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
"variant": "0.4 mm",
|
||||
"profiles_machine": "ultimaker2_olsson",
|
||||
"machine_settings": {
|
||||
"machine_nozzle_size": { "default": 0.40 }
|
||||
"machine_nozzle_size": { "default": 0.40 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 1.05 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
"variant": "0.6 mm",
|
||||
"profiles_machine": "ultimaker2_olsson",
|
||||
"machine_settings": {
|
||||
"machine_nozzle_size": { "default": 0.60 }
|
||||
"machine_nozzle_size": { "default": 0.60 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 1.25 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
"variant": "0.8 mm",
|
||||
"profiles_machine": "ultimaker2_olsson",
|
||||
"machine_settings": {
|
||||
"machine_nozzle_size": { "default": 0.80 }
|
||||
"machine_nozzle_size": { "default": 0.80 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 1.35 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,10 +11,9 @@
|
|||
"inherits": "ultimaker2plus.json",
|
||||
|
||||
"machine_settings": {
|
||||
"machine_width": { "default": 230 },
|
||||
"machine_depth": { "default": 225 },
|
||||
"machine_height": { "default": 310 },
|
||||
"machine_height": { "default": 313 },
|
||||
"machine_show_variants": { "default": true },
|
||||
"gantry_height": { "default": 50 }
|
||||
"machine_nozzle_head_distance": { "default": 5 },
|
||||
"machine_nozzle_expansion_angle": { "default": 45 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
"variant": "0.25 mm",
|
||||
"profiles_machine": "ultimaker2plus",
|
||||
"machine_settings": {
|
||||
"machine_nozzle_size": { "default": 0.25 }
|
||||
"machine_nozzle_size": { "default": 0.25 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 0.8 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
"variant": "0.4 mm",
|
||||
"profiles_machine": "ultimaker2plus",
|
||||
"machine_settings": {
|
||||
"machine_nozzle_size": { "default": 0.40 }
|
||||
"machine_nozzle_size": { "default": 0.40 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 1.05 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
"variant": "0.6 mm",
|
||||
"profiles_machine": "ultimaker2plus",
|
||||
"machine_settings": {
|
||||
"machine_nozzle_size": { "default": 0.60 }
|
||||
"machine_nozzle_size": { "default": 0.60 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 1.25 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
"variant": "0.8 mm",
|
||||
"profiles_machine": "ultimaker2plus",
|
||||
"machine_settings": {
|
||||
"machine_nozzle_size": { "default": 0.80 }
|
||||
"machine_nozzle_size": { "default": 0.80 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 1.35 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
{
|
||||
"id": "ultimaker2_olsson_base",
|
||||
"version": 1,
|
||||
"name": "Ultimaker 2 with Olsson Block",
|
||||
"manufacturer": "Ultimaker",
|
||||
"author": "Ultimaker",
|
||||
"platform": "ultimaker2_platform.obj",
|
||||
"platform_texture": "Ultimaker2backplate.png",
|
||||
"visible": false,
|
||||
"file_formats": "text/x-gcode",
|
||||
"inherits": "ultimaker2.json",
|
||||
|
||||
"overrides": {
|
||||
"machine_show_variants": { "default": true }
|
||||
}
|
||||
}
|
|
@ -1,21 +0,0 @@
|
|||
{
|
||||
"id": "ultimaker2_olsson",
|
||||
"version": 1,
|
||||
"name": "Ultimaker 2 with Olsson Block",
|
||||
"manufacturer": "Ultimaker",
|
||||
"author": "Ultimaker",
|
||||
"platform": "ultimaker2_platform.obj",
|
||||
"platform_texture": "Ultimaker2backplate.png",
|
||||
"visible": false,
|
||||
"file_formats": "text/x-gcode",
|
||||
"inherits": "ultimaker2_olsson.json",
|
||||
|
||||
"variant": "0.25 mm",
|
||||
|
||||
"overrides": {
|
||||
"machine_nozzle_size": { "default": 0.25 },
|
||||
|
||||
"coasting_volume": { "default": 0.1 },
|
||||
"coasting_min_volume": { "default": 0.17 }
|
||||
}
|
||||
}
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"id": "ultimaker2_olsson",
|
||||
"version": 1,
|
||||
"name": "Ultimaker 2 with Olsson Block",
|
||||
"manufacturer": "Ultimaker",
|
||||
"author": "Ultimaker",
|
||||
"platform": "ultimaker2_platform.obj",
|
||||
"platform_texture": "Ultimaker2backplate.png",
|
||||
"visible": false,
|
||||
"file_formats": "text/x-gcode",
|
||||
"inherits": "ultimaker2_olsson.json",
|
||||
|
||||
"variant": "0.4 mm",
|
||||
|
||||
"overrides": {
|
||||
"machine_nozzle_size": { "default": 0.40 }
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"id": "ultimaker2_olsson",
|
||||
"version": 1,
|
||||
"name": "Ultimaker 2 with Olsson Block",
|
||||
"manufacturer": "Ultimaker",
|
||||
"author": "Ultimaker",
|
||||
"platform": "ultimaker2_platform.obj",
|
||||
"platform_texture": "Ultimaker2backplate.png",
|
||||
"visible": false,
|
||||
"file_formats": "text/x-gcode",
|
||||
"inherits": "ultimaker2_olsson.json",
|
||||
|
||||
"variant": "0.6 mm",
|
||||
|
||||
"overrides": {
|
||||
"machine_nozzle_size": { "default": 0.60 },
|
||||
"coasting_volume": { "default": 1.36 }
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
{
|
||||
"id": "ultimaker2_olsson",
|
||||
"version": 1,
|
||||
"name": "Ultimaker 2 with Olsson Block",
|
||||
"manufacturer": "Ultimaker",
|
||||
"author": "Ultimaker",
|
||||
"platform": "ultimaker2_platform.obj",
|
||||
"platform_texture": "Ultimaker2backplate.png",
|
||||
"visible": false,
|
||||
"file_formats": "text/x-gcode",
|
||||
"inherits": "ultimaker2_olsson.json",
|
||||
|
||||
"variant": "0.8 mm",
|
||||
|
||||
"overrides": {
|
||||
"machine_nozzle_size": { "default": 0.80 },
|
||||
"coasting_volume": { "default": 3.22 }
|
||||
}
|
||||
}
|
|
@ -11,11 +11,12 @@
|
|||
"inherits": "ultimaker2.json",
|
||||
|
||||
"overrides": {
|
||||
"machine_width": { "default": 230 },
|
||||
"machine_depth": { "default": 225 },
|
||||
"machine_height": { "default": 200 },
|
||||
"machine_height": { "default": 203 },
|
||||
"machine_show_variants": { "default": true },
|
||||
"gantry_height": { "default": 50 },
|
||||
"gantry_height": { "default": 52 },
|
||||
"machine_nozzle_head_distance": { "default": 5 },
|
||||
"machine_nozzle_expansion_angle": { "default": 45 },
|
||||
"machine_heat_zone_length": { "default": 20 },
|
||||
"machine_head_with_fans_polygon":
|
||||
{
|
||||
"default": [
|
||||
|
@ -36,6 +37,7 @@
|
|||
-34
|
||||
]
|
||||
]
|
||||
}
|
||||
},
|
||||
"retraction_amount": { "default": 6.0 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
|
||||
"overrides": {
|
||||
"machine_nozzle_size": { "default": 0.25 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 0.8 },
|
||||
"coasting_volume": { "default": 0.1 },
|
||||
"coasting_min_volume": { "default": 0.17 }
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
"variant": "0.4 mm",
|
||||
|
||||
"overrides": {
|
||||
"machine_nozzle_size": { "default": 0.40 }
|
||||
"machine_nozzle_size": { "default": 0.40 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 1.05 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
|
||||
"overrides": {
|
||||
"machine_nozzle_size": { "default": 0.60 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 1.25 },
|
||||
"coasting_volume": { "default": 1.36 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
|
||||
"overrides": {
|
||||
"machine_nozzle_size": { "default": 0.80 },
|
||||
"machine_nozzle_tip_outer_diameter": { "default": 1.35 },
|
||||
"coasting_volume": { "default": 3.22 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
"machine_gcode_flavor": { "default": "RepRap (Marlin/Sprinter)" },
|
||||
|
||||
"machine_start_gcode": {
|
||||
"default": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E6 ;extrude 3mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..."
|
||||
"default": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E6 ;extrude 6 mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..."
|
||||
},
|
||||
"machine_end_gcode": {
|
||||
"default": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning"
|
||||
|
|
|
@ -5,5 +5,6 @@ weight = -3
|
|||
|
||||
[settings]
|
||||
layer_height = 0.06
|
||||
infill_sparse_density = 12
|
||||
speed_topbottom = 15
|
||||
speed_infill = 80
|
||||
|
||||
|
|
|
@ -9,7 +9,9 @@ shell_thickness = 0.8
|
|||
infill_sparse_density = 8
|
||||
speed_print = 60
|
||||
speed_wall_0 = 40
|
||||
speed_wall_x = 50
|
||||
speed_wall_x = 80
|
||||
speed_infill = 100
|
||||
wall_thickness = 1
|
||||
speed_topbottom = 30
|
||||
speed_travel = 150
|
||||
speed_layer_0 = 30
|
||||
|
|
|
@ -4,3 +4,5 @@ name = Normal Quality
|
|||
weight = -2
|
||||
|
||||
[settings]
|
||||
speed_topbottom = 15
|
||||
speed_infill = 80
|
||||
|
|
|
@ -5,6 +5,5 @@ weight = -4
|
|||
|
||||
[settings]
|
||||
layer_height = 0.04
|
||||
shell_thickness = 1.6
|
||||
top_bottom_thickness = 0.8
|
||||
infill_sparse_density = 14
|
||||
speed_topbottom = 15
|
||||
speed_infill = 80
|
||||
|
|
|
@ -5,8 +5,6 @@ name = ABS
|
|||
|
||||
[settings]
|
||||
material_bed_temperature = 100
|
||||
platform_adhesion = brim
|
||||
material_flow = 107
|
||||
material_print_temperature = 250
|
||||
cool_fan_speed = 50
|
||||
cool_fan_speed_max = 50
|
||||
|
|
|
@ -4,9 +4,5 @@ type = material
|
|||
name = CPE
|
||||
|
||||
[settings]
|
||||
material_bed_temperature = 60
|
||||
platform_adhesion = brim
|
||||
material_flow = 100
|
||||
material_print_temperature = 250
|
||||
cool_fan_speed = 50
|
||||
cool_fan_speed_max = 50
|
||||
|
|
|
@ -4,6 +4,3 @@ type = material
|
|||
name = PLA
|
||||
|
||||
[settings]
|
||||
material_bed_temperature = 60
|
||||
material_flow = 100
|
||||
material_print_temperature = 210
|
|
@ -8,19 +8,18 @@ weight = -2
|
|||
|
||||
[settings]
|
||||
layer_height = 0.06
|
||||
top_bottom_thickness = 0.72
|
||||
layer_height_0 = 0.15
|
||||
speed_wall_x = 25
|
||||
wall_thickness = 0.88
|
||||
line_width = 0.22
|
||||
top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 20
|
||||
layer_height_0 = 0.15
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 30
|
||||
speed_topbottom = 20
|
||||
adhesion_type = brim
|
||||
speed_print = 20
|
||||
cool_min_speed = 25
|
||||
line_width = 0.22
|
||||
infill_sparse_density = 22
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 25
|
||||
cool_min_layer_time = 2
|
||||
cool_min_speed = 10
|
||||
cool_lift_head = True
|
||||
cool_fan_speed_min = 50
|
||||
cool_fan_speed_min = 20
|
||||
|
||||
|
|
|
@ -8,19 +8,18 @@ weight = -1
|
|||
|
||||
[settings]
|
||||
layer_height = 0.15
|
||||
top_bottom_thickness = 0.75
|
||||
layer_height_0 = 0.26
|
||||
speed_print = 40
|
||||
speed_wall_x = 40
|
||||
wall_thickness = 0.7
|
||||
line_width = 0.35
|
||||
top_bottom_thickness = 0.75
|
||||
infill_sparse_density = 18
|
||||
speed_print = 40
|
||||
layer_height_0 = 0.26
|
||||
speed_layer_0 = 30
|
||||
speed_travel = 150
|
||||
speed_infill = 55
|
||||
speed_topbottom = 30
|
||||
speed_wall_0 = 30
|
||||
cool_min_layer_time = 3
|
||||
cool_min_speed = 20
|
||||
line_width = 0.35
|
||||
infill_sparse_density = 18
|
||||
speed_travel = 150
|
||||
speed_wall_0 = 30
|
||||
adhesion_type = brim
|
||||
cool_lift_head = True
|
||||
cool_fan_speed_min = 50
|
|
@ -8,19 +8,18 @@ weight = -3
|
|||
|
||||
[settings]
|
||||
layer_height = 0.06
|
||||
top_bottom_thickness = 0.72
|
||||
layer_height_0 = 0.26
|
||||
speed_print = 30
|
||||
speed_wall_x = 30
|
||||
wall_thickness = 1.05
|
||||
line_width = 0.35
|
||||
top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 30
|
||||
layer_height_0 = 0.26
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 45
|
||||
speed_topbottom = 20
|
||||
adhesion_type = brim
|
||||
cool_min_speed = 20
|
||||
line_width = 0.35
|
||||
infill_sparse_density = 22
|
||||
speed_wall_0 = 20
|
||||
cool_min_layer_time = 3
|
||||
cool_min_speed = 10
|
||||
cool_fan_speed_min = 20
|
||||
cool_lift_head = True
|
||||
cool_fan_speed_min = 50
|
||||
|
||||
|
|
|
@ -7,17 +7,19 @@ material = ABS
|
|||
weight = -2
|
||||
|
||||
[settings]
|
||||
layer_height_0 = 0.26
|
||||
speed_print = 30
|
||||
speed_wall_x = 30
|
||||
layer_height = 0.1
|
||||
wall_thickness = 1.05
|
||||
line_width = 0.35
|
||||
top_bottom_thickness = 0.8
|
||||
infill_sparse_density = 20
|
||||
speed_print = 30
|
||||
layer_height_0 = 0.26
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 45
|
||||
speed_topbottom = 20
|
||||
cool_min_layer_time = 3
|
||||
cool_min_speed = 20
|
||||
line_width = 0.35
|
||||
speed_wall_0 = 20
|
||||
adhesion_type = brim
|
||||
cool_lift_head = True
|
||||
cool_min_layer_time = 3
|
||||
cool_fan_speed_min = 50
|
||||
cool_min_speed = 10
|
||||
cool_lift_head = True
|
||||
|
||||
|
|
|
@ -8,18 +8,19 @@ weight = -2
|
|||
|
||||
[settings]
|
||||
layer_height = 0.15
|
||||
top_bottom_thickness = 1.2
|
||||
layer_height_0 = 0.39
|
||||
speed_print = 25
|
||||
speed_wall_x = 30
|
||||
wall_thickness = 1.59
|
||||
speed_infill = 55
|
||||
speed_topbottom = 20
|
||||
adhesion_type = brim
|
||||
cool_min_speed = 20
|
||||
line_width = 0.53
|
||||
top_bottom_thickness = 1.2
|
||||
infill_sparse_density = 20
|
||||
speed_print = 25
|
||||
layer_height_0 = 0.39
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 40
|
||||
speed_topbottom = 20
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 30
|
||||
cool_min_layer_time = 3
|
||||
cool_lift_head = True
|
||||
cool_fan_speed_min = 50
|
||||
cool_min_speed = 20
|
||||
cool_lift_head = True
|
||||
|
||||
|
|
|
@ -8,18 +8,18 @@ weight = -2
|
|||
|
||||
[settings]
|
||||
layer_height = 0.2
|
||||
top_bottom_thickness = 1.2
|
||||
layer_height_0 = 0.5
|
||||
speed_print = 20
|
||||
speed_wall_x = 30
|
||||
wall_thickness = 2.1
|
||||
line_width = 0.7
|
||||
speed_print = 20
|
||||
top_bottom_thickness = 1.2
|
||||
infill_sparse_density = 20
|
||||
layer_height_0 = 0.5
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 40
|
||||
speed_topbottom = 20
|
||||
adhesion_type = brim
|
||||
cool_min_speed = 15
|
||||
line_width = 0.7
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 30
|
||||
cool_min_layer_time = 3
|
||||
cool_lift_head = True
|
||||
cool_fan_speed_min = 50
|
||||
cool_min_speed = 15
|
||||
cool_lift_head = True
|
||||
|
||||
|
|
|
@ -7,20 +7,20 @@ material = CPE
|
|||
weight = -2
|
||||
|
||||
[settings]
|
||||
infill_overlap = 17
|
||||
layer_height = 0.06
|
||||
wall_thickness = 0.88
|
||||
layer_height_0 = 0.15
|
||||
speed_wall_x = 25
|
||||
line_width = 0.22
|
||||
top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 20
|
||||
layer_height_0 = 0.15
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 30
|
||||
speed_topbottom = 20
|
||||
speed_wall_x = 25
|
||||
cool_min_layer_time = 2
|
||||
speed_print = 20
|
||||
line_width = 0.22
|
||||
infill_sparse_density = 22
|
||||
speed_wall_0 = 20
|
||||
adhesion_type = brim
|
||||
cool_lift_head = True
|
||||
cool_min_speed = 10
|
||||
cool_fan_speed_min = 50
|
||||
cool_lift_head = True
|
||||
infill_overlap = 17
|
||||
|
||||
|
|
|
@ -7,21 +7,20 @@ material = CPE
|
|||
weight = -1
|
||||
|
||||
[settings]
|
||||
infill_overlap = 17
|
||||
cool_min_layer_time = 3
|
||||
layer_height = 0.15
|
||||
wall_thickness = 0.7
|
||||
layer_height_0 = 0.26
|
||||
speed_print = 30
|
||||
speed_wall_x = 40
|
||||
top_bottom_thickness = 0.75
|
||||
speed_infill = 45
|
||||
speed_topbottom = 20
|
||||
speed_travel = 150
|
||||
line_width = 0.35
|
||||
top_bottom_thickness = 0.75
|
||||
infill_sparse_density = 18
|
||||
speed_print = 40
|
||||
layer_height_0 = 0.26
|
||||
speed_travel = 150
|
||||
speed_layer_0 = 30
|
||||
speed_infill = 45
|
||||
speed_wall_0 = 30
|
||||
adhesion_type = brim
|
||||
cool_lift_head = True
|
||||
cool_min_layer_time = 3
|
||||
cool_fan_speed_min = 50
|
||||
cool_min_speed = 10
|
||||
cool_lift_head = True
|
||||
infill_overlap = 17
|
||||
|
||||
|
|
|
@ -8,18 +8,20 @@ weight = -3
|
|||
|
||||
[settings]
|
||||
layer_height = 0.06
|
||||
top_bottom_thickness = 0.72
|
||||
layer_height_0 = 0.26
|
||||
speed_print = 20
|
||||
speed_wall_x = 30
|
||||
wall_thickness = 1.05
|
||||
line_width = 0.35
|
||||
top_bottom_thickness = 0.72
|
||||
infill_sparse_density = 22
|
||||
speed_print = 20
|
||||
layer_height_0 = 0.26
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 45
|
||||
speed_topbottom = 20
|
||||
adhesion_type = brim
|
||||
line_width = 0.35
|
||||
infill_sparse_density = 22
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 30
|
||||
cool_min_layer_time = 3
|
||||
cool_lift_head = True
|
||||
cool_fan_speed_min = 50
|
||||
cool_min_speed = 10
|
||||
cool_lift_head = True
|
||||
infill_overlap = 15
|
||||
|
||||
|
||||
|
|
|
@ -7,16 +7,19 @@ material = CPE
|
|||
weight = -2
|
||||
|
||||
[settings]
|
||||
layer_height_0 = 0.26
|
||||
speed_print = 20
|
||||
speed_wall_x = 30
|
||||
wall_thickness = 1.05
|
||||
line_width = 0.35
|
||||
top_bottom_thickness = 0.8
|
||||
speed_print = 30
|
||||
layer_height_0 = 0.26
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 45
|
||||
speed_topbottom = 20
|
||||
cool_min_layer_time = 3
|
||||
line_width = 0.35
|
||||
speed_wall_0 = 20
|
||||
adhesion_type = brim
|
||||
cool_lift_head = True
|
||||
speed_wall_x = 30
|
||||
cool_min_layer_time = 3
|
||||
cool_fan_speed_min = 50
|
||||
cool_min_speed = 10
|
||||
cool_lift_head = True
|
||||
infill_overlap = 15
|
||||
|
||||
|
|
|
@ -7,19 +7,20 @@ material = CPE
|
|||
weight = -2
|
||||
|
||||
[settings]
|
||||
infill_overlap = 17
|
||||
layer_height = 0.15
|
||||
top_bottom_thickness = 1.2
|
||||
layer_height_0 = 0.39
|
||||
speed_wall_x = 30
|
||||
wall_thickness = 1.59
|
||||
line_width = 0.53
|
||||
top_bottom_thickness = 1.2
|
||||
speed_print = 25
|
||||
layer_height_0 = 0.4
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 40
|
||||
speed_topbottom = 20
|
||||
cool_min_layer_time = 3
|
||||
speed_print = 20
|
||||
line_width = 0.53
|
||||
speed_wall_0 = 20
|
||||
adhesion_type = brim
|
||||
cool_lift_head = True
|
||||
speed_wall_x = 30
|
||||
cool_min_layer_time = 3
|
||||
cool_min_speed = 10
|
||||
cool_fan_speed_min = 50
|
||||
cool_lift_head = True
|
||||
infill_overlap = 17
|
||||
|
||||
|
|
|
@ -7,19 +7,19 @@ material = CPE
|
|||
weight = -2
|
||||
|
||||
[settings]
|
||||
infill_overlap = 17
|
||||
layer_height = 0.2
|
||||
top_bottom_thickness = 1.2
|
||||
layer_height_0 = 0.5
|
||||
speed_wall_x = 30
|
||||
wall_thickness = 2.1
|
||||
line_width = 0.7
|
||||
top_bottom_thickness = 1.2
|
||||
speed_print = 20
|
||||
layer_height_0 = 0.5
|
||||
speed_layer_0 = 20
|
||||
speed_infill = 40
|
||||
speed_topbottom = 20
|
||||
speed_wall_x = 30
|
||||
cool_min_layer_time = 3
|
||||
speed_print = 20
|
||||
line_width = 0.7
|
||||
speed_wall_0 = 20
|
||||
adhesion_type = brim
|
||||
cool_lift_head = True
|
||||
cool_min_speed = 10
|
||||
cool_fan_speed_min = 50
|
||||
cool_lift_head = True
|
||||
infill_overlap = 17
|
||||
|
||||
|
|
|
@ -10,22 +10,13 @@ weight = -2
|
|||
line_width = 0.22
|
||||
layer_height = 0.06
|
||||
layer_height_0 = 0.15
|
||||
shell_thickness = 0.88
|
||||
wall_thickness = 0.88
|
||||
top_bottom_thickness = 0.72
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 22
|
||||
infill_wipe_dist = 0.1
|
||||
retraction_amount = 6
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
speed_print = 20
|
||||
speed_infill = 30
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 25
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
adhesion_type = brim
|
||||
|
|
|
@ -10,23 +10,14 @@ weight = -1
|
|||
line_width = 0.35
|
||||
layer_height = 0.15
|
||||
layer_height_0 = 0.26
|
||||
shell_thickness = 0.7
|
||||
wall_thickness = 0.7
|
||||
top_bottom_thickness = 0.6
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 18
|
||||
infill_wipe_dist = 0.2
|
||||
retraction_amount = 5.5
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
speed_print = 40
|
||||
speed_infill = 60
|
||||
speed_wall_0 = 40
|
||||
speed_wall_x = 50
|
||||
speed_topbottom = 30
|
||||
speed_travel = 150
|
||||
speed_topbottom = 30
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
adhesion_type = brim
|
||||
|
|
|
@ -10,22 +10,13 @@ weight = -3
|
|||
line_width = 0.35
|
||||
layer_height = 0.06
|
||||
layer_height_0 = 0.26
|
||||
shell_thickness = 1.05
|
||||
wall_thickness = 1.05
|
||||
top_bottom_thickness = 0.84
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 22
|
||||
infill_wipe_dist = 0.18
|
||||
retraction_amount = 5.5
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
speed_print = 30
|
||||
speed_infill = 50
|
||||
speed_wall_0 = 30
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
adhesion_type = brim
|
|
@ -8,24 +8,14 @@ weight = -2
|
|||
|
||||
[settings]
|
||||
line_width = 0.35
|
||||
layer_height = 0.1
|
||||
layer_height_0 = 0.26
|
||||
shell_thickness = 1.05
|
||||
wall_thickness = 1.05
|
||||
top_bottom_thickness = 0.8
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 20
|
||||
infill_wipe_dist = 0.2
|
||||
retraction_amount = 5.5
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
speed_print = 30
|
||||
speed_infill = 50
|
||||
speed_wall_0 = 30
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
adhesion_type = brim
|
||||
|
|
|
@ -10,23 +10,14 @@ weight = -4
|
|||
line_width = 0.35
|
||||
layer_height = 0.04
|
||||
layer_height_0 = 0.26
|
||||
shell_thickness = 1.4
|
||||
wall_thickness = 1.4
|
||||
top_bottom_thickness = 1.12
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 25
|
||||
infill_wipe_dist = 0.2
|
||||
retraction_amount = 5.5
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
retraction_extrusion_window = 6
|
||||
speed_print = 30
|
||||
speed_infill = 50
|
||||
speed_wall_0 = 30
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
adhesion_type = brim
|
||||
|
|
|
@ -10,22 +10,12 @@ weight = -2
|
|||
line_width = 0.53
|
||||
layer_height = 0.15
|
||||
layer_height_0 = 0.4
|
||||
shell_thickness = 1.59
|
||||
wall_thickness = 1.59
|
||||
top_bottom_thickness = 1.2
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 20
|
||||
infill_wipe_dist = 0.3
|
||||
retraction_amount = 6
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
speed_print = 25
|
||||
speed_infill = 55
|
||||
speed_wall_0 = 25
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1.2
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 20
|
||||
adhesion_type = brim
|
||||
|
|
|
@ -10,22 +10,13 @@ weight = -2
|
|||
line_width = 0.7
|
||||
layer_height = 0.2
|
||||
layer_height_0 = 0.5
|
||||
shell_thickness = 2.1
|
||||
wall_thickness = 2.1
|
||||
top_bottom_thickness = 1.6
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 20
|
||||
infill_wipe_dist = 0.4
|
||||
retraction_amount = 6
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
speed_print = 20
|
||||
speed_infill = 40
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 30
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1.6
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 25
|
||||
adhesion_type = brim
|
||||
|
|
|
@ -1,32 +0,0 @@
|
|||
[general]
|
||||
version = 1
|
||||
name = Normal Quality
|
||||
machine_type = ultimaker2_olsson
|
||||
machine_variant = 0.25 mm
|
||||
weight = -2
|
||||
|
||||
[settings]
|
||||
line_width = 0.22
|
||||
layer_height = 0.06
|
||||
layer_height_0 = 0.15
|
||||
shell_thickness = 0.88
|
||||
top_bottom_thickness = 0.72
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 22
|
||||
infill_overlap = 0.022
|
||||
infill_wipe_dist = 0.1
|
||||
retraction_amount = 6
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
retraction_extrusion_window = 6
|
||||
speed_infill = 30
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 25
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
adhesion_type = brim
|
|
@ -1,33 +0,0 @@
|
|||
[general]
|
||||
version = 1
|
||||
name = Fast Print
|
||||
machine_type = ultimaker2_olsson
|
||||
machine_variant = 0.4 mm
|
||||
weight = -1
|
||||
|
||||
[settings]
|
||||
line_width = 0.35
|
||||
layer_height = 0.15
|
||||
layer_height_0 = 0.26
|
||||
shell_thickness = 0.7
|
||||
top_bottom_thickness = 0.6
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 18
|
||||
infill_overlap = 0.035
|
||||
infill_wipe_dist = 0.2
|
||||
retraction_amount = 5.5
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
retraction_extrusion_window = 6
|
||||
speed_infill = 60
|
||||
speed_wall_0 = 40
|
||||
speed_wall_x = 50
|
||||
speed_topbottom = 30
|
||||
speed_travel = 150
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
adhesion_type = brim
|
|
@ -1,32 +0,0 @@
|
|||
[general]
|
||||
version = 1
|
||||
name = High Quality
|
||||
machine_type = ultimaker2_olsson
|
||||
machine_variant = 0.4 mm
|
||||
weight = -3
|
||||
|
||||
[settings]
|
||||
line_width = 0.35
|
||||
layer_height = 0.06
|
||||
layer_height_0 = 0.26
|
||||
shell_thickness = 1.05
|
||||
top_bottom_thickness = 0.84
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 22
|
||||
infill_overlap = 0.035
|
||||
infill_wipe_dist = 0.2
|
||||
retraction_amount = 5.5
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
retraction_extrusion_window = 6
|
||||
speed_infill = 50
|
||||
speed_wall_0 = 30
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
adhesion_type = brim
|
|
@ -1,32 +0,0 @@
|
|||
[general]
|
||||
version = 1
|
||||
name = Normal Quality
|
||||
machine_type = ultimaker2_olsson
|
||||
machine_variant = 0.4 mm
|
||||
weight = -2
|
||||
|
||||
[settings]
|
||||
line_width = 0.35
|
||||
layer_height = 0.1
|
||||
layer_height_0 = 0.26
|
||||
shell_thickness = 1.05
|
||||
top_bottom_thickness = 0.8
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 20
|
||||
infill_overlap = 0.035
|
||||
infill_wipe_dist = 0.2
|
||||
retraction_amount = 5.5
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
retraction_extrusion_window = 6
|
||||
speed_infill = 50
|
||||
speed_wall_0 = 30
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
adhesion_type = brim
|
|
@ -1,32 +0,0 @@
|
|||
[general]
|
||||
version = 1
|
||||
name = Ulti Quality
|
||||
machine_type = ultimaker2_olsson
|
||||
machine_variant = 0.4 mm
|
||||
weight = -4
|
||||
|
||||
[settings]
|
||||
line_width = 0.35
|
||||
layer_height = 0.04
|
||||
layer_height_0 = 0.26
|
||||
shell_thickness = 1.4
|
||||
top_bottom_thickness = 1.12
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 25
|
||||
infill_overlap = 0.035
|
||||
infill_wipe_dist = 0.2
|
||||
retraction_amount = 5.5
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
retraction_extrusion_window = 6
|
||||
speed_infill = 50
|
||||
speed_wall_0 = 30
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 15
|
||||
adhesion_type = brim
|
|
@ -1,32 +0,0 @@
|
|||
[general]
|
||||
version = 1
|
||||
name = Normal Quality
|
||||
machine_type = ultimaker2_olsson
|
||||
machine_variant = 0.6 mm
|
||||
weight = -2
|
||||
|
||||
[settings]
|
||||
line_width = 0.53
|
||||
layer_height = 0.15
|
||||
layer_height_0 = 0.4
|
||||
shell_thickness = 1.59
|
||||
top_bottom_thickness = 1.2
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 20
|
||||
infill_overlap = 0.053
|
||||
infill_wipe_dist = 0.3
|
||||
retraction_amount = 6
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
retraction_extrusion_window = 6
|
||||
speed_infill = 55
|
||||
speed_wall_0 = 25
|
||||
speed_wall_x = 40
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1.2
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 20
|
||||
adhesion_type = brim
|
|
@ -1,32 +0,0 @@
|
|||
[general]
|
||||
version = 1
|
||||
name = Normal Quality
|
||||
machine_type = ultimaker2_olsson
|
||||
machine_variant = 0.8 mm
|
||||
weight = -2
|
||||
|
||||
[settings]
|
||||
line_width = 0.7
|
||||
layer_height = 0.2
|
||||
layer_height_0 = 0.5
|
||||
shell_thickness = 2.1
|
||||
top_bottom_thickness = 1.6
|
||||
top_bottom_pattern = lines
|
||||
infill_sparse_density = 20
|
||||
infill_overlap = 0.07
|
||||
infill_wipe_dist = 0.4
|
||||
retraction_amount = 6
|
||||
retraction_min_travel = 0.5
|
||||
retraction_count_max = 30
|
||||
retraction_extrusion_window = 6
|
||||
speed_infill = 40
|
||||
speed_wall_0 = 20
|
||||
speed_wall_x = 30
|
||||
speed_topbottom = 20
|
||||
speed_layer_0 = 25
|
||||
skirt_speed = 25
|
||||
speed_slowdown_layers = 2
|
||||
travel_avoid_distance = 1.6
|
||||
cool_fan_full_layer = 2
|
||||
cool_min_layer_time_fan_speed_max = 25
|
||||
adhesion_type = brim
|
|
@ -163,7 +163,7 @@
|
|||
"default_arrow": [0.8, 0.8],
|
||||
"logo": [9.5, 2.0],
|
||||
|
||||
"sidebar": [30.0, 10.0],
|
||||
"sidebar": [35.0, 10.0],
|
||||
"sidebar_header": [0.0, 4.0],
|
||||
"sidebar_header_mode_toggle": [0.0, 2.0],
|
||||
"sidebar_lining": [0.5, 0.5],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue