diff --git a/cura/OAuth2/AuthorizationService.py b/cura/OAuth2/AuthorizationService.py index 4e8d28173a..e62e00a793 100644 --- a/cura/OAuth2/AuthorizationService.py +++ b/cura/OAuth2/AuthorizationService.py @@ -305,7 +305,8 @@ class AuthorizationService: message_type = Message.MessageType.ERROR) Logger.warning("Unable to get user profile using auth data from preferences.") self._unable_to_get_data_message.show() - self.getUserProfile(callback) + if self._get_user_profile: + self.getUserProfile(callback) except (ValueError, TypeError): Logger.logException("w", "Could not load auth data from preferences") diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index e6992611c1..164952f9f1 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -915,10 +915,6 @@ class ThreeMFWorkspaceReader(WorkspaceReader): # Prepare the machine self._applyChangesToMachine(global_stack, extruder_stack_dict) - else: - # Just clear the settings now, so that we can change the active machine without conflicts - self._clearMachineSettings(global_stack, {}) - Logger.log("d", "Workspace loading is notifying rest of the code of changes...") # Actually change the active machine. diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index f85f4f7323..a8cdad92bd 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -156,46 +156,6 @@ UM.Dialog } } - WorkspaceSection - { - id: profileSection - title: manager.isUcp? catalog.i18nc("@action:label", "Suggested Profile settings"):catalog.i18nc("@action:label", "Profile settings") - iconSource: UM.Theme.getIcon("Sliders") - content: Column - { - id: profileSettingsValuesTable - spacing: UM.Theme.getSize("default_margin").height - leftPadding: UM.Theme.getSize("medium_button_icon").width + UM.Theme.getSize("default_margin").width - - WorkspaceRow - { - leftLabelText: catalog.i18nc("@action:label", "Name") - rightLabelText: manager.qualityName - visible: manager.isCompatibleMachine - } - - WorkspaceRow - { - leftLabelText: catalog.i18nc("@action:label", "Intent") - rightLabelText: manager.intentName - visible: manager.isCompatibleMachine - } - - WorkspaceRow - { - leftLabelText: catalog.i18nc("@action:label", "Not in profile") - rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.numUserSettings).arg(manager.numUserSettings) - visible: manager.numUserSettings != 0 && manager.isCompatibleMachine - } - - WorkspaceRow - { - leftLabelText: catalog.i18nc("@action:label", "Derivative from") - rightLabelText: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) - visible: manager.numSettingsOverridenByQualityChanges != 0 && manager.isCompatibleMachine - } - } - } WorkspaceSection { id: ucpProfileSection @@ -279,6 +239,47 @@ UM.Dialog } } + WorkspaceSection + { + id: profileSection + title: manager.isUcp? catalog.i18nc("@action:label", "Suggested Profile settings"):catalog.i18nc("@action:label", "Profile settings") + iconSource: UM.Theme.getIcon("Sliders") + content: Column + { + id: profileSettingsValuesTable + spacing: UM.Theme.getSize("default_margin").height + leftPadding: UM.Theme.getSize("medium_button_icon").width + UM.Theme.getSize("default_margin").width + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Name") + rightLabelText: manager.qualityName + visible: manager.isCompatibleMachine + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Intent") + rightLabelText: manager.intentName + visible: manager.isCompatibleMachine + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Not in profile") + rightLabelText: catalog.i18ncp("@action:label", "%1 override", "%1 overrides", manager.numUserSettings).arg(manager.numUserSettings) + visible: manager.numUserSettings != 0 && !manager.isUcp + } + + WorkspaceRow + { + leftLabelText: catalog.i18nc("@action:label", "Derivative from") + rightLabelText: catalog.i18ncp("@action:label", "%1, %2 override", "%1, %2 overrides", manager.numSettingsOverridenByQualityChanges).arg(manager.qualityType).arg(manager.numSettingsOverridenByQualityChanges) + visible: manager.numSettingsOverridenByQualityChanges != 0 && manager.isCompatibleMachine + } + } + } + WorkspaceSection { id: materialSection diff --git a/plugins/3MFWriter/UCPDialog.py b/plugins/3MFWriter/UCPDialog.py index bedfb4d0da..8f38f0bd0a 100644 --- a/plugins/3MFWriter/UCPDialog.py +++ b/plugins/3MFWriter/UCPDialog.py @@ -75,9 +75,9 @@ class UCPDialog(QObject): device.requestWrite( nodes, file_name, - ["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], + ["application/x-ucp"], workspace_handler, - preferred_mimetype_list="application/vnd.ms-package.3dmanufacturing-3dmodel+xml" + preferred_mimetype_list="application/x-ucp" ) except OutputDeviceError.UserCanceledError: self._onRejected() diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index 8cc9e4feba..980aefdf85 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -32,16 +32,22 @@ def getMetaData(): "description": i18n_catalog.i18nc("@item:inlistbox", "3MF file"), "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode - } + }, ] } metaData["workspace_writer"] = { "output": [ { "extension": workspace_extension, - "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project (UCP) file"), + "description": i18n_catalog.i18nc("@item:inlistbox", "Cura Project 3MF file"), "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode + }, + { + "extension": "3mf", + "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), + "mime_type": "application/x-ucp", + "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode } ] } diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml index 0f379479ba..47eb1e5507 100644 --- a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml +++ b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml @@ -120,6 +120,8 @@ UM.Dialog UM.Label { Layout.fillWidth: true + Layout.preferredHeight: height + elide: Text.ElideRight text: manager.getScriptLabelByKey(modelData.toString()) } diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index 2099f6c21d..efe80162b5 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -121,6 +121,7 @@ class SimulationPass(RenderPass): disabled_batch = RenderBatch(self._disabled_shader) head_position = None # Indicates the current position of the print head nozzle_node = None + not_a_vector = Vector(math.nan, math.nan, math.nan) for node in DepthFirstIterator(self._scene.getRoot()): @@ -143,6 +144,10 @@ class SimulationPass(RenderPass): if self._layer_view.getCurrentLayer() > -1 and ((not self._layer_view._only_show_top_layers) or (not self._layer_view.getCompatibilityMode())): start = 0 end = 0 + vertex_before_head = not_a_vector + vertex_after_head = not_a_vector + vertex_distance_ratio = 0.0 + towards_next_vertex = 0 element_counts = layer_data.getElementCounts() for layer in sorted(element_counts.keys()): # In the current layer, we show just the indicated paths @@ -159,6 +164,8 @@ class SimulationPass(RenderPass): ratio = self._layer_view.getCurrentPath() - math.floor(self._layer_view.getCurrentPath()) pos_a = Vector(polygon.data[index][0], polygon.data[index][1], polygon.data[index][2]) + vertex_before_head = pos_a + vertex_distance_ratio = ratio if ratio <= 0.0001 or index + 1 == len(polygon.data): # in case there multiple polygons and polygon changes, the first point has the same value as the last point in the previous polygon head_position = pos_a + node.getWorldPosition() @@ -168,6 +175,8 @@ class SimulationPass(RenderPass): polygon.data[index + 1][2]) vec = pos_a * (1.0 - ratio) + pos_b * ratio head_position = vec + node.getWorldPosition() + vertex_after_head = pos_b + towards_next_vertex = 2 # Add two to the index to print the current and next vertices as an 'unfinished' line (to the nozzle). break break if self._layer_view.getMinimumLayer() > layer: @@ -187,6 +196,11 @@ class SimulationPass(RenderPass): self._current_shader = self._layer_shader self._switching_layers = True + # reset 'last vertex' + self._layer_shader.setUniformValue("u_last_vertex", not_a_vector) + self._layer_shader.setUniformValue("u_next_vertex", not_a_vector) + self._layer_shader.setUniformValue("u_last_line_ratio", 1.0) + # The first line does not have a previous line: add a MoveCombingType in front for start detection # this way the first start of the layer can also be drawn prev_line_types = numpy.concatenate([numpy.asarray([LayerPolygon.MoveCombingType], dtype = numpy.float32), layer_data._attributes["line_types"]["value"]]) @@ -203,6 +217,17 @@ class SimulationPass(RenderPass): current_layer_batch.addItem(node.getWorldTransformation(), layer_data) current_layer_batch.render(self._scene.getActiveCamera()) + # Last line may be partial + if vertex_after_head != not_a_vector and vertex_after_head != not_a_vector: + self._layer_shader.setUniformValue("u_last_vertex", vertex_before_head) + self._layer_shader.setUniformValue("u_next_vertex", vertex_after_head) + self._layer_shader.setUniformValue("u_last_line_ratio", vertex_distance_ratio) + last_line_start = current_layer_end + last_line_end = current_layer_end + towards_next_vertex + last_line_batch = RenderBatch(self._layer_shader, type = RenderBatch.RenderType.Solid, mode=RenderBatch.RenderMode.Lines, range = (last_line_start, last_line_end)) + last_line_batch.addItem(node.getWorldTransformation(), layer_data) + last_line_batch.render(self._scene.getActiveCamera()) + self._old_current_layer = self._layer_view.getCurrentLayer() self._old_current_path = self._layer_view.getCurrentPath() diff --git a/plugins/SimulationView/layers3d.shader b/plugins/SimulationView/layers3d.shader index b43d998690..508126e163 100644 --- a/plugins/SimulationView/layers3d.shader +++ b/plugins/SimulationView/layers3d.shader @@ -19,6 +19,10 @@ vertex41core = uniform highp mat4 u_normalMatrix; + uniform vec3 u_last_vertex; + uniform vec3 u_next_vertex; + uniform float u_last_line_ratio; + in highp vec4 a_vertex; in lowp vec4 a_color; in lowp vec4 a_material_color; @@ -134,6 +138,10 @@ vertex41core = void main() { vec4 v1_vertex = a_vertex; + if (v1_vertex.xyz == u_next_vertex) + { + v1_vertex.xyz = mix(u_last_vertex, u_next_vertex, u_last_line_ratio); + } v1_vertex.y -= a_line_dim.y / 2; // half layer down vec4 world_space_vert = u_modelMatrix * v1_vertex; @@ -427,6 +435,10 @@ u_max_feedrate = 1 u_min_thickness = 0 u_max_thickness = 1 +u_last_vertex = [0.0, 0.0, 0.0] +u_next_vertex = [0.0, 0.0, 0.0] +u_last_line_ratio = 1.0 + [bindings] u_modelMatrix = model_matrix u_viewMatrix = view_matrix diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index 7a842ac480..035f893405 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2023-09-03 18:15+0200\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -5112,6 +5112,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Jednotka" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po b/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index 09565a411d..ecf7cf0b3c 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -4731,6 +4731,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index c45016081f..a04b7e5964 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5096,6 +5096,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Einheit" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/de_DE/gradual_flow_settings.def.json.po b/resources/i18n/de_DE/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/de_DE/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index d1331d9c06..48e3e99205 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5097,6 +5097,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidad" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/es_ES/gradual_flow_settings.def.json.po b/resources/i18n/es_ES/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/es_ES/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index ddb1c5866c..f8a0313836 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2022-07-15 10:53+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -5065,6 +5065,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index 199f796993..bc58fb9ca8 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5094,6 +5094,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unité" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/gradual_flow_settings.def.json.pot b/resources/i18n/gradual_flow_settings.def.json.pot new file mode 100644 index 0000000000..7d9afba68f --- /dev/null +++ b/resources/i18n/gradual_flow_settings.def.json.pot @@ -0,0 +1,58 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + + + + + + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +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." +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index 8e94f1077e..c3b1de85aa 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2020-03-24 09:36+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: ATI-SZOFT\n" @@ -5079,6 +5079,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/hu_HU/gradual_flow_settings.def.json.po b/resources/i18n/hu_HU/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/hu_HU/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index 1f21b8339a..15a7a1c88f 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5097,6 +5097,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unità" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/it_IT/gradual_flow_settings.def.json.po b/resources/i18n/it_IT/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/it_IT/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index c34720f0c2..c9e40dee25 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5080,6 +5080,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "ユニット" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 4d686f6cd6..21641fa7ea 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5083,6 +5083,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "단위" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index e14f718628..c046657690 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5091,6 +5091,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Eenheid" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index b21f42ed6e..2261bb2de0 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2021-09-07 08:02+0200\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -5082,6 +5082,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/pl_PL/gradual_flow_settings.def.json.po b/resources/i18n/pl_PL/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/pl_PL/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index cced0fec02..50157a02e3 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2023-11-19 19:51+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -5108,6 +5108,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidade" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index 8c19bee65c..e3ddb9e868 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5098,6 +5098,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Unidade" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index eed66872d2..238063e01e 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5121,6 +5121,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Единица" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index d55b7a0d7d..60e8538594 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5097,6 +5097,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "Birim" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 13fa048673..300d25211a 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -5085,6 +5085,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "单位" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index cc09d840ce..241a1f1f5d 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-11 12:52+0100\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -5077,6 +5077,10 @@ msgctxt "@title:column Unit of measurement" msgid "Unit" msgstr "" +msgctxt "@item:inlistbox" +msgid "Universal Cura Project" +msgstr "" + msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" diff --git a/resources/i18n/zh_TW/gradual_flow_settings.def.json.po b/resources/i18n/zh_TW/gradual_flow_settings.def.json.po new file mode 100644 index 0000000000..363b0994aa --- /dev/null +++ b/resources/i18n/zh_TW/gradual_flow_settings.def.json.po @@ -0,0 +1,54 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: Uranium json setting files\n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"PO-Revision-Date: 2024-03-11 11:28+0000\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duration of each step in the gradual flow change" + +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." +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." + +msgctxt "reset_flow_duration description" +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" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Gradual flow discretisation step size" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Gradual flow enabled" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Gradual flow max acceleration" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Initial layer max flow acceleration" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximum acceleration for gradual flow changes" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimum speed for gradual flow changes for the first layer" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reset flow duration" diff --git a/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg deleted file mode 100644 index a833556bd8..0000000000 --- a/resources/intent/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm_solid.inst.cfg +++ /dev/null @@ -1,17 +0,0 @@ -[general] -definition = ultimaker_methodx -name = Solid -version = 4 - -[metadata] -intent_category = solid -is_experimental = True -material = ultimaker_sr30_175 -quality_type = draft -setting_version = 22 -type = intent -variant = 2XA - -[values] -infill_sparse_density = 100 - diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg deleted file mode 100644 index 01a55c85a4..0000000000 --- a/resources/intent/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm_solid.inst.cfg +++ /dev/null @@ -1,17 +0,0 @@ -[general] -definition = ultimaker_methodxl -name = Solid -version = 4 - -[metadata] -intent_category = solid -is_experimental = True -material = ultimaker_sr30_175 -quality_type = draft -setting_version = 22 -type = intent -variant = 2XA - -[values] -infill_sparse_density = 100 - diff --git a/resources/qml/Menus/FileMenu.qml b/resources/qml/Menus/FileMenu.qml index 5d252a32ba..9589a9da34 100644 --- a/resources/qml/Menus/FileMenu.qml +++ b/resources/qml/Menus/FileMenu.qml @@ -51,6 +51,7 @@ Cura.Menu "filter_by_machine": false, "file_type": "workspace", "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + "limit_mimetypes":["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], }; if (UM.Preferences.getValue("cura/dialog_on_project_save")) { diff --git a/resources/qml/Menus/SaveProjectMenu.qml b/resources/qml/Menus/SaveProjectMenu.qml index 2140d5e0ef..cd2b82daeb 100644 --- a/resources/qml/Menus/SaveProjectMenu.qml +++ b/resources/qml/Menus/SaveProjectMenu.qml @@ -28,7 +28,12 @@ Cura.Menu // Prevent shortcut triggering if the item is disabled! return } - var args = { "filter_by_machine": false, "file_type": "workspace", "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml" }; + var args = { + "filter_by_machine": false, + "file_type": "workspace", + "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + "limit_mimetypes": ["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], + }; if (UM.Preferences.getValue("cura/dialog_on_project_save")) { saveWorkspaceDialog.deviceId = model.id