mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Merge branch '5.7' into CURA-11700-trigger-area-for-selecting-machine
This commit is contained in:
commit
1ebab878fe
7286 changed files with 7543 additions and 7447 deletions
|
@ -1,9 +1,9 @@
|
||||||
version: "5.7.0-beta.0"
|
version: "5.7.0-beta.1"
|
||||||
requirements:
|
requirements:
|
||||||
- "uranium/(latest)@ultimaker/stable"
|
- "uranium/5.7.0-beta.1"
|
||||||
- "curaengine/(latest)@ultimaker/stable"
|
- "curaengine/5.7.0-beta.1"
|
||||||
- "cura_binary_data/(latest)@ultimaker/stable"
|
- "cura_binary_data/5.7.0-beta.1"
|
||||||
- "fdm_materials/(latest)@ultimaker/stable"
|
- "fdm_materials/5.7.0-beta.1"
|
||||||
- "curaengine_plugin_gradual_flow/0.1.0-beta.3"
|
- "curaengine_plugin_gradual_flow/0.1.0-beta.3"
|
||||||
- "dulcificum/latest@ultimaker/testing"
|
- "dulcificum/latest@ultimaker/testing"
|
||||||
- "pysavitar/5.3.0"
|
- "pysavitar/5.3.0"
|
||||||
|
|
|
@ -14,7 +14,7 @@ DEFAULT_CURA_LATEST_URL = "https://software.ultimaker.com/latest.json"
|
||||||
# Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for
|
# Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for
|
||||||
# example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the
|
# example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the
|
||||||
# CuraVersion.py.in template.
|
# CuraVersion.py.in template.
|
||||||
CuraSDKVersion = "8.6.0"
|
CuraSDKVersion = "8.7.0"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from cura.CuraVersion import CuraLatestURL
|
from cura.CuraVersion import CuraLatestURL
|
||||||
|
|
|
@ -138,7 +138,7 @@ class CuraApplication(QtApplication):
|
||||||
# SettingVersion represents the set of settings available in the machine/extruder definitions.
|
# SettingVersion represents the set of settings available in the machine/extruder definitions.
|
||||||
# You need to make sure that this version number needs to be increased if there is any non-backwards-compatible
|
# You need to make sure that this version number needs to be increased if there is any non-backwards-compatible
|
||||||
# changes of the settings.
|
# changes of the settings.
|
||||||
SettingVersion = 22
|
SettingVersion = 23
|
||||||
|
|
||||||
Created = False
|
Created = False
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,19 @@ UM.Dialog
|
||||||
anchors.topMargin: UM.Theme.getSize("default_margin").height
|
anchors.topMargin: UM.Theme.getSize("default_margin").height
|
||||||
anchors.leftMargin: UM.Theme.getSize("default_margin").height
|
anchors.leftMargin: UM.Theme.getSize("default_margin").height
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Cura.TertiaryButton
|
||||||
|
{
|
||||||
|
id: learnMoreButton
|
||||||
|
visible: manager.isUcp
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.topMargin: UM.Theme.getSize("default_margin").height
|
||||||
|
anchors.rightMargin: UM.Theme.getSize("default_margin").height
|
||||||
|
text: catalog.i18nc("@button", "Learn more")
|
||||||
|
iconSource: UM.Theme.getIcon("LinkExternal")
|
||||||
|
isIconOnRightSide: true
|
||||||
|
onClicked: Qt.openUrlExternally("https://support.ultimaker.com/s/article/000002979")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle
|
Rectangle
|
||||||
|
|
|
@ -36,13 +36,23 @@ UM.Dialog
|
||||||
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
anchors.leftMargin: UM.Theme.getSize("default_margin").width
|
||||||
anchors.rightMargin: anchors.leftMargin
|
anchors.rightMargin: anchors.leftMargin
|
||||||
|
|
||||||
|
RowLayout
|
||||||
|
{
|
||||||
UM.Label
|
UM.Label
|
||||||
{
|
{
|
||||||
id: titleLabel
|
id: titleLabel
|
||||||
text: catalog.i18nc("@action:title Don't translate 'Universal Cura Project'", "Summary - Universal Cura Project")
|
text: catalog.i18nc("@action:title Don't translate 'Universal Cura Project'", "Summary - Universal Cura Project")
|
||||||
font: UM.Theme.getFont("large")
|
font: UM.Theme.getFont("large")
|
||||||
}
|
}
|
||||||
|
Cura.TertiaryButton
|
||||||
|
{
|
||||||
|
id: learnMoreButton
|
||||||
|
text: catalog.i18nc("@button", "Learn more")
|
||||||
|
iconSource: UM.Theme.getIcon("LinkExternal")
|
||||||
|
isIconOnRightSide: true
|
||||||
|
onClicked: Qt.openUrlExternally("https://support.ultimaker.com/s/article/000002979")
|
||||||
|
}
|
||||||
|
}
|
||||||
UM.Label
|
UM.Label
|
||||||
{
|
{
|
||||||
id: descriptionLabel
|
id: descriptionLabel
|
||||||
|
|
|
@ -33,12 +33,6 @@ def getMetaData():
|
||||||
"mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml",
|
"mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml",
|
||||||
"mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode
|
"mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"extension": "3mf",
|
|
||||||
"description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"),
|
|
||||||
"mime_type": "application/x-ucp",
|
|
||||||
"mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
metaData["workspace_writer"] = {
|
metaData["workspace_writer"] = {
|
||||||
|
|
|
@ -120,6 +120,8 @@ UM.Dialog
|
||||||
UM.Label
|
UM.Label
|
||||||
{
|
{
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
Layout.preferredHeight: height
|
||||||
|
elide: Text.ElideRight
|
||||||
text: manager.getScriptLabelByKey(modelData.toString())
|
text: manager.getScriptLabelByKey(modelData.toString())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -68,6 +68,11 @@ class VersionUpgrade56to57(VersionUpgrade):
|
||||||
if removed in parser["values"]:
|
if removed in parser["values"]:
|
||||||
del parser["values"][removed]
|
del parser["values"][removed]
|
||||||
|
|
||||||
|
if "brim_outside_only" in parser["values"]:
|
||||||
|
parser["values"]["brim_location"] = "outside" if parser["values"][
|
||||||
|
"brim_outside_only"] == "True" else "everywhere"
|
||||||
|
del parser["values"]["brim_outside_only"]
|
||||||
|
|
||||||
result = io.StringIO()
|
result = io.StringIO()
|
||||||
parser.write(result)
|
parser.write(result)
|
||||||
return [filename], [result.getvalue()]
|
return [filename], [result.getvalue()]
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
"author": "Ultimaker",
|
"author": "Ultimaker",
|
||||||
"manufacturer": "Unknown",
|
"manufacturer": "Unknown",
|
||||||
"position": "0",
|
"position": "0",
|
||||||
"setting_version": 22,
|
"setting_version": 23,
|
||||||
"type": "extruder"
|
"type": "extruder"
|
||||||
},
|
},
|
||||||
"settings":
|
"settings":
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"type": "machine",
|
"type": "machine",
|
||||||
"author": "Unknown",
|
"author": "Unknown",
|
||||||
"manufacturer": "Unknown",
|
"manufacturer": "Unknown",
|
||||||
"setting_version": 22,
|
"setting_version": 23,
|
||||||
"file_formats": "text/x-gcode;model/stl;application/x-wavefront-obj;application/x3g",
|
"file_formats": "text/x-gcode;model/stl;application/x-wavefront-obj;application/x3g",
|
||||||
"visible": false,
|
"visible": false,
|
||||||
"has_materials": true,
|
"has_materials": true,
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -15,40 +15,40 @@ msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size description"
|
msgctxt "gradual_flow_discretisation_step_size description"
|
||||||
msgid "Duration of each step in the gradual flow change"
|
msgid "Duration of each step in the gradual flow change"
|
||||||
msgstr "Duration of each step in the gradual flow change"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled description"
|
msgctxt "gradual_flow_enabled description"
|
||||||
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
||||||
msgstr "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration description"
|
msgctxt "reset_flow_duration description"
|
||||||
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
||||||
msgstr "For any travel move longer than this value, the material flow is reset to the paths target flow"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_discretisation_step_size label"
|
msgctxt "gradual_flow_discretisation_step_size label"
|
||||||
msgid "Gradual flow discretisation step size"
|
msgid "Gradual flow discretisation step size"
|
||||||
msgstr "Gradual flow discretisation step size"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "gradual_flow_enabled label"
|
msgctxt "gradual_flow_enabled label"
|
||||||
msgid "Gradual flow enabled"
|
msgid "Gradual flow enabled"
|
||||||
msgstr "Gradual flow enabled"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration label"
|
msgctxt "max_flow_acceleration label"
|
||||||
msgid "Gradual flow max acceleration"
|
msgid "Gradual flow max acceleration"
|
||||||
msgstr "Gradual flow max acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration label"
|
msgctxt "layer_0_max_flow_acceleration label"
|
||||||
msgid "Initial layer max flow acceleration"
|
msgid "Initial layer max flow acceleration"
|
||||||
msgstr "Initial layer max flow acceleration"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "max_flow_acceleration description"
|
msgctxt "max_flow_acceleration description"
|
||||||
msgid "Maximum acceleration for gradual flow changes"
|
msgid "Maximum acceleration for gradual flow changes"
|
||||||
msgstr "Maximum acceleration for gradual flow changes"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "layer_0_max_flow_acceleration description"
|
msgctxt "layer_0_max_flow_acceleration description"
|
||||||
msgid "Minimum speed for gradual flow changes for the first layer"
|
msgid "Minimum speed for gradual flow changes for the first layer"
|
||||||
msgstr "Minimum speed for gradual flow changes for the first layer"
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "reset_flow_duration label"
|
msgctxt "reset_flow_duration label"
|
||||||
msgid "Reset flow duration"
|
msgid "Reset flow duration"
|
||||||
msgstr "Reset flow duration"
|
msgstr ""
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = D010
|
quality_type = D010
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = D015
|
quality_type = D015
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = D020
|
quality_type = D020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = D020
|
quality_type = D020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = D030
|
quality_type = D030
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = D010
|
quality_type = D010
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = D015
|
quality_type = D015
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = D020
|
quality_type = D020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = D020
|
quality_type = D020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = D030
|
quality_type = D030
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = D010
|
quality_type = D010
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = D015
|
quality_type = D015
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = D020
|
quality_type = D020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = D020
|
quality_type = D020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = D020
|
quality_type = D020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = D030
|
quality_type = D030
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = D010
|
quality_type = D010
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = D015
|
quality_type = D015
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = D020
|
quality_type = D020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = D015
|
quality_type = D015
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = D020
|
quality_type = D020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = D030
|
quality_type = D030
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = D010
|
quality_type = D010
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = D015
|
quality_type = D015
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = D020
|
quality_type = D020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = D020
|
quality_type = D020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = D030
|
quality_type = D030
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = DBE 0.40mm
|
variant = DBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = D010
|
quality_type = D010
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = D015
|
quality_type = D015
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = D020
|
quality_type = D020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = D020
|
quality_type = D020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = D030
|
quality_type = D030
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = FBE 0.40mm
|
variant = FBE 0.40mm
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_005
|
quality_type = Elegoo_layer_005
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_015
|
quality_type = Elegoo_layer_015
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_015
|
quality_type = Elegoo_layer_015
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_010
|
quality_type = Elegoo_layer_010
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_010
|
quality_type = Elegoo_layer_010
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_020
|
quality_type = Elegoo_layer_020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ intent_category = quick
|
||||||
is_experimental = True
|
is_experimental = True
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_030
|
quality_type = Elegoo_layer_030
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_005
|
quality_type = Elegoo_layer_005
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ intent_category = engineering
|
||||||
is_experimental = True
|
is_experimental = True
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_015
|
quality_type = Elegoo_layer_015
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_015
|
quality_type = Elegoo_layer_015
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ intent_category = engineering
|
||||||
is_experimental = True
|
is_experimental = True
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_010
|
quality_type = Elegoo_layer_010
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_010
|
quality_type = Elegoo_layer_010
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ intent_category = engineering
|
||||||
is_experimental = True
|
is_experimental = True
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_020
|
quality_type = Elegoo_layer_020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ intent_category = quick
|
||||||
is_experimental = True
|
is_experimental = True
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_020
|
quality_type = Elegoo_layer_020
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ intent_category = quick
|
||||||
is_experimental = True
|
is_experimental = True
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = Elegoo_layer_030
|
quality_type = Elegoo_layer_030
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 0.40mm_Elegoo_Nozzle
|
variant = 0.40mm_Elegoo_Nozzle
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = fast
|
quality_type = fast
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = fast
|
quality_type = fast
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = high
|
quality_type = high
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_abs
|
material = generic_abs
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_cpe
|
material = generic_cpe
|
||||||
quality_type = fast
|
quality_type = fast
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_cpe
|
material = generic_cpe
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_nylon
|
material = generic_nylon
|
||||||
quality_type = fast
|
quality_type = fast
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_nylon
|
material = generic_nylon
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_pc
|
material = generic_pc
|
||||||
quality_type = fast
|
quality_type = fast
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_pc
|
material = generic_pc
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = fast
|
quality_type = fast
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = fast
|
quality_type = fast
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = high
|
quality_type = high
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_petg
|
material = generic_petg
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = quick
|
intent_category = quick
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = fast
|
quality_type = fast
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = fast
|
quality_type = fast
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = high
|
quality_type = high
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = engineering
|
intent_category = engineering
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = visual
|
intent_category = visual
|
||||||
material = generic_pla
|
material = generic_pla
|
||||||
quality_type = normal
|
quality_type = normal
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = VO 0.4
|
variant = VO 0.4
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = solid
|
intent_category = solid
|
||||||
material = ultimaker_abscf_175
|
material = ultimaker_abscf_175
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 1C
|
variant = 1C
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ version = 4
|
||||||
intent_category = solid
|
intent_category = solid
|
||||||
material = ultimaker_absr_175
|
material = ultimaker_absr_175
|
||||||
quality_type = draft
|
quality_type = draft
|
||||||
setting_version = 22
|
setting_version = 23
|
||||||
type = intent
|
type = intent
|
||||||
variant = 1C
|
variant = 1C
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue