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:
Ghostkeeper 2016-04-04 18:49:09 +02:00
commit 0684cee681
86 changed files with 2336 additions and 3490 deletions

View file

@ -163,6 +163,9 @@ class BuildVolume(SceneNode):
if self._active_instance: if self._active_instance:
self._width = self._active_instance.getMachineSettingValue("machine_width") 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._height = self._active_instance.getMachineSettingValue("machine_height")
self._depth = self._active_instance.getMachineSettingValue("machine_depth") self._depth = self._active_instance.getMachineSettingValue("machine_depth")
@ -180,11 +183,19 @@ class BuildVolume(SceneNode):
self._updateDisallowedAreas() self._updateDisallowedAreas()
self.rebuild() self.rebuild()
def _onSettingValueChanged(self, setting): def _onSettingValueChanged(self, setting_key):
if setting in self._skirt_settings: 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._updateDisallowedAreas()
self.rebuild() self.rebuild()
def _updateDisallowedAreas(self): def _updateDisallowedAreas(self):
if not self._active_instance or not self._active_profile: if not self._active_instance or not self._active_profile:
return return
@ -257,7 +268,7 @@ class BuildVolume(SceneNode):
skirt_line_count = profile.getSettingValue("skirt_line_count") skirt_line_count = profile.getSettingValue("skirt_line_count")
skirt_size = skirt_distance + (skirt_line_count * profile.getSettingValue("skirt_line_width")) skirt_size = skirt_distance + (skirt_line_count * profile.getSettingValue("skirt_line_width"))
elif adhesion_type == "brim": 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": elif adhesion_type == "raft":
skirt_size = profile.getSettingValue("raft_margin") skirt_size = profile.getSettingValue("raft_margin")

View file

@ -88,9 +88,3 @@ class ConvexHullNode(SceneNode):
if not node: if not node:
return return
if node.hasDecoration("getProfile"):
self._color.setR(0.75)
if node.hasDecoration("getSetting"):
self._color.setG(0.75)

View file

@ -21,8 +21,6 @@ class OneAtATimeIterator(Iterator.Iterator):
if not type(node) is SceneNode: if not type(node) is SceneNode:
continue continue
if node.getBoundingBox().height > Application.getInstance().getMachineManager().getWorkingProfile().getSettingValue("gantry_height"):
return
if node.callDecoration("getConvexHull"): if node.callDecoration("getConvexHull"):
node_list.append(node) node_list.append(node)

View file

@ -61,11 +61,6 @@ class PlatformPhysics:
# Mark the node as outside the build volume if the bounding box test fails. # Mark the node as outside the build volume if the bounding box test fails.
if build_volume_bounding_box.intersectsBox(bbox) != AxisAlignedBox.IntersectionResult.FullIntersection: if build_volume_bounding_box.intersectsBox(bbox) != AxisAlignedBox.IntersectionResult.FullIntersection:
node._outside_buildarea = True 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 it downwards if bottom is above platform
move_vector = Vector() move_vector = Vector()

View file

@ -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]) 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() 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. #TODO: We currently do not check for normals and simply recalculate them.
mesh.calculateNormals() mesh.calculateNormals()
node.setMeshData(mesh) 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) transformation = root.findall("./3mf:build/3mf:item[@objectid='{0}']".format(entry.get("id")), self._namespaces)
if transformation: if transformation:
transformation = transformation[0] transformation = transformation[0]
try:
if transformation.get("transform"): if transformation.get("transform"):
splitted_transformation = transformation.get("transform").split() splitted_transformation = transformation.get("transform").split()
## Transformation is saved as: ## Transformation is saved as:
@ -96,22 +101,10 @@ class ThreeMFReader(MeshReader):
temp_mat._data[1,3] = splitted_transformation[10] temp_mat._data[1,3] = splitted_transformation[10]
temp_mat._data[2,3] = splitted_transformation[11] 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) result.addChild(node)
Job.yieldThread() Job.yieldThread()

View file

@ -12,8 +12,8 @@ UM.Dialog
{ {
id: base id: base
minimumWidth: 400 minimumWidth: 400
minimumHeight: 300; minimumHeight: 300
title: "Changelog" title: catalog.i18nc("@label", "Changelog")
ScrollView ScrollView
{ {
@ -28,8 +28,13 @@ UM.Dialog
} }
Button Button
{ {
UM.I18nCatalog
{
id: catalog
name: "cura"
}
anchors.bottom:parent.bottom anchors.bottom:parent.bottom
text: "close" text: catalog.i18nc("@action:button", "Close")
onClicked: base.hide() onClicked: base.hide()
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
} }

View file

@ -12,7 +12,7 @@ def getMetaData():
"name": catalog.i18nc("@label", "Changelog"), "name": catalog.i18nc("@label", "Changelog"),
"author": "Ultimaker", "author": "Ultimaker",
"version": "1.0", "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 "api": 2
} }
} }

View file

@ -47,7 +47,9 @@ class CuraEngineBackend(Backend):
self._onActiveViewChanged() self._onActiveViewChanged()
self._stored_layer_data = None 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 self._profile = None
Application.getInstance().getMachineManager().activeProfileChanged.connect(self._onActiveProfileChanged) Application.getInstance().getMachineManager().activeProfileChanged.connect(self._onActiveProfileChanged)
@ -104,6 +106,7 @@ class CuraEngineBackend(Backend):
## Perform a slice of the scene. ## Perform a slice of the scene.
def slice(self): def slice(self):
if not self._enabled: if not self._enabled:
return return
@ -114,7 +117,6 @@ class CuraEngineBackend(Backend):
self._message.hide() self._message.hide()
self._message = None self._message = None
self.slicingCancelled.emit()
return return
if self._process_layers_job: if self._process_layers_job:
@ -150,14 +152,18 @@ class CuraEngineBackend(Backend):
self._slicing = False self._slicing = False
self._restart = True self._restart = True
self.slicingCancelled.emit() self.slicingCancelled.emit()
self.processingProgress.emit(0)
Logger.log("d", "Attempting to kill the engine process")
if self._process is not None: if self._process is not None:
Logger.log("d", "Killing engine process") Logger.log("d", "Killing engine process")
try: try:
self._process.terminate() self._process.terminate()
Logger.log("d", "Engine process is killed. Recieved return code %s", self._process.wait())
self._process = None self._process = None
except: # terminating a process that is already terminating causes an exception, silently ignore this. #self._createSocket() # Re create the socket
pass except Exception as e: # terminating a process that is already terminating causes an exception, silently ignore this.
Logger.log("d", "Engine process is killed") Logger.log("d", "Exception occured while trying to kill the engine %s", str(e))
def _onStartSliceCompleted(self, job): def _onStartSliceCompleted(self, job):
if job.getError() or job.getResult() != True: if job.getError() or job.getResult() != True:
@ -184,8 +190,7 @@ class CuraEngineBackend(Backend):
def _onSocketError(self, error): def _onSocketError(self, error):
super()._onSocketError(error) super()._onSocketError(error)
self._slicing = False self._terminate()
self.processingProgress.emit(0)
if error.getErrorCode() not in [Arcus.ErrorCode.BindFailedError, Arcus.ErrorCode.ConnectionResetError, Arcus.ErrorCode.Debug]: 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") Logger.log("e", "A socket error caused the connection to be reset")
@ -277,9 +282,9 @@ class CuraEngineBackend(Backend):
def _onInstanceChanged(self): def _onInstanceChanged(self):
self._terminate() self._terminate()
self.slicingCancelled.emit()
def _onBackendQuit(self): def _onBackendQuit(self):
if not self._restart and self._process: 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._process = None
self._createSocket() self._createSocket()

View file

@ -12,7 +12,7 @@ def getMetaData():
"plugin": { "plugin": {
"name": catalog.i18nc("@label", "CuraEngine Backend"), "name": catalog.i18nc("@label", "CuraEngine Backend"),
"author": "Ultimaker", "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 "api": 2
} }
} }

View file

@ -12,7 +12,7 @@ def getMetaData():
"name": catalog.i18nc("@label", "GCode Writer"), "name": catalog.i18nc("@label", "GCode Writer"),
"author": "Ultimaker", "author": "Ultimaker",
"version": "1.0", "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 "api": 2
}, },

View file

@ -11,7 +11,7 @@ def getMetaData():
"plugin": { "plugin": {
"name": catalog.i18nc("@label", "Removable Drive Output Device Plugin"), "name": catalog.i18nc("@label", "Removable Drive Output Device Plugin"),
"author": "Ultimaker B.V.", "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", "version": "1.0",
"api": 2 "api": 2
} }

View file

@ -12,7 +12,7 @@ def getMetaData():
"name": i18n_catalog.i18nc("@label", "Solid View"), "name": i18n_catalog.i18nc("@label", "Solid View"),
"author": "Ultimaker", "author": "Ultimaker",
"version": "1.0", "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 "api": 2
}, },
"view": { "view": {

File diff suppressed because it is too large Load diff

View file

@ -33,7 +33,6 @@ msgid "Open Web Page"
msgstr "Webseite öffnen" msgstr "Webseite öffnen"
#: /home/tamara/2.1/Cura/cura/CuraApplication.py:158 #: /home/tamara/2.1/Cura/cura/CuraApplication.py:158
#, fuzzy
msgctxt "@info:progress" msgctxt "@info:progress"
msgid "Setting up scene..." msgid "Setting up scene..."
msgstr "Die Szene wird eingerichtet..." msgstr "Die Szene wird eingerichtet..."
@ -55,14 +54,12 @@ msgid "Cura Profile Reader"
msgstr "Cura-Profil-Reader" msgstr "Cura-Profil-Reader"
#: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides support for importing Cura profiles." msgid "Provides support for importing Cura profiles."
msgstr "Ermöglicht das Importieren von Cura-Profilen." msgstr "Ermöglicht das Importieren von Cura-Profilen."
#: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:21 #: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:21
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:21 #: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:21
#, fuzzy
msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
msgid "Cura Profile" msgid "Cura Profile"
msgstr "Cura-Profil" msgstr "Cura-Profil"
@ -196,37 +193,31 @@ msgid "CuraEngine Backend"
msgstr "CuraEngine Backend" msgstr "CuraEngine Backend"
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides the link to the CuraEngine slicing backend" msgid "Provides the link to the CuraEngine slicing backend"
msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her" msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her"
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "GCode Writer" msgid "GCode Writer"
msgstr "G-Code-Writer" msgstr "G-Code-Writer"
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Writes GCode to a file" msgid "Writes GCode to a file"
msgstr "Schreibt G-Code in eine Datei" msgstr "Schreibt G-Code in eine Datei"
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22 #: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
#, fuzzy
msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
msgid "GCode File" msgid "GCode File"
msgstr "G-Code-Datei" msgstr "G-Code-Datei"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:49 #: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:49
#, fuzzy
msgctxt "@title:menu" msgctxt "@title:menu"
msgid "Firmware" msgid "Firmware"
msgstr "Firmware" msgstr "Firmware"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:50 #: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:50
#, fuzzy
msgctxt "@item:inmenu" msgctxt "@item:inmenu"
msgid "Update Firmware" msgid "Update Firmware"
msgstr "Firmware aktualisieren" msgstr "Firmware aktualisieren"
@ -257,7 +248,6 @@ msgid "USB printing"
msgstr "USB-Drucken" msgstr "USB-Drucken"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/__init__.py:17 #: /home/tamara/2.1/Cura/plugins/USBPrinting/__init__.py:17
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." 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." 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." msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden."
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Cura Profile Writer" msgid "Cura Profile Writer"
msgstr "Cura-Profil-Writer" msgstr "Cura-Profil-Writer"
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides support for exporting Cura profiles." msgid "Provides support for exporting Cura profiles."
msgstr "Ermöglicht das Exportieren von Cura-Profilen." msgstr "Ermöglicht das Exportieren von Cura-Profilen."
#: /home/tamara/2.1/Cura/plugins/ImageReader/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/ImageReader/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Image Reader" msgid "Image Reader"
msgstr "Bild-Reader" msgstr "Bild-Reader"
@ -331,13 +318,11 @@ msgid "GIF Image"
msgstr "GIF-Bilddatei" msgstr "GIF-Bilddatei"
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "GCode Profile Reader" msgid "GCode Profile Reader"
msgstr "G-Code-Writer" msgstr "G-Code-Writer"
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides support for importing profiles from g-code files." msgid "Provides support for importing profiles from g-code files."
msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien."
@ -368,13 +353,11 @@ msgid "Layer View"
msgstr "Schichtenansicht" msgstr "Schichtenansicht"
#: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:16 #: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:16
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides the Layer view." msgid "Provides the Layer view."
msgstr "Bietet eine Schichtenansicht." msgstr "Bietet eine Schichtenansicht."
#: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:20 #: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:20
#, fuzzy
msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
msgid "Layers" msgid "Layers"
msgstr "Schichten" msgstr "Schichten"
@ -395,13 +378,11 @@ msgid "Per Object Settings Tool"
msgstr "Einstellungstool pro Objekt" msgstr "Einstellungstool pro Objekt"
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides the Per Object Settings." 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 #: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:19
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Per Object Settings" msgid "Per Object Settings"
msgstr "Einstellungen pro Objekt" msgstr "Einstellungen pro Objekt"
@ -417,7 +398,6 @@ msgid "Legacy Cura Profile Reader"
msgstr "Cura-Vorgängerprofil-Reader" msgstr "Cura-Vorgängerprofil-Reader"
#: /home/tamara/2.1/Cura/plugins/LegacyProfileReader/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/LegacyProfileReader/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides support for importing profiles from legacy Cura versions." 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." 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" msgstr "Umschalten auf Vo&llbild-Modus"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:57 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:57
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Undo" msgid "&Undo"
msgstr "&Rückgängig machen" msgstr "&Rückgängig machen"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:65 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:65
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Redo" msgid "&Redo"
msgstr "&Wiederholen" msgstr "&Wiederholen"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:73 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:73
#, fuzzy
msgctxt "@action:inmenu menubar:file" msgctxt "@action:inmenu menubar:file"
msgid "&Quit" msgid "&Quit"
msgstr "&Beenden" msgstr "&Beenden"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:81 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:81
#, fuzzy
msgctxt "@action:inmenu menubar:settings" msgctxt "@action:inmenu menubar:settings"
msgid "&Preferences..." msgid "&Preferences..."
msgstr "&Einstellungen..." msgstr "&Einstellungen..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:88 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:88
#, fuzzy
msgctxt "@action:inmenu menubar:printer" msgctxt "@action:inmenu menubar:printer"
msgid "&Add Printer..." msgid "&Add Printer..."
msgstr "&Drucker hinzufügen..." msgstr "&Drucker hinzufügen..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:94 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:94
#, fuzzy
msgctxt "@action:inmenu menubar:printer" msgctxt "@action:inmenu menubar:printer"
msgid "Manage Pr&inters..." msgid "Manage Pr&inters..."
msgstr "Dr&ucker verwalten..." msgstr "Dr&ucker verwalten..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:101 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:101
#, fuzzy
msgctxt "@action:inmenu menubar:profile" msgctxt "@action:inmenu menubar:profile"
msgid "Manage Profiles..." msgid "Manage Profiles..."
msgstr "Profile verwalten..." msgstr "Profile verwalten..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:108 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:108
#, fuzzy
msgctxt "@action:inmenu menubar:help" msgctxt "@action:inmenu menubar:help"
msgid "Show Online &Documentation" msgid "Show Online &Documentation"
msgstr "Online-&Dokumentation anzeigen" msgstr "Online-&Dokumentation anzeigen"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:115 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:115
#, fuzzy
msgctxt "@action:inmenu menubar:help" msgctxt "@action:inmenu menubar:help"
msgid "Report a &Bug" msgid "Report a &Bug"
msgstr "&Fehler melden" msgstr "&Fehler melden"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:122 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:122
#, fuzzy
msgctxt "@action:inmenu menubar:help" msgctxt "@action:inmenu menubar:help"
msgid "&About..." msgid "&About..."
msgstr "&Über..." msgstr "&Über..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:129 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:129
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "Delete &Selection" msgid "Delete &Selection"
msgstr "&Auswahl löschen" msgstr "&Auswahl löschen"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:137 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:137
#, fuzzy
msgctxt "@action:inmenu" msgctxt "@action:inmenu"
msgid "Delete Object" msgid "Delete Object"
msgstr "Objekt löschen" msgstr "Objekt löschen"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:144 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:144
#, fuzzy
msgctxt "@action:inmenu" msgctxt "@action:inmenu"
msgid "Ce&nter Object on Platform" msgid "Ce&nter Object on Platform"
msgstr "Objekt auf Druckplatte ze&ntrieren" msgstr "Objekt auf Druckplatte ze&ntrieren"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:150 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:150
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Group Objects" msgid "&Group Objects"
msgstr "Objekte &gruppieren" msgstr "Objekte &gruppieren"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:158 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:158
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "Ungroup Objects" msgid "Ungroup Objects"
msgstr "Gruppierung für Objekte aufheben" msgstr "Gruppierung für Objekte aufheben"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:166 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:166
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Merge Objects" msgid "&Merge Objects"
msgstr "Objekt &zusammenführen" msgstr "Objekt &zusammenführen"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:174 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:174
#, fuzzy
msgctxt "@action:inmenu" msgctxt "@action:inmenu"
msgid "&Duplicate Object" msgid "&Duplicate Object"
msgstr "Objekt &duplizieren" msgstr "Objekt &duplizieren"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:181 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:181
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Clear Build Platform" msgid "&Clear Build Platform"
msgstr "Druckplatte &reinigen" msgstr "Druckplatte &reinigen"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:189 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:189
#, fuzzy
msgctxt "@action:inmenu menubar:file" msgctxt "@action:inmenu menubar:file"
msgid "Re&load All Objects" msgid "Re&load All Objects"
msgstr "Alle Objekte neu &laden" msgstr "Alle Objekte neu &laden"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:196 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:196
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "Reset All Object Positions" msgid "Reset All Object Positions"
msgstr "Alle Objektpositionen zurücksetzen" msgstr "Alle Objektpositionen zurücksetzen"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:202 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:202
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "Reset All Object &Transformations" msgid "Reset All Object &Transformations"
msgstr "Alle Objekt&transformationen zurücksetzen" msgstr "Alle Objekt&transformationen zurücksetzen"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:208 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:208
#, fuzzy
msgctxt "@action:inmenu menubar:file" msgctxt "@action:inmenu menubar:file"
msgid "&Open File..." msgid "&Open File..."
msgstr "&Datei öffnen..." msgstr "&Datei öffnen..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:216 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:216
#, fuzzy
msgctxt "@action:inmenu menubar:help" msgctxt "@action:inmenu menubar:help"
msgid "Show Engine &Log..." msgid "Show Engine &Log..."
msgstr "Engine-&Protokoll anzeigen..." msgstr "Engine-&Protokoll anzeigen..."
@ -827,7 +784,6 @@ msgid "Hollow"
msgstr "Hohl" msgstr "Hohl"
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:239 #: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:239
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "No (0%) infill will leave your model hollow at the cost of low strength" 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" 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" msgstr "Dünn"
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:245 #: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:245
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Light (20%) infill will give your model an average strength" msgid "Light (20%) infill will give your model an average strength"
msgstr "Eine dünne (20 %) Füllung gibt Ihrem Modell eine durchschnittliche Festigkeit" 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" msgstr "Eine solide (100 %) Füllung macht Ihr Modell vollständig massiv"
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:276 #: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:276
#, fuzzy
msgctxt "@label:listbox" msgctxt "@label:listbox"
msgid "Helpers:" msgid "Helpers:"
msgstr "Helfer:" msgstr "Helfer:"
@ -941,7 +895,6 @@ msgid "Ensure objects are kept apart"
msgstr "Stellen Sie sicher, dass die Objekte getrennt gehalten werden" msgstr "Stellen Sie sicher, dass die Objekte getrennt gehalten werden"
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:131 #: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:131
#, fuzzy
msgctxt "@info:tooltip" msgctxt "@info:tooltip"
msgid "Should opened files be scaled to the build volume if they are too large?" 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?" 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." 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 #: /home/tamara/2.1/Cura/resources/qml/ViewPage.qml:42
#, fuzzy
msgctxt "@option:check" msgctxt "@option:check"
msgid "Display overhang" msgid "Display overhang"
msgstr "Überhang anzeigen" 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:" 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 #: /home/tamara/2.1/Cura/resources/qml/WizardPages/SelectUpgradedParts.qml:57
#, fuzzy
msgctxt "@option:check" msgctxt "@option:check"
msgid "Extruder driver ugrades" msgid "Extruder driver ugrades"
msgstr "Upgrades für Extruder-Driver" msgstr "Upgrades für Extruder-Driver"
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/SelectUpgradedParts.qml:63 #: /home/tamara/2.1/Cura/resources/qml/WizardPages/SelectUpgradedParts.qml:63
#, fuzzy
msgctxt "@option:check" msgctxt "@option:check"
msgid "Heated printer bed" msgid "Heated printer bed"
msgstr "Heizbares Druckbett" 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." 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 #: /home/tamara/2.1/Cura/resources/qml/WizardPages/UpgradeFirmware.qml:64
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Upgrade to Marlin Firmware" msgid "Upgrade to Marlin Firmware"
msgstr "Auf Marlin-Firmware aktualisieren" msgstr "Auf Marlin-Firmware aktualisieren"
@ -1224,183 +1173,164 @@ msgid "Select the active output device"
msgstr "Wählen Sie das aktive Ausgabegerät" msgstr "Wählen Sie das aktive Ausgabegerät"
#: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:15 #: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:15
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "About Cura" msgid "About Cura"
msgstr "Über Cura" msgstr "Über Cura"
#: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:54 #: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:54
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "End-to-end solution for fused filament 3D printing." msgid "End-to-end solution for fused filament 3D printing."
msgstr "Komplettlösung für den 3D-Druck mit geschmolzenem Filament." msgstr "Komplettlösung für den 3D-Druck mit geschmolzenem Filament."
#: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:66 #: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:66
#, fuzzy
msgctxt "@info:credit" msgctxt "@info:credit"
msgid "Cura has been developed by Ultimaker B.V. in cooperation with the community." 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." msgstr "Cura wurde von Ultimaker B.V. in Zusammenarbeit mit der Community entwickelt."
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:16 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:16
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "Cura" msgid "Cura"
msgstr "Cura" msgstr "Cura"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:53 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:53
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&File" msgid "&File"
msgstr "&Datei" msgstr "&Datei"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:62 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:62
#, fuzzy
msgctxt "@title:menu menubar:file" msgctxt "@title:menu menubar:file"
msgid "Open &Recent" msgid "Open &Recent"
msgstr "&Zuletzt geöffnet" msgstr "&Zuletzt geöffnet"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:92 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:92
#, fuzzy
msgctxt "@action:inmenu menubar:file" msgctxt "@action:inmenu menubar:file"
msgid "&Save Selection to File" msgid "&Save Selection to File"
msgstr "Auswahl als Datei &speichern" msgstr "Auswahl als Datei &speichern"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:100 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:100
#, fuzzy
msgctxt "@title:menu menubar:file" msgctxt "@title:menu menubar:file"
msgid "Save &All" msgid "Save &All"
msgstr "&Alles speichern" msgstr "&Alles speichern"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:128 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:128
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&Edit" msgid "&Edit"
msgstr "&Bearbeiten" msgstr "&Bearbeiten"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:145 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:145
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&View" msgid "&View"
msgstr "&Ansicht" msgstr "&Ansicht"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:167 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:167
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&Printer" msgid "&Printer"
msgstr "Dr&ucker" msgstr "Dr&ucker"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:213 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:213
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "P&rofile" msgid "P&rofile"
msgstr "&Profil" msgstr "&Profil"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:240 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:240
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "E&xtensions" msgid "E&xtensions"
msgstr "Er&weiterungen" msgstr "Er&weiterungen"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:273 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:273
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&Settings" msgid "&Settings"
msgstr "&Einstellungen" msgstr "&Einstellungen"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:281 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:281
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&Help" msgid "&Help"
msgstr "&Hilfe" msgstr "&Hilfe"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:366 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:366
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Open File" msgid "Open File"
msgstr "Datei öffnen" msgstr "Datei öffnen"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:410 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:410
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "View Mode" msgid "View Mode"
msgstr "Ansichtsmodus" msgstr "Ansichtsmodus"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:495 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:495
#, fuzzy
msgctxt "@title:tab" msgctxt "@title:tab"
msgid "View" msgid "View"
msgstr "Ansicht" msgstr "Ansicht"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:644 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:644
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "Open file" msgid "Open file"
msgstr "Datei öffnen" msgstr "Datei öffnen"
#~ msgctxt "@label" msgctxt "@label"
#~ msgid "Variant:" msgid "Variant:"
#~ msgstr "Variante:" msgstr "Variante:"
#~ msgctxt "@label" msgctxt "@label"
#~ msgid "Global Profile:" msgid "Global Profile:"
#~ msgstr "Globales Profil:" msgstr "Globales Profil:"
#~ msgctxt "@option:check" msgctxt "@option:check"
#~ msgid "Heated printer bed (standard kit)" msgid "Heated printer bed (standard kit)"
#~ msgstr "Heizbares Druckbett (Standard-Kit)" msgstr "Heizbares Druckbett (Standard-Kit)"
#~ msgctxt "@option:check" msgctxt "@option:check"
#~ msgid "Dual extrusion (experimental)" msgid "Dual extrusion (experimental)"
#~ msgstr "Dual-Extruder (experimental)" msgstr "Dual-Extruder (experimental)"
#~ msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
#~ msgid "Bulgarian" msgid "Bulgarian"
#~ msgstr "Bulgarisch" msgstr "Bulgarisch"
#~ msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
#~ msgid "Czech" msgid "Czech"
#~ msgstr "Tschechisch" msgstr "Tschechisch"
#~ msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
#~ msgid "Italian" msgid "Italian"
#~ msgstr "Italienisch" msgstr "Italienisch"
#~ msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
#~ msgid "Russian" msgid "Russian"
#~ msgstr "Russisch" msgstr "Russisch"
#~ msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
#~ msgid "Spanish" msgid "Spanish"
#~ msgstr "Spanisch" msgstr "Spanisch"
#~ msgctxt "@label:textbox" msgctxt "@label:textbox"
#~ msgid "Printjob Name" msgid "Printjob Name"
#~ msgstr "Name des Druckauftrags" msgstr "Name des Druckauftrags"
#~ msgctxt "@label" msgctxt "@label"
#~ msgid "Sparse" msgid "Sparse"
#~ msgstr "Dünn" msgstr "Dünn"
#~ msgctxt "@option:check" msgctxt "@option:check"
#~ msgid "Enable Skirt Adhesion" msgid "Enable Skirt Adhesion"
#~ msgstr "Adhäsion der Unterlage aktivieren" msgstr "Adhäsion der Unterlage aktivieren"
#~ msgctxt "@option:check" msgctxt "@option:check"
#~ msgid "Enable Support" msgid "Enable Support"
#~ msgstr "Stützstruktur aktivieren" msgstr "Stützstruktur aktivieren"
#~ msgctxt "@label:listbox" msgctxt "@label:listbox"
#~ msgid "Machine:" msgid "Machine:"
#~ msgstr "Gerät:" msgstr "Gerät:"
#~ msgctxt "@title:menu" msgctxt "@title:menu"
#~ msgid "&Machine" msgid "&Machine"
#~ msgstr "&Gerät" msgstr "&Gerät"
#~ msgctxt "Save button tooltip" msgctxt "Save button tooltip"
#~ msgid "Save to Disk" msgid "Save to Disk"
#~ msgstr "Auf Datenträger speichern" msgstr "Auf Datenträger speichern"
#~ msgctxt "Message action tooltip, {0} is sdcard" msgctxt "Message action tooltip, {0} is sdcard"
#~ msgid "Eject SD Card {0}" msgid "Eject SD Card {0}"
#~ msgstr "SD-Karte auswerfen {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

View file

@ -3,7 +3,6 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
# #
#, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cura 2.1\n" "Project-Id-Version: Cura 2.1\n"
@ -38,13 +37,11 @@ msgid "Open Web Page"
msgstr "Avaa verkkosivu" msgstr "Avaa verkkosivu"
#: /home/tamara/2.1/Cura/cura/CuraApplication.py:158 #: /home/tamara/2.1/Cura/cura/CuraApplication.py:158
#, fuzzy
msgctxt "@info:progress" msgctxt "@info:progress"
msgid "Setting up scene..." msgid "Setting up scene..."
msgstr "Asetetaan näkymää..." msgstr "Asetetaan näkymää..."
#: /home/tamara/2.1/Cura/cura/CuraApplication.py:192 #: /home/tamara/2.1/Cura/cura/CuraApplication.py:192
#, fuzzy
msgctxt "@info:progress" msgctxt "@info:progress"
msgid "Loading interface..." msgid "Loading interface..."
msgstr "Ladataan käyttöliittymää..." msgstr "Ladataan käyttöliittymää..."
@ -61,26 +58,22 @@ msgid "Cura Profile Reader"
msgstr "Cura-profiilin lukija" msgstr "Cura-profiilin lukija"
#: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides support for importing Cura profiles." msgid "Provides support for importing Cura profiles."
msgstr "Tukee Cura-profiilien tuontia." msgstr "Tukee Cura-profiilien tuontia."
#: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:21 #: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:21
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:21 #: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:21
#, fuzzy
msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
msgid "Cura Profile" msgid "Cura Profile"
msgstr "Cura-profiili" msgstr "Cura-profiili"
#: /home/tamara/2.1/Cura/plugins/XRayView/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/XRayView/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "X-Ray View" msgid "X-Ray View"
msgstr "Kerrosnäkymä" msgstr "Kerrosnäkymä"
#: /home/tamara/2.1/Cura/plugins/XRayView/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/XRayView/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides the X-Ray view." msgid "Provides the X-Ray view."
msgstr "Näyttää kerrosnäkymän." 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" msgstr "Tukee irrotettavan aseman kytkemistä lennossa ja sille kirjoittamista"
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34 #: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
#, fuzzy
msgctxt "@item:inmenu" msgctxt "@item:inmenu"
msgid "Show Changelog" msgid "Show Changelog"
msgstr "Näytä muutosloki" msgstr "Näytä muutosloki"
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Changelog" msgid "Changelog"
msgstr "Muutosloki" msgstr "Muutosloki"
@ -206,7 +197,6 @@ msgid "CuraEngine Backend"
msgstr "CuraEngine-taustaosa" msgstr "CuraEngine-taustaosa"
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides the link to the CuraEngine slicing backend" msgid "Provides the link to the CuraEngine slicing backend"
msgstr "Linkki CuraEngine-viipalointiin taustalla" msgstr "Linkki CuraEngine-viipalointiin taustalla"
@ -222,7 +212,6 @@ msgid "Writes GCode to a file"
msgstr "Kirjoittaa GCodea tiedostoon" msgstr "Kirjoittaa GCodea tiedostoon"
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22 #: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
#, fuzzy
msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
msgid "GCode File" msgid "GCode File"
msgstr "GCode-tiedosto" msgstr "GCode-tiedosto"
@ -233,7 +222,6 @@ msgid "Firmware"
msgstr "Laiteohjelmisto" msgstr "Laiteohjelmisto"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:50 #: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:50
#, fuzzy
msgctxt "@item:inmenu" msgctxt "@item:inmenu"
msgid "Update Firmware" msgid "Update Firmware"
msgstr "Päivitä laiteohjelmisto" 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ä." msgstr "Lähettää anonyymiä viipalointitietoa. Voidaan lisäasetuksista kytkeä pois käytöstä."
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Cura Profile Writer" msgid "Cura Profile Writer"
msgstr "Cura-profiilin kirjoitin" msgstr "Cura-profiilin kirjoitin"
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides support for exporting Cura profiles." msgid "Provides support for exporting Cura profiles."
msgstr "Tukee Cura-profiilien vientiä." msgstr "Tukee Cura-profiilien vientiä."
#: /home/tamara/2.1/Cura/plugins/ImageReader/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/ImageReader/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Image Reader" msgid "Image Reader"
msgstr "Kuvanlukija" msgstr "Kuvanlukija"
@ -339,37 +324,31 @@ msgid "GIF Image"
msgstr "GIF-kuva" msgstr "GIF-kuva"
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "GCode Profile Reader" msgid "GCode Profile Reader"
msgstr "GCode-profiilin lukija" msgstr "GCode-profiilin lukija"
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides support for importing profiles from g-code files." msgid "Provides support for importing profiles from g-code files."
msgstr "Tukee profiilien tuontia GCode-tiedostoista." msgstr "Tukee profiilien tuontia GCode-tiedostoista."
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:21 #: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:21
#, fuzzy
msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
msgid "G-code File" msgid "G-code File"
msgstr "GCode-tiedosto" msgstr "GCode-tiedosto"
#: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Solid View" msgid "Solid View"
msgstr "Kiinteä näkymä" msgstr "Kiinteä näkymä"
#: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides a normal solid mesh view." msgid "Provides a normal solid mesh view."
msgstr "Näyttää normaalin kiinteän verkkonäkymän." msgstr "Näyttää normaalin kiinteän verkkonäkymän."
#: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:19 #: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:19
#, fuzzy
msgctxt "@item:inmenu" msgctxt "@item:inmenu"
msgid "Solid" msgid "Solid"
msgstr "Kiinteä" msgstr "Kiinteä"
@ -405,13 +384,11 @@ msgid "Per Object Settings Tool"
msgstr "Kappalekohtaisten asetusten työkalu" msgstr "Kappalekohtaisten asetusten työkalu"
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides the Per Object Settings." msgid "Provides the Per Object Settings."
msgstr "Näyttää kappalekohtaiset asetukset." msgstr "Näyttää kappalekohtaiset asetukset."
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:19 #: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:19
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Per Object Settings" msgid "Per Object Settings"
msgstr "Kappalekohtaiset asetukset" msgstr "Kappalekohtaiset asetukset"
@ -427,7 +404,6 @@ msgid "Legacy Cura Profile Reader"
msgstr "Aikaisempien Cura-profiilien lukija" msgstr "Aikaisempien Cura-profiilien lukija"
#: /home/tamara/2.1/Cura/plugins/LegacyProfileReader/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/LegacyProfileReader/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides support for importing profiles from legacy Cura versions." msgid "Provides support for importing profiles from legacy Cura versions."
msgstr "Tukee profiilien tuontia aikaisemmista Cura-versioista." msgstr "Tukee profiilien tuontia aikaisemmista Cura-versioista."
@ -443,19 +419,16 @@ msgid "Firmware Update"
msgstr "Laiteohjelmiston päivitys" msgstr "Laiteohjelmiston päivitys"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:38 #: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:38
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Starting firmware update, this may take a while." msgid "Starting firmware update, this may take a while."
msgstr "Käynnistetään laiteohjelmiston päivitystä, mikä voi kestää hetken." msgstr "Käynnistetään laiteohjelmiston päivitystä, mikä voi kestää hetken."
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:43 #: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:43
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Firmware update completed." msgid "Firmware update completed."
msgstr "Laiteohjelmiston päivitys suoritettu." msgstr "Laiteohjelmiston päivitys suoritettu."
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:48 #: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:48
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Updating firmware." msgid "Updating firmware."
msgstr "Päivitetään laiteohjelmistoa." 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/plugins/USBPrinting/FirmwareUpdateWindow.qml:80
#: /home/tamara/2.1/Cura/resources/qml/EngineLog.qml:38 #: /home/tamara/2.1/Cura/resources/qml/EngineLog.qml:38
#: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:74 #: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:74
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Close" msgid "Close"
msgstr "Sulje" msgstr "Sulje"
@ -474,19 +446,16 @@ msgid "Print with USB"
msgstr "Tulostus USB:n kautta" msgstr "Tulostus USB:n kautta"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:28 #: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:28
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Extruder Temperature %1" msgid "Extruder Temperature %1"
msgstr "Suulakkeen lämpötila %1" msgstr "Suulakkeen lämpötila %1"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:33 #: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:33
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Bed Temperature %1" msgid "Bed Temperature %1"
msgstr "Pöydän lämpötila %1" msgstr "Pöydän lämpötila %1"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:60 #: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:60
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Print" msgid "Print"
msgstr "Tulosta" msgstr "Tulosta"
@ -495,7 +464,6 @@ msgstr "Tulosta"
#: /home/tamara/2.1/Cura/plugins/ImageReader/ConfigUI.qml:200 #: /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/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:303
#: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:58 #: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:58
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Cancel" msgid "Cancel"
msgstr "Peruuta" msgstr "Peruuta"
@ -592,7 +560,6 @@ msgid "Object profile"
msgstr "Kappaleprofiili" msgstr "Kappaleprofiili"
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 #: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Add Setting" msgid "Add Setting"
msgstr "Lisää asetus" msgstr "Lisää asetus"
@ -618,19 +585,16 @@ msgid "0.0 m"
msgstr "0,0 m" msgstr "0,0 m"
#: /home/tamara/2.1/Cura/resources/qml/JobSpecs.qml:218 #: /home/tamara/2.1/Cura/resources/qml/JobSpecs.qml:218
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "%1 m" msgid "%1 m"
msgstr "%1 m" msgstr "%1 m"
#: /home/tamara/2.1/Cura/resources/qml/SidebarHeader.qml:29 #: /home/tamara/2.1/Cura/resources/qml/SidebarHeader.qml:29
#, fuzzy
msgctxt "@label:listbox" msgctxt "@label:listbox"
msgid "Print Job" msgid "Print Job"
msgstr "Tulostustyö" msgstr "Tulostustyö"
#: /home/tamara/2.1/Cura/resources/qml/SidebarHeader.qml:50 #: /home/tamara/2.1/Cura/resources/qml/SidebarHeader.qml:50
#, fuzzy
msgctxt "@label:listbox" msgctxt "@label:listbox"
msgid "Printer:" msgid "Printer:"
msgstr "Tulostin:" msgstr "Tulostin:"
@ -641,7 +605,6 @@ msgid "Nozzle:"
msgstr "Suutin:" msgstr "Suutin:"
#: /home/tamara/2.1/Cura/resources/qml/Sidebar.qml:89 #: /home/tamara/2.1/Cura/resources/qml/Sidebar.qml:89
#, fuzzy
msgctxt "@label:listbox" msgctxt "@label:listbox"
msgid "Setup" msgid "Setup"
msgstr "Asetukset" msgstr "Asetukset"
@ -657,20 +620,17 @@ msgid "Advanced"
msgstr "Laajennettu" msgstr "Laajennettu"
#: /home/tamara/2.1/Cura/resources/qml/AddMachineWizard.qml:18 #: /home/tamara/2.1/Cura/resources/qml/AddMachineWizard.qml:18
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "Add Printer" msgid "Add Printer"
msgstr "Lisää tulostin" msgstr "Lisää tulostin"
#: /home/tamara/2.1/Cura/resources/qml/AddMachineWizard.qml:25 #: /home/tamara/2.1/Cura/resources/qml/AddMachineWizard.qml:25
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:99 #: /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:99
#, fuzzy
msgctxt "@title" msgctxt "@title"
msgid "Add Printer" msgid "Add Printer"
msgstr "Lisää tulostin" msgstr "Lisää tulostin"
#: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:15 #: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:15
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "Load profile" msgid "Load profile"
msgstr "Lataa profiili" msgstr "Lataa profiili"
@ -689,7 +649,6 @@ msgid "Show details."
msgstr "Näytä tiedot." msgstr "Näytä tiedot."
#: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:50 #: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:50
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Merge settings" msgid "Merge settings"
msgstr "Yhdistä asetukset" msgstr "Yhdistä asetukset"
@ -700,13 +659,11 @@ msgid "Reset profile"
msgstr "Nollaa profiili" msgstr "Nollaa profiili"
#: /home/tamara/2.1/Cura/resources/qml/ProfileSetup.qml:28 #: /home/tamara/2.1/Cura/resources/qml/ProfileSetup.qml:28
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Profile:" msgid "Profile:"
msgstr "Profiili:" msgstr "Profiili:"
#: /home/tamara/2.1/Cura/resources/qml/EngineLog.qml:15 #: /home/tamara/2.1/Cura/resources/qml/EngineLog.qml:15
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "Engine Log" msgid "Engine Log"
msgstr "Moottorin loki" msgstr "Moottorin loki"
@ -717,67 +674,56 @@ msgid "Toggle Fu&ll Screen"
msgstr "Vaihda &koko näyttöön" msgstr "Vaihda &koko näyttöön"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:57 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:57
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Undo" msgid "&Undo"
msgstr "&Kumoa" msgstr "&Kumoa"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:65 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:65
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Redo" msgid "&Redo"
msgstr "Tee &uudelleen" msgstr "Tee &uudelleen"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:73 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:73
#, fuzzy
msgctxt "@action:inmenu menubar:file" msgctxt "@action:inmenu menubar:file"
msgid "&Quit" msgid "&Quit"
msgstr "&Lopeta" msgstr "&Lopeta"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:81 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:81
#, fuzzy
msgctxt "@action:inmenu menubar:settings" msgctxt "@action:inmenu menubar:settings"
msgid "&Preferences..." msgid "&Preferences..."
msgstr "&Lisäasetukset..." msgstr "&Lisäasetukset..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:88 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:88
#, fuzzy
msgctxt "@action:inmenu menubar:printer" msgctxt "@action:inmenu menubar:printer"
msgid "&Add Printer..." msgid "&Add Printer..."
msgstr "L&isää tulostin..." msgstr "L&isää tulostin..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:94 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:94
#, fuzzy
msgctxt "@action:inmenu menubar:printer" msgctxt "@action:inmenu menubar:printer"
msgid "Manage Pr&inters..." msgid "Manage Pr&inters..."
msgstr "Tulostinten &hallinta..." msgstr "Tulostinten &hallinta..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:101 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:101
#, fuzzy
msgctxt "@action:inmenu menubar:profile" msgctxt "@action:inmenu menubar:profile"
msgid "Manage Profiles..." msgid "Manage Profiles..."
msgstr "Profiilien hallinta..." msgstr "Profiilien hallinta..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:108 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:108
#, fuzzy
msgctxt "@action:inmenu menubar:help" msgctxt "@action:inmenu menubar:help"
msgid "Show Online &Documentation" msgid "Show Online &Documentation"
msgstr "Näytä sähköinen &dokumentaatio" msgstr "Näytä sähköinen &dokumentaatio"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:115 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:115
#, fuzzy
msgctxt "@action:inmenu menubar:help" msgctxt "@action:inmenu menubar:help"
msgid "Report a &Bug" msgid "Report a &Bug"
msgstr "Ilmoita &virheestä" msgstr "Ilmoita &virheestä"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:122 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:122
#, fuzzy
msgctxt "@action:inmenu menubar:help" msgctxt "@action:inmenu menubar:help"
msgid "&About..." msgid "&About..."
msgstr "Ti&etoja..." msgstr "Ti&etoja..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:129 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:129
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "Delete &Selection" msgid "Delete &Selection"
msgstr "&Poista valinta" msgstr "&Poista valinta"
@ -793,19 +739,16 @@ msgid "Ce&nter Object on Platform"
msgstr "K&eskitä kappale alustalle" msgstr "K&eskitä kappale alustalle"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:150 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:150
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Group Objects" msgid "&Group Objects"
msgstr "&Ryhmitä kappaleet" msgstr "&Ryhmitä kappaleet"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:158 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:158
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "Ungroup Objects" msgid "Ungroup Objects"
msgstr "Pura kappaleiden ryhmitys" msgstr "Pura kappaleiden ryhmitys"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:166 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:166
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Merge Objects" msgid "&Merge Objects"
msgstr "&Yhdistä kappaleet" msgstr "&Yhdistä kappaleet"
@ -816,37 +759,31 @@ msgid "&Duplicate Object"
msgstr "&Monista kappale" msgstr "&Monista kappale"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:181 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:181
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Clear Build Platform" msgid "&Clear Build Platform"
msgstr "&Tyhjennä alusta" msgstr "&Tyhjennä alusta"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:189 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:189
#, fuzzy
msgctxt "@action:inmenu menubar:file" msgctxt "@action:inmenu menubar:file"
msgid "Re&load All Objects" msgid "Re&load All Objects"
msgstr "&Lataa kaikki kappaleet uudelleen" msgstr "&Lataa kaikki kappaleet uudelleen"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:196 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:196
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "Reset All Object Positions" msgid "Reset All Object Positions"
msgstr "Nollaa kaikkien kappaleiden sijainnit" msgstr "Nollaa kaikkien kappaleiden sijainnit"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:202 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:202
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "Reset All Object &Transformations" msgid "Reset All Object &Transformations"
msgstr "Nollaa kaikkien kappaleiden m&uunnokset" msgstr "Nollaa kaikkien kappaleiden m&uunnokset"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:208 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:208
#, fuzzy
msgctxt "@action:inmenu menubar:file" msgctxt "@action:inmenu menubar:file"
msgid "&Open File..." msgid "&Open File..."
msgstr "&Avaa tiedosto..." msgstr "&Avaa tiedosto..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:216 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:216
#, fuzzy
msgctxt "@action:inmenu menubar:help" msgctxt "@action:inmenu menubar:help"
msgid "Show Engine &Log..." msgid "Show Engine &Log..."
msgstr "Näytä moottorin l&oki" msgstr "Näytä moottorin l&oki"
@ -862,7 +799,6 @@ msgid "Hollow"
msgstr "Ontto" msgstr "Ontto"
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:239 #: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:239
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "No (0%) infill will leave your model hollow at the cost of low strength" 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" msgstr "Ei (0 %) täyttöä jättää mallin ontoksi ja lujuudeltaan alhaiseksi"
@ -873,7 +809,6 @@ msgid "Light"
msgstr "Harva" msgstr "Harva"
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:245 #: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:245
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Light (20%) infill will give your model an average strength" msgid "Light (20%) infill will give your model an average strength"
msgstr "Harva (20 %) täyttö antaa mallille keskimääräisen lujuuden" msgstr "Harva (20 %) täyttö antaa mallille keskimääräisen lujuuden"
@ -934,7 +869,6 @@ msgid "General"
msgstr "Yleiset" msgstr "Yleiset"
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:51 #: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:51
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Language:" msgid "Language:"
msgstr "Kieli:" msgstr "Kieli:"
@ -982,14 +916,12 @@ msgid "Ensure objects are kept apart"
msgstr "Pidä kappaleet erillään" msgstr "Pidä kappaleet erillään"
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:131 #: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:131
#, fuzzy
msgctxt "@info:tooltip" msgctxt "@info:tooltip"
msgid "" msgid ""
"Should opened files be scaled to the build volume if they are too large?" "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?" msgstr "Pitäisikö avoimia tiedostoja skaalata rakennustilavuuteen, jos ne ovat liian isoja?"
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:136 #: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:136
#, fuzzy
msgctxt "@option:check" msgctxt "@option:check"
msgid "Scale large files" msgid "Scale large files"
msgstr "Skaalaa isot tiedostot" 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." 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 #: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:150
#, fuzzy
msgctxt "@option:check" msgctxt "@option:check"
msgid "Send (anonymous) print information" msgid "Send (anonymous) print information"
msgstr "Lähetä (anonyymit) tulostustiedot" msgstr "Lähetä (anonyymit) tulostustiedot"
#: /home/tamara/2.1/Cura/resources/qml/ViewPage.qml:16 #: /home/tamara/2.1/Cura/resources/qml/ViewPage.qml:16
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "View" msgid "View"
msgstr "Näytä" 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." 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 #: /home/tamara/2.1/Cura/resources/qml/ViewPage.qml:42
#, fuzzy
msgctxt "@option:check" msgctxt "@option:check"
msgid "Display overhang" msgid "Display overhang"
msgstr "Näytä uloke" msgstr "Näytä uloke"
@ -1156,7 +1085,6 @@ msgid "Extruder driver ugrades"
msgstr "Suulakekäytön päivitykset" msgstr "Suulakekäytön päivitykset"
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/SelectUpgradedParts.qml:63 #: /home/tamara/2.1/Cura/resources/qml/WizardPages/SelectUpgradedParts.qml:63
#, fuzzy
msgctxt "@option:check" msgctxt "@option:check"
msgid "Heated printer bed" msgid "Heated printer bed"
msgstr "Lämmitetty tulostinpöytä" 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" 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 #: /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:108
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Please select the type of printer:" msgid "Please select the type of printer:"
msgstr "Valitse tulostimen tyyppi:" msgstr "Valitse tulostimen tyyppi:"
@ -1189,7 +1116,6 @@ msgid ""
msgstr "Tämä tulostimen nimi on jo käytössä. Valitse toinen tulostimen nimi." 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 #: /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:245
#, fuzzy
msgctxt "@label:textbox" msgctxt "@label:textbox"
msgid "Printer Name:" msgid "Printer Name:"
msgstr "Tulostimen nimi:" msgstr "Tulostimen nimi:"
@ -1284,7 +1210,6 @@ msgid "Preparing to slice..."
msgstr "Valmistellaan viipalointia..." msgstr "Valmistellaan viipalointia..."
#: /home/tamara/2.1/Cura/resources/qml/SaveButton.qml:28 #: /home/tamara/2.1/Cura/resources/qml/SaveButton.qml:28
#, fuzzy
msgctxt "@label:PrintjobStatus" msgctxt "@label:PrintjobStatus"
msgid "Slicing..." msgid "Slicing..."
msgstr "Viipaloidaan..." msgstr "Viipaloidaan..."
@ -1316,165 +1241,149 @@ msgid ""
msgstr "Cura-ohjelman on kehittänyt Ultimaker B.V. yhteistyössä käyttäjäyhteisön kanssa." 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 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:16
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "Cura" msgid "Cura"
msgstr "Cura" msgstr "Cura"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:53 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:53
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&File" msgid "&File"
msgstr "&Tiedosto" msgstr "&Tiedosto"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:62 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:62
#, fuzzy
msgctxt "@title:menu menubar:file" msgctxt "@title:menu menubar:file"
msgid "Open &Recent" msgid "Open &Recent"
msgstr "Avaa &viimeisin" msgstr "Avaa &viimeisin"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:92 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:92
#, fuzzy
msgctxt "@action:inmenu menubar:file" msgctxt "@action:inmenu menubar:file"
msgid "&Save Selection to File" msgid "&Save Selection to File"
msgstr "&Tallenna valinta tiedostoon" msgstr "&Tallenna valinta tiedostoon"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:100 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:100
#, fuzzy
msgctxt "@title:menu menubar:file" msgctxt "@title:menu menubar:file"
msgid "Save &All" msgid "Save &All"
msgstr "Tallenna &kaikki" msgstr "Tallenna &kaikki"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:128 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:128
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&Edit" msgid "&Edit"
msgstr "&Muokkaa" msgstr "&Muokkaa"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:145 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:145
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&View" msgid "&View"
msgstr "&Näytä" msgstr "&Näytä"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:167 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:167
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&Printer" msgid "&Printer"
msgstr "&Tulostin" msgstr "&Tulostin"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:213 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:213
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "P&rofile" msgid "P&rofile"
msgstr "&Profiili" msgstr "&Profiili"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:240 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:240
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "E&xtensions" msgid "E&xtensions"
msgstr "Laa&jennukset" msgstr "Laa&jennukset"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:273 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:273
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&Settings" msgid "&Settings"
msgstr "&Asetukset" msgstr "&Asetukset"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:281 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:281
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&Help" msgid "&Help"
msgstr "&Ohje" msgstr "&Ohje"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:366 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:366
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Open File" msgid "Open File"
msgstr "Avaa tiedosto" msgstr "Avaa tiedosto"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:410 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:410
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "View Mode" msgid "View Mode"
msgstr "Näyttötapa" msgstr "Näyttötapa"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:495 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:495
#, fuzzy
msgctxt "@title:tab" msgctxt "@title:tab"
msgid "View" msgid "View"
msgstr "Näytä" msgstr "Näytä"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:644 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:644
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "Open file" msgid "Open file"
msgstr "Avaa tiedosto" msgstr "Avaa tiedosto"
#~ msgctxt "@label" msgctxt "@label"
#~ msgid "Variant:" msgid "Variant:"
#~ msgstr "Variantti:" msgstr "Variantti:"
#~ msgctxt "@label" msgctxt "@label"
#~ msgid "Global Profile:" msgid "Global Profile:"
#~ msgstr "Yleisprofiili:" msgstr "Yleisprofiili:"
#~ msgctxt "@option:check" msgctxt "@option:check"
#~ msgid "Heated printer bed (standard kit)" msgid "Heated printer bed (standard kit)"
#~ msgstr "Lämmitetty tulostinpöytä (normaali sarja)" msgstr "Lämmitetty tulostinpöytä (normaali sarja)"
#~ msgctxt "@option:check" msgctxt "@option:check"
#~ msgid "Dual extrusion (experimental)" msgid "Dual extrusion (experimental)"
#~ msgstr "Kaksoispursotus (kokeellinen)" msgstr "Kaksoispursotus (kokeellinen)"
#~ msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
#~ msgid "Bulgarian" msgid "Bulgarian"
#~ msgstr "bulgaria" msgstr "Bulgaria"
#~ msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
#~ msgid "Czech" msgid "Czech"
#~ msgstr "tsekki" msgstr "Tsekki"
#~ msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
#~ msgid "Italian" msgid "Italian"
#~ msgstr "italia" msgstr "Italia"
#~ msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
#~ msgid "Russian" msgid "Russian"
#~ msgstr "venäjä" msgstr "Venäjä"
#~ msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
#~ msgid "Spanish" msgid "Spanish"
#~ msgstr "espanja" msgstr "Espanja"
#~ msgctxt "@label:textbox" msgctxt "@label:textbox"
#~ msgid "Printjob Name" msgid "Printjob Name"
#~ msgstr "Tulostustyön nimi" msgstr "Tulostustyön nimi"
#~ msgctxt "@label" msgctxt "@label"
#~ msgid "Sparse" msgid "Sparse"
#~ msgstr "Harva" msgstr "Harva"
#~ msgctxt "@option:check" msgctxt "@option:check"
#~ msgid "Enable Skirt Adhesion" msgid "Enable Skirt Adhesion"
#~ msgstr "Ota helman tarttuvuus käyttöön" msgstr "Ota helman tarttuvuus käyttöön"
#~ msgctxt "@option:check" msgctxt "@option:check"
#~ msgid "Enable Support" msgid "Enable Support"
#~ msgstr "Ota tuki käyttöön" msgstr "Ota tuki käyttöön"
#~ msgctxt "@label:listbox" msgctxt "@label:listbox"
#~ msgid "Machine:" msgid "Machine:"
#~ msgstr "Laite:" msgstr "Laite:"
#~ msgctxt "@title:menu" msgctxt "@title:menu"
#~ msgid "&Machine" msgid "&Machine"
#~ msgstr "&Laite" msgstr "&Laite"
#~ msgctxt "Save button tooltip" msgctxt "Save button tooltip"
#~ msgid "Save to Disk" msgid "Save to Disk"
#~ msgstr "Tallenna levylle" msgstr "Tallenna levylle"
#~ msgctxt "Message action tooltip, {0} is sdcard" msgctxt "Message action tooltip, {0} is sdcard"
#~ msgid "Eject SD Card {0}" msgid "Eject SD Card {0}"
#~ msgstr "Poista SD-kortti {0}" msgstr "Poista SD-kortti {0}"

File diff suppressed because it is too large Load diff

View file

@ -33,13 +33,11 @@ msgid "Open Web Page"
msgstr "Ouvrir la page Web" msgstr "Ouvrir la page Web"
#: /home/tamara/2.1/Cura/cura/CuraApplication.py:158 #: /home/tamara/2.1/Cura/cura/CuraApplication.py:158
#, fuzzy
msgctxt "@info:progress" msgctxt "@info:progress"
msgid "Setting up scene..." msgid "Setting up scene..."
msgstr "Préparation de la scène..." msgstr "Préparation de la scène..."
#: /home/tamara/2.1/Cura/cura/CuraApplication.py:192 #: /home/tamara/2.1/Cura/cura/CuraApplication.py:192
#, fuzzy
msgctxt "@info:progress" msgctxt "@info:progress"
msgid "Loading interface..." msgid "Loading interface..."
msgstr "Chargement de l'interface..." msgstr "Chargement de l'interface..."
@ -56,25 +54,21 @@ msgid "Cura Profile Reader"
msgstr "Lecteur de profil Cura" msgstr "Lecteur de profil Cura"
#: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides support for importing Cura profiles." msgid "Provides support for importing Cura profiles."
msgstr "Fournit la prise en charge de l'importation de profils Cura." 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 #: /home/tamara/2.1/Cura/plugins/CuraProfileReader/__init__.py:21 /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:21
#, fuzzy
msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
msgid "Cura Profile" msgid "Cura Profile"
msgstr "Profil Cura" msgstr "Profil Cura"
#: /home/tamara/2.1/Cura/plugins/XRayView/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/XRayView/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "X-Ray View" msgid "X-Ray View"
msgstr "Vue Rayon-X" msgstr "Vue Rayon-X"
#: /home/tamara/2.1/Cura/plugins/XRayView/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/XRayView/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides the X-Ray view." msgid "Provides the X-Ray view."
msgstr "Permet la vue Rayon-X." 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." msgstr "Fournit la prise en charge de la lecture de fichiers 3MF."
#: /home/tamara/2.1/Cura/plugins/3MFReader/__init__.py:21 #: /home/tamara/2.1/Cura/plugins/3MFReader/__init__.py:21
#, fuzzy
msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
msgid "3MF File" msgid "3MF File"
msgstr "Fichier 3MF" msgstr "Fichier 3MF"
@ -124,7 +117,6 @@ msgid "Saved to Removable Drive {0} as {1}"
msgstr "Enregistré sur le lecteur amovible {0} sous {1}" msgstr "Enregistré sur le lecteur amovible {0} sous {1}"
#: /home/tamara/2.1/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:86 #: /home/tamara/2.1/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:86
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Eject" msgid "Eject"
msgstr "Ejecter" 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" msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible"
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34 #: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
#, fuzzy
msgctxt "@item:inmenu" msgctxt "@item:inmenu"
msgid "Show Changelog" msgid "Show Changelog"
msgstr "Afficher le récapitulatif des changements" msgstr "Afficher le récapitulatif des changements"
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Changelog" msgid "Changelog"
msgstr "Récapitulatif des changements" msgstr "Récapitulatif des changements"
@ -201,37 +191,31 @@ msgid "CuraEngine Backend"
msgstr "Système CuraEngine" msgstr "Système CuraEngine"
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides the link to the CuraEngine slicing backend" msgid "Provides the link to the CuraEngine slicing backend"
msgstr "Fournit le lien vers le système de découpage CuraEngine" msgstr "Fournit le lien vers le système de découpage CuraEngine"
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "GCode Writer" msgid "GCode Writer"
msgstr "Générateur de GCode" msgstr "Générateur de GCode"
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Writes GCode to a file" msgid "Writes GCode to a file"
msgstr "Enregistre le GCode dans un fichier" msgstr "Enregistre le GCode dans un fichier"
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22 #: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
#, fuzzy
msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
msgid "GCode File" msgid "GCode File"
msgstr "Fichier GCode" msgstr "Fichier GCode"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:49 #: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:49
#, fuzzy
msgctxt "@title:menu" msgctxt "@title:menu"
msgid "Firmware" msgid "Firmware"
msgstr "Firmware" msgstr "Firmware"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:50 #: /home/tamara/2.1/Cura/plugins/USBPrinting/USBPrinterManager.py:50
#, fuzzy
msgctxt "@item:inmenu" msgctxt "@item:inmenu"
msgid "Update Firmware" msgid "Update Firmware"
msgstr "Mise à jour du firmware" msgstr "Mise à jour du firmware"
@ -262,7 +246,6 @@ msgid "USB printing"
msgstr "Impression par USB" msgstr "Impression par USB"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/__init__.py:17 #: /home/tamara/2.1/Cura/plugins/USBPrinting/__init__.py:17
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." 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." 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." 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 #: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Cura Profile Writer" msgid "Cura Profile Writer"
msgstr "Générateur de profil Cura" msgstr "Générateur de profil Cura"
#: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/CuraProfileWriter/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides support for exporting Cura profiles." msgid "Provides support for exporting Cura profiles."
msgstr "Fournit la prise en charge de l'exportation de profils Cura." msgstr "Fournit la prise en charge de l'exportation de profils Cura."
#: /home/tamara/2.1/Cura/plugins/ImageReader/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/ImageReader/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Image Reader" msgid "Image Reader"
msgstr "Lecteur d'images" msgstr "Lecteur d'images"
@ -336,55 +316,46 @@ msgid "GIF Image"
msgstr "Image GIF" msgstr "Image GIF"
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "GCode Profile Reader" msgid "GCode Profile Reader"
msgstr "Lecteur de profil GCode" msgstr "Lecteur de profil GCode"
#: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides support for importing profiles from g-code files." 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." 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 #: /home/tamara/2.1/Cura/plugins/GCodeProfileReader/__init__.py:21
#, fuzzy
msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
msgid "G-code File" msgid "G-code File"
msgstr "Fichier GCode" msgstr "Fichier GCode"
#: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:12 #: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:12
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Solid View" msgid "Solid View"
msgstr "Vue solide" msgstr "Vue solide"
#: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides a normal solid mesh view." msgid "Provides a normal solid mesh view."
msgstr "Affiche une vue en maille solide normale." msgstr "Affiche une vue en maille solide normale."
#: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:19 #: /home/tamara/2.1/Cura/plugins/SolidView/__init__.py:19
#, fuzzy
msgctxt "@item:inmenu" msgctxt "@item:inmenu"
msgid "Solid" msgid "Solid"
msgstr "Solide" msgstr "Solide"
#: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:13 #: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:13
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Layer View" msgid "Layer View"
msgstr "Vue en couches" msgstr "Vue en couches"
#: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:16 #: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:16
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides the Layer view." msgid "Provides the Layer view."
msgstr "Permet la vue en couches." msgstr "Permet la vue en couches."
#: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:20 #: /home/tamara/2.1/Cura/plugins/LayerView/__init__.py:20
#, fuzzy
msgctxt "@item:inlistbox" msgctxt "@item:inlistbox"
msgid "Layers" msgid "Layers"
msgstr "Couches" msgstr "Couches"
@ -405,13 +376,11 @@ msgid "Per Object Settings Tool"
msgstr "Outil de configuration par objet" msgstr "Outil de configuration par objet"
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides the Per Object Settings." msgid "Provides the Per Object Settings."
msgstr "Affiche les Paramètres par objet." msgstr "Affiche les Paramètres par objet."
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:19 #: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/__init__.py:19
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Per Object Settings" msgid "Per Object Settings"
msgstr "Paramètres par objet" msgstr "Paramètres par objet"
@ -427,7 +396,6 @@ msgid "Legacy Cura Profile Reader"
msgstr "Lecteur de profil Cura antérieur" msgstr "Lecteur de profil Cura antérieur"
#: /home/tamara/2.1/Cura/plugins/LegacyProfileReader/__init__.py:15 #: /home/tamara/2.1/Cura/plugins/LegacyProfileReader/__init__.py:15
#, fuzzy
msgctxt "@info:whatsthis" msgctxt "@info:whatsthis"
msgid "Provides support for importing profiles from legacy Cura versions." 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." 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" msgstr "Profils Cura 15.04"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:20 #: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:20
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "Firmware Update" msgid "Firmware Update"
msgstr "Mise à jour du firmware" msgstr "Mise à jour du firmware"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:38 #: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:38
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Starting firmware update, this may take a while." msgid "Starting firmware update, this may take a while."
msgstr "Démarrage de la mise à jour du firmware, cela peut prendre un certain temps." 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 #: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:43
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Firmware update completed." msgid "Firmware update completed."
msgstr "Mise à jour du firmware terminée." msgstr "Mise à jour du firmware terminée."
#: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:48 #: /home/tamara/2.1/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:48
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Updating firmware." msgid "Updating firmware."
msgstr "Mise à jour du firmware en cours." 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 #: /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" msgctxt "@action:button"
msgid "Close" msgid "Close"
msgstr "Fermer" msgstr "Fermer"
@ -473,25 +436,21 @@ msgid "Print with USB"
msgstr "Imprimer par USB" msgstr "Imprimer par USB"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:28 #: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:28
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Extruder Temperature %1" msgid "Extruder Temperature %1"
msgstr "Température de l'extrudeuse %1" msgstr "Température de l'extrudeuse %1"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:33 #: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:33
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Bed Temperature %1" msgid "Bed Temperature %1"
msgstr "Température du plateau %1" msgstr "Température du plateau %1"
#: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:60 #: /home/tamara/2.1/Cura/plugins/USBPrinting/ControlWindow.qml:60
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Print" msgid "Print"
msgstr "Imprimer" 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 #: /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" msgctxt "@action:button"
msgid "Cancel" msgid "Cancel"
msgstr "Annuler" msgstr "Annuler"
@ -582,7 +541,6 @@ msgid "Object profile"
msgstr "Profil d'objet" msgstr "Profil d'objet"
#: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126 #: /home/tamara/2.1/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Add Setting" msgid "Add Setting"
msgstr "Ajouter un paramètre" msgstr "Ajouter un paramètre"
@ -608,19 +566,16 @@ msgid "0.0 m"
msgstr "0,0 m" msgstr "0,0 m"
#: /home/tamara/2.1/Cura/resources/qml/JobSpecs.qml:218 #: /home/tamara/2.1/Cura/resources/qml/JobSpecs.qml:218
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "%1 m" msgid "%1 m"
msgstr "%1 m" msgstr "%1 m"
#: /home/tamara/2.1/Cura/resources/qml/SidebarHeader.qml:29 #: /home/tamara/2.1/Cura/resources/qml/SidebarHeader.qml:29
#, fuzzy
msgctxt "@label:listbox" msgctxt "@label:listbox"
msgid "Print Job" msgid "Print Job"
msgstr "Imprimer la tâche" msgstr "Imprimer la tâche"
#: /home/tamara/2.1/Cura/resources/qml/SidebarHeader.qml:50 #: /home/tamara/2.1/Cura/resources/qml/SidebarHeader.qml:50
#, fuzzy
msgctxt "@label:listbox" msgctxt "@label:listbox"
msgid "Printer:" msgid "Printer:"
msgstr "Imprimante :" msgstr "Imprimante :"
@ -631,37 +586,31 @@ msgid "Nozzle:"
msgstr "Buse :" msgstr "Buse :"
#: /home/tamara/2.1/Cura/resources/qml/Sidebar.qml:89 #: /home/tamara/2.1/Cura/resources/qml/Sidebar.qml:89
#, fuzzy
msgctxt "@label:listbox" msgctxt "@label:listbox"
msgid "Setup" msgid "Setup"
msgstr "Configuration" msgstr "Configuration"
#: /home/tamara/2.1/Cura/resources/qml/Sidebar.qml:215 #: /home/tamara/2.1/Cura/resources/qml/Sidebar.qml:215
#, fuzzy
msgctxt "@title:tab" msgctxt "@title:tab"
msgid "Simple" msgid "Simple"
msgstr "Simple" msgstr "Simple"
#: /home/tamara/2.1/Cura/resources/qml/Sidebar.qml:216 #: /home/tamara/2.1/Cura/resources/qml/Sidebar.qml:216
#, fuzzy
msgctxt "@title:tab" msgctxt "@title:tab"
msgid "Advanced" msgid "Advanced"
msgstr "Avancée" msgstr "Avancée"
#: /home/tamara/2.1/Cura/resources/qml/AddMachineWizard.qml:18 #: /home/tamara/2.1/Cura/resources/qml/AddMachineWizard.qml:18
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "Add Printer" msgid "Add Printer"
msgstr "Ajouter une imprimante" 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 #: /home/tamara/2.1/Cura/resources/qml/AddMachineWizard.qml:25 /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:99
#, fuzzy
msgctxt "@title" msgctxt "@title"
msgid "Add Printer" msgid "Add Printer"
msgstr "Ajouter une imprimante" msgstr "Ajouter une imprimante"
#: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:15 #: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:15
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "Load profile" msgid "Load profile"
msgstr "Charger un profil" msgstr "Charger un profil"
@ -677,7 +626,6 @@ msgid "Show details."
msgstr "Afficher les détails." msgstr "Afficher les détails."
#: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:50 #: /home/tamara/2.1/Cura/resources/qml/LoadProfileDialog.qml:50
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Merge settings" msgid "Merge settings"
msgstr "Fusionner les paramètres" msgstr "Fusionner les paramètres"
@ -688,13 +636,11 @@ msgid "Reset profile"
msgstr "Réinitialiser le profil" msgstr "Réinitialiser le profil"
#: /home/tamara/2.1/Cura/resources/qml/ProfileSetup.qml:28 #: /home/tamara/2.1/Cura/resources/qml/ProfileSetup.qml:28
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Profile:" msgid "Profile:"
msgstr "Profil :" msgstr "Profil :"
#: /home/tamara/2.1/Cura/resources/qml/EngineLog.qml:15 #: /home/tamara/2.1/Cura/resources/qml/EngineLog.qml:15
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "Engine Log" msgid "Engine Log"
msgstr "Journal du moteur" msgstr "Journal du moteur"
@ -705,139 +651,116 @@ msgid "Toggle Fu&ll Screen"
msgstr "Passer en P&lein écran" msgstr "Passer en P&lein écran"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:57 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:57
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Undo" msgid "&Undo"
msgstr "&Annuler" msgstr "&Annuler"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:65 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:65
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Redo" msgid "&Redo"
msgstr "&Rétablir" msgstr "&Rétablir"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:73 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:73
#, fuzzy
msgctxt "@action:inmenu menubar:file" msgctxt "@action:inmenu menubar:file"
msgid "&Quit" msgid "&Quit"
msgstr "&Quitter" msgstr "&Quitter"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:81 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:81
#, fuzzy
msgctxt "@action:inmenu menubar:settings" msgctxt "@action:inmenu menubar:settings"
msgid "&Preferences..." msgid "&Preferences..."
msgstr "&Préférences..." msgstr "&Préférences..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:88 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:88
#, fuzzy
msgctxt "@action:inmenu menubar:printer" msgctxt "@action:inmenu menubar:printer"
msgid "&Add Printer..." msgid "&Add Printer..."
msgstr "&Ajouter une imprimante..." msgstr "&Ajouter une imprimante..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:94 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:94
#, fuzzy
msgctxt "@action:inmenu menubar:printer" msgctxt "@action:inmenu menubar:printer"
msgid "Manage Pr&inters..." msgid "Manage Pr&inters..."
msgstr "Gérer les &imprimantes..." msgstr "Gérer les &imprimantes..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:101 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:101
#, fuzzy
msgctxt "@action:inmenu menubar:profile" msgctxt "@action:inmenu menubar:profile"
msgid "Manage Profiles..." msgid "Manage Profiles..."
msgstr "Gérer les profils..." msgstr "Gérer les profils..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:108 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:108
#, fuzzy
msgctxt "@action:inmenu menubar:help" msgctxt "@action:inmenu menubar:help"
msgid "Show Online &Documentation" msgid "Show Online &Documentation"
msgstr "Afficher la &documentation en ligne" msgstr "Afficher la &documentation en ligne"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:115 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:115
#, fuzzy
msgctxt "@action:inmenu menubar:help" msgctxt "@action:inmenu menubar:help"
msgid "Report a &Bug" msgid "Report a &Bug"
msgstr "Notifier un &bug" msgstr "Notifier un &bug"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:122 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:122
#, fuzzy
msgctxt "@action:inmenu menubar:help" msgctxt "@action:inmenu menubar:help"
msgid "&About..." msgid "&About..."
msgstr "&À propos de..." msgstr "&À propos de..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:129 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:129
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "Delete &Selection" msgid "Delete &Selection"
msgstr "&Supprimer la sélection" msgstr "&Supprimer la sélection"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:137 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:137
#, fuzzy
msgctxt "@action:inmenu" msgctxt "@action:inmenu"
msgid "Delete Object" msgid "Delete Object"
msgstr "Supprimer l'objet" msgstr "Supprimer l'objet"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:144 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:144
#, fuzzy
msgctxt "@action:inmenu" msgctxt "@action:inmenu"
msgid "Ce&nter Object on Platform" msgid "Ce&nter Object on Platform"
msgstr "Ce&ntrer lobjet sur le plateau" msgstr "Ce&ntrer lobjet sur le plateau"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:150 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:150
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Group Objects" msgid "&Group Objects"
msgstr "&Grouper les objets" msgstr "&Grouper les objets"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:158 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:158
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "Ungroup Objects" msgid "Ungroup Objects"
msgstr "Dégrouper les objets" msgstr "Dégrouper les objets"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:166 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:166
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Merge Objects" msgid "&Merge Objects"
msgstr "&Fusionner les objets" msgstr "&Fusionner les objets"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:174 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:174
#, fuzzy
msgctxt "@action:inmenu" msgctxt "@action:inmenu"
msgid "&Duplicate Object" msgid "&Duplicate Object"
msgstr "&Dupliquer lobjet" msgstr "&Dupliquer lobjet"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:181 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:181
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "&Clear Build Platform" msgid "&Clear Build Platform"
msgstr "&Supprimer les objets du plateau" msgstr "&Supprimer les objets du plateau"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:189 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:189
#, fuzzy
msgctxt "@action:inmenu menubar:file" msgctxt "@action:inmenu menubar:file"
msgid "Re&load All Objects" msgid "Re&load All Objects"
msgstr "Rechar&ger tous les objets" msgstr "Rechar&ger tous les objets"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:196 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:196
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "Reset All Object Positions" msgid "Reset All Object Positions"
msgstr "Réinitialiser les positions de tous les objets" msgstr "Réinitialiser les positions de tous les objets"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:202 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:202
#, fuzzy
msgctxt "@action:inmenu menubar:edit" msgctxt "@action:inmenu menubar:edit"
msgid "Reset All Object &Transformations" msgid "Reset All Object &Transformations"
msgstr "Réinitialiser les &transformations de tous les objets" msgstr "Réinitialiser les &transformations de tous les objets"
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:208 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:208
#, fuzzy
msgctxt "@action:inmenu menubar:file" msgctxt "@action:inmenu menubar:file"
msgid "&Open File..." msgid "&Open File..."
msgstr "&Ouvrir un fichier..." msgstr "&Ouvrir un fichier..."
#: /home/tamara/2.1/Cura/resources/qml/Actions.qml:216 #: /home/tamara/2.1/Cura/resources/qml/Actions.qml:216
#, fuzzy
msgctxt "@action:inmenu menubar:help" msgctxt "@action:inmenu menubar:help"
msgid "Show Engine &Log..." msgid "Show Engine &Log..."
msgstr "Afficher le &journal du moteur..." msgstr "Afficher le &journal du moteur..."
@ -853,7 +776,6 @@ msgid "Hollow"
msgstr "Creux" msgstr "Creux"
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:239 #: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:239
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "No (0%) infill will leave your model hollow at the cost of low strength" 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" msgstr "L'absence de remplissage (0 %) laissera votre modèle creux pour une solidité faible"
@ -864,7 +786,6 @@ msgid "Light"
msgstr "Clairsemé" msgstr "Clairsemé"
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:245 #: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:245
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Light (20%) infill will give your model an average strength" msgid "Light (20%) infill will give your model an average strength"
msgstr "Un remplissage clairsemé (20 %) donnera à votre modèle une solidité moyenne" 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" msgstr "Un remplissage solide (100 %) rendra votre modèle vraiment résistant"
#: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:276 #: /home/tamara/2.1/Cura/resources/qml/SidebarSimple.qml:276
#, fuzzy
msgctxt "@label:listbox" msgctxt "@label:listbox"
msgid "Helpers:" msgid "Helpers:"
msgstr "Aides :" msgstr "Aides :"
@ -921,7 +841,6 @@ msgid "General"
msgstr "Général" msgstr "Général"
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:51 #: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:51
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Language:" msgid "Language:"
msgstr "Langue :" msgstr "Langue :"
@ -967,13 +886,11 @@ msgid "Ensure objects are kept apart"
msgstr "Veillez à ce que les objets restent séparés" msgstr "Veillez à ce que les objets restent séparés"
#: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:131 #: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:131
#, fuzzy
msgctxt "@info:tooltip" msgctxt "@info:tooltip"
msgid "Should opened files be scaled to the build volume if they are too large?" 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 ?" 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 #: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:136
#, fuzzy
msgctxt "@option:check" msgctxt "@option:check"
msgid "Scale large files" msgid "Scale large files"
msgstr "Réduire la taille des fichiers trop grands" 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." 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 #: /home/tamara/2.1/Cura/resources/qml/GeneralPage.qml:150
#, fuzzy
msgctxt "@option:check" msgctxt "@option:check"
msgid "Send (anonymous) print information" msgid "Send (anonymous) print information"
msgstr "Envoyer des informations (anonymes) sur l'impression" msgstr "Envoyer des informations (anonymes) sur l'impression"
#: /home/tamara/2.1/Cura/resources/qml/ViewPage.qml:16 #: /home/tamara/2.1/Cura/resources/qml/ViewPage.qml:16
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "View" msgid "View"
msgstr "Visualisation" 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." 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 #: /home/tamara/2.1/Cura/resources/qml/ViewPage.qml:42
#, fuzzy
msgctxt "@option:check" msgctxt "@option:check"
msgid "Display overhang" msgid "Display overhang"
msgstr "Mettre en surbrillance les porte-à-faux" 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é" 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 #: /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" msgctxt "@title"
msgid "Check Printer" msgid "Check Printer"
msgstr "Tester l'imprimante" msgstr "Tester l'imprimante"
@ -1095,7 +1008,6 @@ msgid "Checking"
msgstr "Vérification en cours" msgstr "Vérification en cours"
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/UltimakerCheckup.qml:267 #: /home/tamara/2.1/Cura/resources/qml/WizardPages/UltimakerCheckup.qml:267
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "bed temperature check:" msgid "bed temperature check:"
msgstr "test de la température du plateau :" 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 :" 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 #: /home/tamara/2.1/Cura/resources/qml/WizardPages/SelectUpgradedParts.qml:57
#, fuzzy
msgctxt "@option:check" msgctxt "@option:check"
msgid "Extruder driver ugrades" msgid "Extruder driver ugrades"
msgstr "Améliorations de l'entrainement de l'extrudeuse" msgstr "Améliorations de l'entrainement de l'extrudeuse"
#: /home/tamara/2.1/Cura/resources/qml/WizardPages/SelectUpgradedParts.qml:63 #: /home/tamara/2.1/Cura/resources/qml/WizardPages/SelectUpgradedParts.qml:63
#, fuzzy
msgctxt "@option:check" msgctxt "@option:check"
msgid "Heated printer bed" msgid "Heated printer bed"
msgstr "Plateau d'imprimante chauffant" 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" 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 #: /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:108
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "Please select the type of printer:" msgid "Please select the type of printer:"
msgstr "Veuillez sélectionner le type dimprimante :" msgstr "Veuillez sélectionner le type dimprimante :"
@ -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." 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 #: /home/tamara/2.1/Cura/resources/qml/WizardPages/AddMachine.qml:245
#, fuzzy
msgctxt "@label:textbox" msgctxt "@label:textbox"
msgid "Printer Name:" msgid "Printer Name:"
msgstr "Nom de l'imprimante :" 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 #: /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" msgctxt "@title"
msgid "Upgrade Firmware" msgid "Upgrade Firmware"
msgstr "Mise à niveau du 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." 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 #: /home/tamara/2.1/Cura/resources/qml/WizardPages/UpgradeFirmware.qml:64
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Upgrade to Marlin Firmware" msgid "Upgrade to Marlin Firmware"
msgstr "Mettre à jour vers le firmware Marlin" msgstr "Mettre à jour vers le firmware Marlin"
@ -1232,7 +1138,6 @@ msgid "Preparing to slice..."
msgstr "Préparation de la découpe..." msgstr "Préparation de la découpe..."
#: /home/tamara/2.1/Cura/resources/qml/SaveButton.qml:28 #: /home/tamara/2.1/Cura/resources/qml/SaveButton.qml:28
#, fuzzy
msgctxt "@label:PrintjobStatus" msgctxt "@label:PrintjobStatus"
msgid "Slicing..." msgid "Slicing..."
msgstr "Découpe en cours..." 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" msgstr "Sélectionner le périphérique de sortie actif"
#: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:15 #: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:15
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "About Cura" msgid "About Cura"
msgstr "À propos de Cura" msgstr "À propos de Cura"
#: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:54 #: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:54
#, fuzzy
msgctxt "@label" msgctxt "@label"
msgid "End-to-end solution for fused filament 3D printing." 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." 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 #: /home/tamara/2.1/Cura/resources/qml/AboutDialog.qml:66
#, fuzzy
msgctxt "@info:credit" msgctxt "@info:credit"
msgid "Cura has been developed by Ultimaker B.V. in cooperation with the community." 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." 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 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:16
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "Cura" msgid "Cura"
msgstr "Cura" msgstr "Cura"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:53 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:53
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&File" msgid "&File"
msgstr "&Fichier" msgstr "&Fichier"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:62 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:62
#, fuzzy
msgctxt "@title:menu menubar:file" msgctxt "@title:menu menubar:file"
msgid "Open &Recent" msgid "Open &Recent"
msgstr "Ouvrir un fichier &récent" msgstr "Ouvrir un fichier &récent"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:92 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:92
#, fuzzy
msgctxt "@action:inmenu menubar:file" msgctxt "@action:inmenu menubar:file"
msgid "&Save Selection to File" msgid "&Save Selection to File"
msgstr "Enregi&strer la sélection dans un fichier" msgstr "Enregi&strer la sélection dans un fichier"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:100 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:100
#, fuzzy
msgctxt "@title:menu menubar:file" msgctxt "@title:menu menubar:file"
msgid "Save &All" msgid "Save &All"
msgstr "Enregistrer &tout" msgstr "Enregistrer &tout"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:128 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:128
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&Edit" msgid "&Edit"
msgstr "&Modifier" msgstr "&Modifier"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:145 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:145
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&View" msgid "&View"
msgstr "&Visualisation" msgstr "&Visualisation"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:167 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:167
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&Printer" msgid "&Printer"
msgstr "Im&primante" msgstr "Im&primante"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:213 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:213
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "P&rofile" msgid "P&rofile"
msgstr "P&rofil" msgstr "P&rofil"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:240 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:240
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "E&xtensions" msgid "E&xtensions"
msgstr "E&xtensions" msgstr "E&xtensions"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:273 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:273
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&Settings" msgid "&Settings"
msgstr "&Paramètres" msgstr "&Paramètres"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:281 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:281
#, fuzzy
msgctxt "@title:menu menubar:toplevel" msgctxt "@title:menu menubar:toplevel"
msgid "&Help" msgid "&Help"
msgstr "&Aide" msgstr "&Aide"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:366 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:366
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "Open File" msgid "Open File"
msgstr "Ouvrir un fichier" msgstr "Ouvrir un fichier"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:410 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:410
#, fuzzy
msgctxt "@action:button" msgctxt "@action:button"
msgid "View Mode" msgid "View Mode"
msgstr "Mode daffichage" msgstr "Mode daffichage"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:495 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:495
#, fuzzy
msgctxt "@title:tab" msgctxt "@title:tab"
msgid "View" msgid "View"
msgstr "Visualisation" msgstr "Visualisation"
#: /home/tamara/2.1/Cura/resources/qml/Cura.qml:644 #: /home/tamara/2.1/Cura/resources/qml/Cura.qml:644
#, fuzzy
msgctxt "@title:window" msgctxt "@title:window"
msgid "Open file" msgid "Open file"
msgstr "Ouvrir un fichier" msgstr "Ouvrir un fichier"
@ -1407,7 +1293,7 @@ msgstr "Ouvrir un fichier"
#~ msgctxt "@option:check" #~ msgctxt "@option:check"
#~ msgid "Enable Skirt Adhesion" #~ msgid "Enable Skirt Adhesion"
#~ msgstr "Adhäsion der Unterlage aktivieren" #~ msgstr "Activer l'Adhérence de Jupe"
#~ msgctxt "@option:check" #~ msgctxt "@option:check"
#~ msgid "Enable Support" #~ msgid "Enable Support"

File diff suppressed because it is too large Load diff

View file

@ -37,7 +37,6 @@
"overrides": { "overrides": {
"layer_height": { "default": 0.2 }, "layer_height": { "default": 0.2 },
"shell_thickness": { "default": 0.8 },
"wall_thickness": { "default": 0.8 }, "wall_thickness": { "default": 0.8 },
"top_bottom_thickness": { "default": 0.3, "visible": true }, "top_bottom_thickness": { "default": 0.3, "visible": true },
"material_print_temperature": { "default": 195, "visible": true }, "material_print_temperature": { "default": 195, "visible": true },

View file

@ -35,7 +35,6 @@
"overrides": { "overrides": {
"layer_height": { "default": 0.2 }, "layer_height": { "default": 0.2 },
"shell_thickness": { "default": 0.8},
"wall_thickness": { "default": 0.8 }, "wall_thickness": { "default": 0.8 },
"top_bottom_thickness": { "default": 0.3, "visible": true }, "top_bottom_thickness": { "default": 0.3, "visible": true },
"material_print_temperature": { "default": 195, "visible": true }, "material_print_temperature": { "default": 195, "visible": true },

View file

@ -38,7 +38,6 @@
}, },
"layer_height": { "default": 0.2 }, "layer_height": { "default": 0.2 },
"layer_height_0": { "default": 0.2, "visible": false }, "layer_height_0": { "default": 0.2, "visible": false },
"shell_thickness": { "default": 1.0 },
"wall_thickness": { "default": 1.0, "visible": false }, "wall_thickness": { "default": 1.0, "visible": false },
"top_bottom_thickness": { "default": 1.0, "visible": false}, "top_bottom_thickness": { "default": 1.0, "visible": false},
"bottom_thickness": { "default": 1.0, "visible": false }, "bottom_thickness": { "default": 1.0, "visible": false },

View file

@ -41,7 +41,6 @@
"material_diameter": { "default": 1.75 }, "material_diameter": { "default": 1.75 },
"layer_height": { "default": 0.2 }, "layer_height": { "default": 0.2 },
"layer_height_0": { "default": 0.2, "visible": true }, "layer_height_0": { "default": 0.2, "visible": true },
"shell_thickness": { "default": 1.2 },
"wall_line_count": { "default": 3, "visible": false }, "wall_line_count": { "default": 3, "visible": false },
"wall_thickness": { "default": 1.2, "visible": false }, "wall_thickness": { "default": 1.2, "visible": false },
"top_bottom_thickness": { "default": 1.2, "visible": false }, "top_bottom_thickness": { "default": 1.2, "visible": false },

View file

@ -38,7 +38,6 @@
}, },
"layer_height": { "default": 0.2 }, "layer_height": { "default": 0.2 },
"layer_height_0": { "default": 0.2, "visible": false }, "layer_height_0": { "default": 0.2, "visible": false },
"shell_thickness": { "default": 1.0 },
"wall_thickness": { "default": 1.0, "visible": false }, "wall_thickness": { "default": 1.0, "visible": false },
"top_bottom_thickness": { "default": 1.0, "visible": false}, "top_bottom_thickness": { "default": 1.0, "visible": false},
"bottom_thickness": { "default": 1.0, "visible": false }, "bottom_thickness": { "default": 1.0, "visible": false },

View file

@ -38,7 +38,6 @@
}, },
"layer_height": { "default": 0.2 }, "layer_height": { "default": 0.2 },
"layer_height_0": { "default": 0.2, "visible": false }, "layer_height_0": { "default": 0.2, "visible": false },
"shell_thickness": { "default": 1.0 },
"wall_thickness": { "default": 1.0, "visible": false }, "wall_thickness": { "default": 1.0, "visible": false },
"top_bottom_thickness": { "default": 1.0, "visible": false}, "top_bottom_thickness": { "default": 1.0, "visible": false},
"bottom_thickness": { "default": 1.0, "visible": false }, "bottom_thickness": { "default": 1.0, "visible": false },

View file

@ -41,7 +41,6 @@
"material_diameter": { "default": 1.75 }, "material_diameter": { "default": 1.75 },
"layer_height": { "default": 0.2 }, "layer_height": { "default": 0.2 },
"layer_height_0": { "default": 0.2, "visible": true }, "layer_height_0": { "default": 0.2, "visible": true },
"shell_thickness": { "default": 1.2 },
"wall_line_count": { "default": 3, "visible": false }, "wall_line_count": { "default": 3, "visible": false },
"wall_thickness": { "default": 1.2, "visible": false }, "wall_thickness": { "default": 1.2, "visible": false },
"top_bottom_thickness": { "default": 1.2, "visible": false }, "top_bottom_thickness": { "default": 1.2, "visible": false },

File diff suppressed because it is too large Load diff

View file

@ -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_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]} "machine_platform_offset": {"default": [-180, -0.25, 160]}
}, },
"overrides": { "overrides": {
"layer_height": { "default": 0.15 }, "layer_height": { "default": 0.15},
"shell_thickness": { "default": 0.8}, "wall_thickness": { "default": 0.8},
"wall_thickness": { "default": 0.8 }, "top_bottom_thickness": { "default": 0.3, "visible": true},
"top_bottom_thickness": { "default": 0.3, "visible": true }, "material_print_temperature": { "default": 215, "visible": true},
"material_print_temperature": { "default": 215, "visible": true }, "material_bed_temperature": { "default": 60, "visible": true},
"material_bed_temperature": { "default": 60, "visible": true }, "material_diameter": { "default": 1.75, "visible": true},
"material_diameter": { "default": 1.75, "visible": true },
"retraction_enable": { "default": true, "always_visible": true}, "retraction_enable": { "default": true, "always_visible": true},
"retraction_speed": { "default": 50.0, "visible": false }, "retraction_speed": { "default": 50.0, "visible": false },
"retraction_amount": { "default": 2.5, "visible": false }, "retraction_amount": { "default": 2.5, "visible": false },

View file

@ -11,10 +11,6 @@
"inherits": "ultimaker.json", "inherits": "ultimaker.json",
"pages": [
"SelectUpgradedPartsUM2"
],
"machine_extruder_trains": [ "machine_extruder_trains": [
{ {
"machine_nozzle_heat_up_speed": { "machine_nozzle_heat_up_speed": {
@ -67,7 +63,7 @@
] ]
}, },
"machine_center_is_zero": { "default": false }, "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_heat_up_speed": { "default": 2.0 },
"machine_nozzle_cool_down_speed": { "default": 2.0 }, "machine_nozzle_cool_down_speed": { "default": 2.0 },
"gantry_height": { "default": 55 }, "gantry_height": { "default": 55 },

View file

@ -15,8 +15,6 @@
], ],
"machine_settings": { "machine_settings": {
"machine_width": { "default": 230 },
"machine_depth": { "default": 225 },
"machine_height": { "default": 315 } "machine_height": { "default": 315 }
} }
} }

