From bd55f5ecf42f8b5a956f050ac78dc1d63c7a3918 Mon Sep 17 00:00:00 2001 From: Rijk van Manen Date: Thu, 26 Jan 2023 11:20:28 +0100 Subject: [PATCH 1/9] Add new setting for the narrow skin region width Small Top/Bottom regions are filled with walls instead of the normal Top/Bottom pattern. This helps to avoids jerky motions. CURA-10201 --- resources/definitions/fdmprinter.def.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 89d928eb7b..d5817def57 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1649,6 +1649,19 @@ "limit_to_extruder": "top_bottom_extruder_nr", "settable_per_mesh": true }, + "small_skin_width": + { + "label": "Small Top/Bottom width", + "description": "Small Top/Bottom regions are filled with walls instead of the normal Top/Bottom pattern. This helps to avoids jerky motions.", + "value": "skin_line_width * 2", + "default_value": 1, + "minimum_value": "0", + "maximum_value_warning": "skin_line_width * 10", + "type": "float", + "enabled": "(top_layers > 0 or bottom_layers > 0) and top_bottom_pattern != 'concentric'", + "limit_to_extruder": "top_bottom_extruder_nr", + "settable_per_mesh": true + }, "skin_no_small_gaps_heuristic": { "label": "No Skin in Z Gaps", From 8410f8418405cb3a1d9f6e710ce4bd04fe202b16 Mon Sep 17 00:00:00 2001 From: Rijk van Manen Date: Thu, 26 Jan 2023 11:31:27 +0100 Subject: [PATCH 2/9] add new setting to expert CURA-10201 --- resources/setting_visibility/expert.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 92196391ba..101fdc2d63 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -58,6 +58,7 @@ top_bottom_pattern_0 skin_monotonic connect_skin_polygons skin_angles +small_skin_width skin_no_small_gaps_heuristic skin_outline_count ironing_enabled From 1023eb88672f32025be3dc0e58334a3080a8a0d9 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 17 Mar 2023 16:23:16 +0100 Subject: [PATCH 3/9] Add "smart brim" setting CURA-10032 --- resources/definitions/fdmprinter.def.json | 10 ++++++++++ resources/setting_visibility/expert.cfg | 1 + 2 files changed, 11 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 766c1437d4..6c3ad679be 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5816,6 +5816,16 @@ "settable_per_mesh": false, "settable_per_extruder": true }, + "smart_brim_ordering": { + "label": "Smart Brim", + "description": "Swap print order of the innermost and second innermost brim lines. This improves brim removal.", + "type": "bool", + "enabled": "resolveOrValue('adhesion_type') == 'brim'", + "default_value": false, + "limit_to_extruder": "skirt_brim_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": false + }, "raft_margin": { "label": "Raft Extra Margin", diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 2621982e18..9ec410adcf 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -309,6 +309,7 @@ brim_width brim_gap brim_line_count brim_outside_only +smart_brim_ordering raft_margin raft_smoothing raft_airgap From 01df365d06b4c17c4bb6194101e21bcfe4333e04 Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Fri, 17 Mar 2023 15:24:30 +0000 Subject: [PATCH 4/9] Applied printer-linter format --- resources/definitions/fdmprinter.def.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 6c3ad679be..75169bbe73 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5816,7 +5816,8 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "smart_brim_ordering": { + "smart_brim_ordering": + { "label": "Smart Brim", "description": "Swap print order of the innermost and second innermost brim lines. This improves brim removal.", "type": "bool", From 1dfdf46d0940e974e550a21cf4b30f06f39b803f Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Mon, 20 Mar 2023 13:45:58 +0100 Subject: [PATCH 5/9] Use more predictable settings-name CURA-10032 --- resources/definitions/fdmprinter.def.json | 2 +- resources/setting_visibility/expert.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 75169bbe73..b5361e7751 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5816,7 +5816,7 @@ "settable_per_mesh": false, "settable_per_extruder": true }, - "smart_brim_ordering": + "brim_smart_ordering": { "label": "Smart Brim", "description": "Swap print order of the innermost and second innermost brim lines. This improves brim removal.", diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 9ec410adcf..3991791236 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -309,7 +309,7 @@ brim_width brim_gap brim_line_count brim_outside_only -smart_brim_ordering +brim_smart_ordering raft_margin raft_smoothing raft_airgap From 7a4f441a2d481ea43ab9768b8793b527fa456cb5 Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Mon, 20 Mar 2023 12:57:20 +0000 Subject: [PATCH 6/9] update translations --- resources/i18n/cs_CZ/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/de_DE/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/es_ES/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/fdmprinter.def.json.pot | 12 +++++++++++- resources/i18n/fi_FI/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/fr_FR/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/hu_HU/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/it_IT/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/ja_JP/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/ko_KR/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/nl_NL/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/pl_PL/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/pt_BR/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/pt_PT/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/ru_RU/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/tr_TR/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/zh_CN/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/zh_TW/fdmprinter.def.json.po | 12 +++++++++++- 18 files changed, 198 insertions(+), 18 deletions(-) diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 5ad6a09ef1..6111813d97 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: 2023-02-16 20:35+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -3761,6 +3761,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Drobné části budou vytištěny v procentech jejich normální rychlosti tisku. Pomalejší tisk může pomoci s přilnavostí a přesností." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4286,6 +4291,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "Povrchová energie." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index bbcfeb7d06..764be078fc 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3758,6 +3758,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Bei kleinen Details wird die Geschwindigkeit auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4283,6 +4288,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "Oberflächenenergie." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 2e7413e271..90cfa6baa5 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3758,6 +3758,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Las pequeñas partes se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4283,6 +4288,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "Energía de la superficie." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index 3628067076..118cdab4b2 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -4796,6 +4796,16 @@ msgctxt "brim_inside_margin description" msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes." msgstr "" +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "raft_margin label" msgid "Raft Extra Margin" diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index 2d0ec6097e..c30ba39cba 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -3757,6 +3757,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "" +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4285,6 +4290,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "" +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index dd20ffac42..09acdfa3dd 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3758,6 +3758,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Les petites structures seront imprimées à ce pourcentage de la vitesse d'impression normale. Une impression plus lente peut aider à l'adhésion et à la précision." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4283,6 +4288,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "Énergie de la surface." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 6f644c489d..f28c462798 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -3762,6 +3762,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "" +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4290,6 +4295,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "Felületi energia." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 67ae5955ba..0622797560 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3758,6 +3758,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "I dettagli di piccole dimensioni verranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4283,6 +4288,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "Energia superficiale." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 8b2b2234d8..8efa0c92b7 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3758,6 +3758,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4283,6 +4288,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "表面エネルギー。" +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 9da1283348..05160e5aae 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3756,6 +3756,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4281,6 +4286,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "표면의 에너지입니다." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index 49cb1d5afa..bce752cbac 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3758,6 +3758,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Kleine kernmerken worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid. Langzamer printen kan de hechting en nauwkeurigheid verbeteren." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4283,6 +4288,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "Oppervlakte-energie." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 7503612301..789d8ee598 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -3763,6 +3763,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Małe obiekty zostaną wydrukowane z zadanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może poprawić przyczepność i dokładność." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4291,6 +4296,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "Energia powierzchni." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 983ac1980e..138a62297b 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: 2023-02-17 16:31+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -3764,6 +3764,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4292,6 +4297,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "Energia de superfície." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index ca7acbd778..e4fff43e3b 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3758,6 +3758,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Os elementos pequenos serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4283,6 +4288,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "Energia da superfície." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index 76d155139d..bbda792722 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3758,6 +3758,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4283,6 +4288,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "Поверхностная энергия." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index cfe6d1934f..0cfce8c20b 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3758,6 +3758,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4283,6 +4288,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "Yüzey enerjisi." +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index 90401bac1a..e8c7f46e57 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3758,6 +3758,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4283,6 +4288,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "表面能。" +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index 8f76d34066..e40b32fe1c 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-16 17:19+0000\n" +"POT-Creation-Date: 2023-03-20 12:56+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -3764,6 +3764,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "細部模式將以正常列印速度的此百分比值列印。 較慢的列印有助於黏合和精度。" +#: fdmprinter.def.json +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "" + #: fdmprinter.def.json msgctxt "z_seam_corner option z_seam_corner_weighted" msgid "Smart Hiding" @@ -4292,6 +4297,11 @@ msgctxt "material_surface_energy description" msgid "Surface energy." msgstr "表面能量。" +#: fdmprinter.def.json +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "" + #: fdmprinter.def.json msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." From 5c0345a475049ed33844ef00017e03df2527ffab Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Mon, 20 Mar 2023 15:46:12 +0100 Subject: [PATCH 7/9] enable smart brim ordering by default --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index b5361e7751..119f364eb5 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5822,7 +5822,7 @@ "description": "Swap print order of the innermost and second innermost brim lines. This improves brim removal.", "type": "bool", "enabled": "resolveOrValue('adhesion_type') == 'brim'", - "default_value": false, + "default_value": true, "limit_to_extruder": "skirt_brim_extruder_nr", "settable_per_mesh": false, "settable_per_extruder": false From 837171ac5cab98db4ff1b6441dd14f68dcd43e8f Mon Sep 17 00:00:00 2001 From: Casper Lamboo Date: Mon, 20 Mar 2023 17:27:07 +0100 Subject: [PATCH 8/9] Apply suggestions from code review --- resources/definitions/fdmprinter.def.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index d5817def57..bd7ff6c177 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1651,8 +1651,8 @@ }, "small_skin_width": { - "label": "Small Top/Bottom width", - "description": "Small Top/Bottom regions are filled with walls instead of the normal Top/Bottom pattern. This helps to avoids jerky motions.", + "label": "Small Top/Bottom Width", + "description": "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions.", "value": "skin_line_width * 2", "default_value": 1, "minimum_value": "0", @@ -1660,7 +1660,8 @@ "type": "float", "enabled": "(top_layers > 0 or bottom_layers > 0) and top_bottom_pattern != 'concentric'", "limit_to_extruder": "top_bottom_extruder_nr", - "settable_per_mesh": true + "settable_per_mesh": true, + "unit": "mm" }, "skin_no_small_gaps_heuristic": { From 9fd0b6b4d0bf15b0fbd9c4fde2b17217da6ea489 Mon Sep 17 00:00:00 2001 From: casperlamboo Date: Tue, 21 Mar 2023 13:32:35 +0000 Subject: [PATCH 9/9] update translations --- resources/i18n/cs_CZ/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/de_DE/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/es_ES/cura.po | 20 ++++++++++---------- resources/i18n/es_ES/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/fdmprinter.def.json.pot | 12 +++++++++++- resources/i18n/fi_FI/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/fr_FR/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/hu_HU/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/it_IT/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/ja_JP/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/ko_KR/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/nl_NL/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/pl_PL/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/pt_BR/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/pt_PT/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/ru_RU/cura.po | 20 ++++++++++---------- resources/i18n/ru_RU/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/tr_TR/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/zh_CN/fdmprinter.def.json.po | 12 +++++++++++- resources/i18n/zh_TW/fdmprinter.def.json.po | 12 +++++++++++- 20 files changed, 218 insertions(+), 38 deletions(-) diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 6111813d97..4422b41a53 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: 2023-02-16 20:35+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -3751,6 +3751,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Teplota tisku malých vrstev" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3761,6 +3766,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Drobné části budou vytištěny v procentech jejich normální rychlosti tisku. Pomalejší tisk může pomoci s přilnavostí a přesností." +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 764be078fc..20d4292d38 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3748,6 +3748,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Drucktemperatur für kleine Schichten" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3758,6 +3763,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Bei kleinen Details wird die Geschwindigkeit auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden." +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index 1d8179ba44..2c362b6c72 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -811,18 +811,18 @@ msgctxt "@text" msgid "Unknown error." msgstr "Error desconocido." -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "El archivo del proyecto {0} contiene un tipo de máquina desconocida {1}. No se puede importar la máquina, en su lugar, se importarán los modelos." -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550 msgctxt "@info:title" msgid "Open Project File" msgstr "Abrir archivo de proyecto" -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631 #: plugins/3MFReader/WorkspaceDialog.qml:99 #: plugins/3MFReader/WorkspaceDialog.qml:127 #: plugins/3MFReader/WorkspaceDialog.qml:134 @@ -830,27 +830,27 @@ msgctxt "@button" msgid "Create new" msgstr "Crear nuevo" -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "El archivo de proyecto {0} está repentinamente inaccesible: {1}." -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694 -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702 -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "No se puede abrir el archivo de proyecto" -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "El archivo de proyecto {0} está dañado: {1}." -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 90cfa6baa5..879c4daffe 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3748,6 +3748,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Temperatura de impresión para capas pequeñas" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3758,6 +3763,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Las pequeñas partes se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión." +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index 118cdab4b2..c5d9522761 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -1551,6 +1551,16 @@ msgctxt "skin_angles description" msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." msgstr "" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "skin_no_small_gaps_heuristic label" msgid "No Skin in Z Gaps" diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index c30ba39cba..f547dac4b1 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -3747,6 +3747,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Tulostuslämpötila lopussa" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3757,6 +3762,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "" +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 09acdfa3dd..99cd70d2b9 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3748,6 +3748,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Température d'impression pour couches fines" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3758,6 +3763,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Les petites structures seront imprimées à ce pourcentage de la vitesse d'impression normale. Une impression plus lente peut aider à l'adhésion et à la précision." +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index f28c462798..8fb18340ca 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -3752,6 +3752,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Befejező nyomtatási hőmérséklet" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3762,6 +3767,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "" +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 0622797560..08b8fa42b8 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3748,6 +3748,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Temperatura di stampa per piccoli strati" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3758,6 +3763,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "I dettagli di piccole dimensioni verranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione." +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 8efa0c92b7..771d02f4bd 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3748,6 +3748,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "最終印刷温度" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3758,6 +3763,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 05160e5aae..11e46febc8 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3746,6 +3746,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "소형 레이어 프린팅 온도" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3756,6 +3761,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index bce752cbac..0ab8b3fd58 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3748,6 +3748,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "De printtemperatuur van kleine lagens" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3758,6 +3763,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Kleine kernmerken worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid. Langzamer printen kan de hechting en nauwkeurigheid verbeteren." +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 789d8ee598..36fc0e9ac5 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -3753,6 +3753,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Końcowa Temp. Druku" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3763,6 +3768,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Małe obiekty zostaną wydrukowane z zadanym procentem ich normalnej prędkości drukowania. Wolniejsze drukowanie może poprawić przyczepność i dokładność." +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 138a62297b..2e3a7ac249 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: 2023-02-17 16:31+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" @@ -3754,6 +3754,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Temperatura de Impressão Final" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3764,6 +3769,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão." +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index e4fff43e3b..36c99e1bee 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3748,6 +3748,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Temperatura de impressão de camada pequena" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3758,6 +3763,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Os elementos pequenos serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão." +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 0c2c1856d8..394a1977f3 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -807,18 +807,18 @@ msgctxt "@text" msgid "Unknown error." msgstr "Неизвестная ошибка." -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:559 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:547 #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Файл проекта {0} содержит неизвестный тип принтера {1}. Не удалось импортировать принтер. Вместо этого будут импортированы модели." -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:562 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:550 msgctxt "@info:title" msgid "Open Project File" msgstr "Открыть файл проекта" -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:643 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:631 #: plugins/3MFReader/WorkspaceDialog.qml:99 #: plugins/3MFReader/WorkspaceDialog.qml:127 #: plugins/3MFReader/WorkspaceDialog.qml:134 @@ -826,27 +826,27 @@ msgctxt "@button" msgid "Create new" msgstr "Создать новый" -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:693 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:681 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Файл проекта {0} внезапно стал недоступен: {1}.." -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:694 -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:702 -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:721 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:682 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:690 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:709 msgctxt "@info:title" msgid "Can't Open Project File" msgstr "Невозможно открыть файл проекта" -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:701 -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:719 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:689 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:707 #, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Файл проекта {0} поврежден: {1}." -#: plugins/3MFReader/ThreeMFWorkspaceReader.py:766 +#: plugins/3MFReader/ThreeMFWorkspaceReader.py:754 #, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index bbda792722..169355a106 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3748,6 +3748,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Температура малослойной печати" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3758,6 +3763,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index 0cfce8c20b..58b7edb199 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3748,6 +3748,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Küçük Katmanlı Baskı Sıcaklığı" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3758,6 +3763,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "Küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index e8c7f46e57..c15a4d0289 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -3748,6 +3748,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "小型层打印温度" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3758,6 +3763,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index e40b32fe1c..148a9c0ce6 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2023-03-20 12:56+0000\n" +"POT-Creation-Date: 2023-03-21 13:32+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -3754,6 +3754,11 @@ msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "最終列印溫度" +#: fdmprinter.def.json +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "" + #: fdmprinter.def.json msgctxt "small_feature_speed_factor_0 description" msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." @@ -3764,6 +3769,11 @@ msgctxt "small_feature_speed_factor description" msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." msgstr "細部模式將以正常列印速度的此百分比值列印。 較慢的列印有助於黏合和精度。" +#: fdmprinter.def.json +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions." +msgstr "" + #: fdmprinter.def.json msgctxt "brim_smart_ordering label" msgid "Smart Brim"