View file

@ -8,13 +8,10 @@
"platform_texture": "Ultimaker2Extendedbackplate.png", "platform_texture": "Ultimaker2Extendedbackplate.png",
"visible": false, "visible": false,
"file_formats": "text/x-gcode", "file_formats": "text/x-gcode",
"inherits": "ultimaker2.json", "inherits": "ultimaker2_olsson.json",
"machine_settings": { "machine_settings": {
"machine_width": { "default": 230 }, "machine_height": { "default": 313 },
"machine_depth": { "default": 225 }, "machine_show_variants": { "default": true }
"machine_height": { "default": 310 },
"machine_show_variants": { "default": true },
"gantry_height": { "default": 50 }
} }
} }

View file

@ -12,6 +12,7 @@
"variant": "0.25 mm", "variant": "0.25 mm",
"profiles_machine": "ultimaker2_olsson", "profiles_machine": "ultimaker2_olsson",
"machine_settings": { "machine_settings": {
"machine_nozzle_size": { "default": 0.25 } "machine_nozzle_size": { "default": 0.25 },
"machine_nozzle_tip_outer_diameter": { "default": 0.8 }
} }
} }

View file

@ -13,6 +13,7 @@
"variant": "0.4 mm", "variant": "0.4 mm",
"profiles_machine": "ultimaker2_olsson", "profiles_machine": "ultimaker2_olsson",
"machine_settings": { "machine_settings": {
"machine_nozzle_size": { "default": 0.40 } "machine_nozzle_size": { "default": 0.40 },
"machine_nozzle_tip_outer_diameter": { "default": 1.05 }
} }
} }

View file

@ -13,6 +13,7 @@
"variant": "0.6 mm", "variant": "0.6 mm",
"profiles_machine": "ultimaker2_olsson", "profiles_machine": "ultimaker2_olsson",
"machine_settings": { "machine_settings": {
"machine_nozzle_size": { "default": 0.60 } "machine_nozzle_size": { "default": 0.60 },
"machine_nozzle_tip_outer_diameter": { "default": 1.25 }
} }
} }

View file

@ -13,6 +13,7 @@
"variant": "0.8 mm", "variant": "0.8 mm",
"profiles_machine": "ultimaker2_olsson", "profiles_machine": "ultimaker2_olsson",
"machine_settings": { "machine_settings": {
"machine_nozzle_size": { "default": 0.80 } "machine_nozzle_size": { "default": 0.80 },
"machine_nozzle_tip_outer_diameter": { "default": 1.35 }
} }
} }

View file

@ -11,10 +11,9 @@
"inherits": "ultimaker2plus.json", "inherits": "ultimaker2plus.json",
"machine_settings": { "machine_settings": {
"machine_width": { "default": 230 }, "machine_height": { "default": 313 },
"machine_depth": { "default": 225 },
"machine_height": { "default": 310 },
"machine_show_variants": { "default": true }, "machine_show_variants": { "default": true },
"gantry_height": { "default": 50 } "machine_nozzle_head_distance": { "default": 5 },
"machine_nozzle_expansion_angle": { "default": 45 }
} }
} }

View file

@ -11,6 +11,7 @@
"variant": "0.25 mm", "variant": "0.25 mm",
"profiles_machine": "ultimaker2plus", "profiles_machine": "ultimaker2plus",
"machine_settings": { "machine_settings": {
"machine_nozzle_size": { "default": 0.25 } "machine_nozzle_size": { "default": 0.25 },
"machine_nozzle_tip_outer_diameter": { "default": 0.8 }
} }
} }

View file

@ -11,6 +11,7 @@
"variant": "0.4 mm", "variant": "0.4 mm",
"profiles_machine": "ultimaker2plus", "profiles_machine": "ultimaker2plus",
"machine_settings": { "machine_settings": {
"machine_nozzle_size": { "default": 0.40 } "machine_nozzle_size": { "default": 0.40 },
"machine_nozzle_tip_outer_diameter": { "default": 1.05 }
} }
} }

View file

@ -11,6 +11,7 @@
"variant": "0.6 mm", "variant": "0.6 mm",
"profiles_machine": "ultimaker2plus", "profiles_machine": "ultimaker2plus",
"machine_settings": { "machine_settings": {
"machine_nozzle_size": { "default": 0.60 } "machine_nozzle_size": { "default": 0.60 },
"machine_nozzle_tip_outer_diameter": { "default": 1.25 }
} }
} }

View file

@ -11,6 +11,7 @@
"variant": "0.8 mm", "variant": "0.8 mm",
"profiles_machine": "ultimaker2plus", "profiles_machine": "ultimaker2plus",
"machine_settings": { "machine_settings": {
"machine_nozzle_size": { "default": 0.80 } "machine_nozzle_size": { "default": 0.80 },
"machine_nozzle_tip_outer_diameter": { "default": 1.35 }
} }
} }

View file

@ -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 }
}
}

View file

@ -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 }
}
}

View file

@ -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 }
}
}

View file

@ -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 }
}
}

View file

@ -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 }
}
}

View file

@ -11,11 +11,12 @@
"inherits": "ultimaker2.json", "inherits": "ultimaker2.json",
"overrides": { "overrides": {
"machine_width": { "default": 230 }, "machine_height": { "default": 203 },
"machine_depth": { "default": 225 },
"machine_height": { "default": 200 },
"machine_show_variants": { "default": true }, "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": "machine_head_with_fans_polygon":
{ {
"default": [ "default": [
@ -36,6 +37,7 @@
-34 -34
] ]
] ]
} },
"retraction_amount": { "default": 6.0 }
} }
} }

View file

@ -13,6 +13,7 @@
"overrides": { "overrides": {
"machine_nozzle_size": { "default": 0.25 }, "machine_nozzle_size": { "default": 0.25 },
"machine_nozzle_tip_outer_diameter": { "default": 0.8 },
"coasting_volume": { "default": 0.1 }, "coasting_volume": { "default": 0.1 },
"coasting_min_volume": { "default": 0.17 } "coasting_min_volume": { "default": 0.17 }
} }

View file

@ -12,6 +12,7 @@
"variant": "0.4 mm", "variant": "0.4 mm",
"overrides": { "overrides": {
"machine_nozzle_size": { "default": 0.40 } "machine_nozzle_size": { "default": 0.40 },
"machine_nozzle_tip_outer_diameter": { "default": 1.05 }
} }
} }

View file

@ -13,6 +13,7 @@
"overrides": { "overrides": {
"machine_nozzle_size": { "default": 0.60 }, "machine_nozzle_size": { "default": 0.60 },
"machine_nozzle_tip_outer_diameter": { "default": 1.25 },
"coasting_volume": { "default": 1.36 } "coasting_volume": { "default": 1.36 }
} }
} }

View file

@ -13,6 +13,7 @@
"overrides": { "overrides": {
"machine_nozzle_size": { "default": 0.80 }, "machine_nozzle_size": { "default": 0.80 },
"machine_nozzle_tip_outer_diameter": { "default": 1.35 },
"coasting_volume": { "default": 3.22 } "coasting_volume": { "default": 3.22 }
} }
} }

View file

@ -72,7 +72,7 @@
"machine_gcode_flavor": { "default": "RepRap (Marlin/Sprinter)" }, "machine_gcode_flavor": { "default": "RepRap (Marlin/Sprinter)" },
"machine_start_gcode": { "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": { "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" "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"

View file

@ -5,5 +5,6 @@ weight = -3
[settings] [settings]
layer_height = 0.06 layer_height = 0.06
infill_sparse_density = 12 speed_topbottom = 15
speed_infill = 80

View file

@ -9,7 +9,9 @@ shell_thickness = 0.8
infill_sparse_density = 8 infill_sparse_density = 8
speed_print = 60 speed_print = 60
speed_wall_0 = 40 speed_wall_0 = 40
speed_wall_x = 50 speed_wall_x = 80
speed_infill = 100
wall_thickness = 1
speed_topbottom = 30 speed_topbottom = 30
speed_travel = 150 speed_travel = 150
speed_layer_0 = 30 speed_layer_0 = 30

View file

@ -4,3 +4,5 @@ name = Normal Quality
weight = -2 weight = -2
[settings] [settings]
speed_topbottom = 15
speed_infill = 80

View file

@ -5,6 +5,5 @@ weight = -4
[settings] [settings]
layer_height = 0.04 layer_height = 0.04
shell_thickness = 1.6 speed_topbottom = 15
top_bottom_thickness = 0.8 speed_infill = 80
infill_sparse_density = 14

View file

@ -5,8 +5,6 @@ name = ABS
[settings] [settings]
material_bed_temperature = 100 material_bed_temperature = 100
platform_adhesion = brim
material_flow = 107 material_flow = 107
material_print_temperature = 250 material_print_temperature = 250
cool_fan_speed = 50 cool_fan_speed = 50
cool_fan_speed_max = 50

View file

@ -4,9 +4,5 @@ type = material
name = CPE name = CPE
[settings] [settings]
material_bed_temperature = 60
platform_adhesion = brim
material_flow = 100
material_print_temperature = 250 material_print_temperature = 250
cool_fan_speed = 50 cool_fan_speed = 50
cool_fan_speed_max = 50

View file

@ -4,6 +4,3 @@ type = material
name = PLA name = PLA
[settings] [settings]
material_bed_temperature = 60
material_flow = 100
material_print_temperature = 210

View file

@ -8,19 +8,18 @@ weight = -2
[settings] [settings]
layer_height = 0.06 layer_height = 0.06
top_bottom_thickness = 0.72
layer_height_0 = 0.15
speed_wall_x = 25
wall_thickness = 0.88 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_infill = 30
speed_topbottom = 20 speed_topbottom = 20
adhesion_type = brim speed_wall_x = 25
speed_print = 20
cool_min_speed = 25
line_width = 0.22
infill_sparse_density = 22
speed_wall_0 = 20
cool_min_layer_time = 2 cool_min_layer_time = 2
cool_min_speed = 10
cool_lift_head = True cool_lift_head = True
cool_fan_speed_min = 50 cool_fan_speed_min = 20

View file

@ -8,19 +8,18 @@ weight = -1
[settings] [settings]
layer_height = 0.15 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 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_infill = 55
speed_topbottom = 30 speed_topbottom = 30
speed_wall_0 = 30
cool_min_layer_time = 3 cool_min_layer_time = 3
cool_min_speed = 20 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_lift_head = True
cool_fan_speed_min = 50 cool_fan_speed_min = 50

View file

@ -8,19 +8,18 @@ weight = -3
[settings] [settings]
layer_height = 0.06 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 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_infill = 45
speed_topbottom = 20 speed_topbottom = 20
adhesion_type = brim
cool_min_speed = 20
line_width = 0.35
infill_sparse_density = 22
speed_wall_0 = 20 speed_wall_0 = 20
cool_min_layer_time = 3 cool_min_layer_time = 3
cool_min_speed = 10
cool_fan_speed_min = 20
cool_lift_head = True cool_lift_head = True
cool_fan_speed_min = 50

View file

@ -7,17 +7,19 @@ material = ABS
weight = -2 weight = -2
[settings] [settings]
layer_height_0 = 0.26 layer_height = 0.1
speed_print = 30
speed_wall_x = 30
wall_thickness = 1.05 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_infill = 45
speed_topbottom = 20 speed_topbottom = 20
cool_min_layer_time = 3
cool_min_speed = 20
line_width = 0.35
speed_wall_0 = 20 speed_wall_0 = 20
adhesion_type = brim cool_min_layer_time = 3
cool_lift_head = True
cool_fan_speed_min = 50 cool_fan_speed_min = 50
cool_min_speed = 10
cool_lift_head = True

View file

@ -8,18 +8,19 @@ weight = -2
[settings] [settings]
layer_height = 0.15 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 wall_thickness = 1.59
speed_infill = 55
speed_topbottom = 20
adhesion_type = brim
cool_min_speed = 20
line_width = 0.53 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_0 = 20
speed_wall_x = 30
cool_min_layer_time = 3 cool_min_layer_time = 3
cool_lift_head = True
cool_fan_speed_min = 50 cool_fan_speed_min = 50
cool_min_speed = 20
cool_lift_head = True

View file

@ -8,18 +8,18 @@ weight = -2
[settings] [settings]
layer_height = 0.2 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 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_infill = 40
speed_topbottom = 20 speed_topbottom = 20
adhesion_type = brim speed_wall_x = 30
cool_min_speed = 15
line_width = 0.7
speed_wall_0 = 20
cool_min_layer_time = 3 cool_min_layer_time = 3
cool_lift_head = True
cool_fan_speed_min = 50 cool_fan_speed_min = 50
cool_min_speed = 15
cool_lift_head = True

View file

@ -7,20 +7,20 @@ material = CPE
weight = -2 weight = -2
[settings] [settings]
infill_overlap = 17
layer_height = 0.06 layer_height = 0.06
wall_thickness = 0.88 wall_thickness = 0.88
layer_height_0 = 0.15 line_width = 0.22
speed_wall_x = 25
top_bottom_thickness = 0.72 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_infill = 30
speed_topbottom = 20 speed_topbottom = 20
speed_wall_x = 25
cool_min_layer_time = 2 cool_min_layer_time = 2
speed_print = 20 cool_min_speed = 10
line_width = 0.22
infill_sparse_density = 22
speed_wall_0 = 20
adhesion_type = brim
cool_lift_head = True
cool_fan_speed_min = 50 cool_fan_speed_min = 50
cool_lift_head = True
infill_overlap = 17

View file

@ -7,21 +7,20 @@ material = CPE
weight = -1 weight = -1
[settings] [settings]
infill_overlap = 17
cool_min_layer_time = 3
layer_height = 0.15 layer_height = 0.15
wall_thickness = 0.7 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 line_width = 0.35
top_bottom_thickness = 0.75
infill_sparse_density = 18 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 speed_wall_0 = 30
adhesion_type = brim cool_min_layer_time = 3
cool_lift_head = True
cool_fan_speed_min = 50 cool_fan_speed_min = 50
cool_min_speed = 10
cool_lift_head = True
infill_overlap = 17

View file

@ -8,18 +8,20 @@ weight = -3
[settings] [settings]
layer_height = 0.06 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 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_infill = 45
speed_topbottom = 20 speed_topbottom = 20
adhesion_type = brim speed_wall_x = 30
line_width = 0.35
infill_sparse_density = 22
speed_wall_0 = 20
cool_min_layer_time = 3 cool_min_layer_time = 3
cool_lift_head = True
cool_fan_speed_min = 50 cool_fan_speed_min = 50
cool_min_speed = 10
cool_lift_head = True
infill_overlap = 15

View file

@ -7,16 +7,19 @@ material = CPE
weight = -2 weight = -2
[settings] [settings]
layer_height_0 = 0.26
speed_print = 20
speed_wall_x = 30
wall_thickness = 1.05 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_infill = 45
speed_topbottom = 20 speed_topbottom = 20
cool_min_layer_time = 3
line_width = 0.35
speed_wall_0 = 20 speed_wall_0 = 20
adhesion_type = brim speed_wall_x = 30
cool_lift_head = True cool_min_layer_time = 3
cool_fan_speed_min = 50 cool_fan_speed_min = 50
cool_min_speed = 10
cool_lift_head = True
infill_overlap = 15

View file

@ -7,19 +7,20 @@ material = CPE
weight = -2 weight = -2
[settings] [settings]
infill_overlap = 17
layer_height = 0.15 layer_height = 0.15
top_bottom_thickness = 1.2
layer_height_0 = 0.39
speed_wall_x = 30
wall_thickness = 1.59 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_infill = 40
speed_topbottom = 20 speed_topbottom = 20
cool_min_layer_time = 3
speed_print = 20
line_width = 0.53
speed_wall_0 = 20 speed_wall_0 = 20
adhesion_type = brim speed_wall_x = 30
cool_lift_head = True cool_min_layer_time = 3
cool_min_speed = 10
cool_fan_speed_min = 50 cool_fan_speed_min = 50
cool_lift_head = True
infill_overlap = 17

View file

@ -7,19 +7,19 @@ material = CPE
weight = -2 weight = -2
[settings] [settings]
infill_overlap = 17
layer_height = 0.2 layer_height = 0.2
top_bottom_thickness = 1.2
layer_height_0 = 0.5
speed_wall_x = 30
wall_thickness = 2.1 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_infill = 40
speed_topbottom = 20 speed_topbottom = 20
speed_wall_x = 30
cool_min_layer_time = 3 cool_min_layer_time = 3
speed_print = 20 cool_min_speed = 10
line_width = 0.7
speed_wall_0 = 20
adhesion_type = brim
cool_lift_head = True
cool_fan_speed_min = 50 cool_fan_speed_min = 50
cool_lift_head = True
infill_overlap = 17

View file

@ -10,22 +10,13 @@ weight = -2
line_width = 0.22 line_width = 0.22
layer_height = 0.06 layer_height = 0.06
layer_height_0 = 0.15 layer_height_0 = 0.15
shell_thickness = 0.88 wall_thickness = 0.88
top_bottom_thickness = 0.72 top_bottom_thickness = 0.72
top_bottom_pattern = lines
infill_sparse_density = 22 infill_sparse_density = 22
infill_wipe_dist = 0.1
retraction_amount = 6 retraction_amount = 6
retraction_min_travel = 0.5 speed_print = 20
retraction_count_max = 30
speed_infill = 30 speed_infill = 30
speed_wall_0 = 20
speed_wall_x = 25 speed_wall_x = 25
speed_topbottom = 20 speed_topbottom = 20
speed_layer_0 = 25 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 cool_min_layer_time_fan_speed_max = 15
adhesion_type = brim

View file

@ -10,23 +10,14 @@ weight = -1
line_width = 0.35 line_width = 0.35
layer_height = 0.15 layer_height = 0.15
layer_height_0 = 0.26 layer_height_0 = 0.26
shell_thickness = 0.7 wall_thickness = 0.7
top_bottom_thickness = 0.6 top_bottom_thickness = 0.6
top_bottom_pattern = lines
infill_sparse_density = 18 infill_sparse_density = 18
infill_wipe_dist = 0.2
retraction_amount = 5.5 retraction_amount = 5.5
retraction_min_travel = 0.5 speed_print = 40
retraction_count_max = 30
speed_infill = 60 speed_infill = 60
speed_wall_0 = 40
speed_wall_x = 50 speed_wall_x = 50
speed_topbottom = 30
speed_travel = 150 speed_travel = 150
speed_topbottom = 30
speed_layer_0 = 25 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 cool_min_layer_time_fan_speed_max = 15
adhesion_type = brim

View file

@ -10,22 +10,13 @@ weight = -3
line_width = 0.35 line_width = 0.35
layer_height = 0.06 layer_height = 0.06
layer_height_0 = 0.26 layer_height_0 = 0.26
shell_thickness = 1.05 wall_thickness = 1.05
top_bottom_thickness = 0.84 top_bottom_thickness = 0.84
top_bottom_pattern = lines
infill_sparse_density = 22 infill_sparse_density = 22
infill_wipe_dist = 0.18
retraction_amount = 5.5 retraction_amount = 5.5
retraction_min_travel = 0.5 speed_print = 30
retraction_count_max = 30
speed_infill = 50 speed_infill = 50
speed_wall_0 = 30
speed_wall_x = 40 speed_wall_x = 40
speed_topbottom = 20 speed_topbottom = 20
speed_layer_0 = 25 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 cool_min_layer_time_fan_speed_max = 15
adhesion_type = brim

View file

@ -8,24 +8,14 @@ weight = -2
[settings] [settings]
line_width = 0.35 line_width = 0.35
layer_height = 0.1
layer_height_0 = 0.26 layer_height_0 = 0.26
shell_thickness = 1.05 wall_thickness = 1.05
top_bottom_thickness = 0.8 top_bottom_thickness = 0.8
top_bottom_pattern = lines
infill_sparse_density = 20 infill_sparse_density = 20
infill_wipe_dist = 0.2
retraction_amount = 5.5 retraction_amount = 5.5
retraction_min_travel = 0.5 speed_print = 30
retraction_count_max = 30
speed_infill = 50 speed_infill = 50
speed_wall_0 = 30
speed_wall_x = 40 speed_wall_x = 40
speed_topbottom = 20 speed_topbottom = 20
speed_layer_0 = 25 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 cool_min_layer_time_fan_speed_max = 15
adhesion_type = brim

View file

@ -10,23 +10,14 @@ weight = -4
line_width = 0.35 line_width = 0.35
layer_height = 0.04 layer_height = 0.04
layer_height_0 = 0.26 layer_height_0 = 0.26
shell_thickness = 1.4 wall_thickness = 1.4
top_bottom_thickness = 1.12 top_bottom_thickness = 1.12
top_bottom_pattern = lines
infill_sparse_density = 25 infill_sparse_density = 25
infill_wipe_dist = 0.2
retraction_amount = 5.5 retraction_amount = 5.5
retraction_min_travel = 0.5
retraction_count_max = 30
retraction_extrusion_window = 6 retraction_extrusion_window = 6
speed_print = 30
speed_infill = 50 speed_infill = 50
speed_wall_0 = 30
speed_wall_x = 40 speed_wall_x = 40
speed_topbottom = 20 speed_topbottom = 20
speed_layer_0 = 25 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 cool_min_layer_time_fan_speed_max = 15
adhesion_type = brim

View file

@ -10,22 +10,12 @@ weight = -2
line_width = 0.53 line_width = 0.53
layer_height = 0.15 layer_height = 0.15
layer_height_0 = 0.4 layer_height_0 = 0.4
shell_thickness = 1.59 wall_thickness = 1.59
top_bottom_thickness = 1.2 top_bottom_thickness = 1.2
top_bottom_pattern = lines
infill_sparse_density = 20
infill_wipe_dist = 0.3
retraction_amount = 6 retraction_amount = 6
retraction_min_travel = 0.5 speed_print = 25
retraction_count_max = 30
speed_infill = 55 speed_infill = 55
speed_wall_0 = 25
speed_wall_x = 40 speed_wall_x = 40
speed_topbottom = 20 speed_topbottom = 20
speed_layer_0 = 25 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 cool_min_layer_time_fan_speed_max = 20
adhesion_type = brim

View file

@ -10,22 +10,13 @@ weight = -2
line_width = 0.7 line_width = 0.7
layer_height = 0.2 layer_height = 0.2
layer_height_0 = 0.5 layer_height_0 = 0.5
shell_thickness = 2.1 wall_thickness = 2.1
top_bottom_thickness = 1.6 top_bottom_thickness = 1.6
top_bottom_pattern = lines
infill_sparse_density = 20 infill_sparse_density = 20
infill_wipe_dist = 0.4
retraction_amount = 6 retraction_amount = 6
retraction_min_travel = 0.5 speed_print = 20
retraction_count_max = 30
speed_infill = 40 speed_infill = 40
speed_wall_0 = 20
speed_wall_x = 30 speed_wall_x = 30
speed_topbottom = 20 speed_topbottom = 20
speed_layer_0 = 25 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 cool_min_layer_time_fan_speed_max = 25
adhesion_type = brim

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -163,7 +163,7 @@
"default_arrow": [0.8, 0.8], "default_arrow": [0.8, 0.8],
"logo": [9.5, 2.0], "logo": [9.5, 2.0],
"sidebar": [30.0, 10.0], "sidebar": [35.0, 10.0],
"sidebar_header": [0.0, 4.0], "sidebar_header": [0.0, 4.0],
"sidebar_header_mode_toggle": [0.0, 2.0], "sidebar_header_mode_toggle": [0.0, 2.0],
"sidebar_lining": [0.5, 0.5], "sidebar_lining": [0.5, 0.5],