mirror of
https://github.com/Ultimaker/Cura.git
synced 2026-01-02 12:50:36 -07:00
Merge branch '5.11' into CURA-12717_warn_on_auth_need
Some checks failed
conan-package-resources / conan-package (push) Has been cancelled
conan-package / conan-package (push) Has been cancelled
printer-linter-format / Printer linter auto format (push) Has been cancelled
unit-test / Run unit tests (push) Has been cancelled
conan-package-resources / signal-curator (push) Has been cancelled
Some checks failed
conan-package-resources / conan-package (push) Has been cancelled
conan-package / conan-package (push) Has been cancelled
printer-linter-format / Printer linter auto format (push) Has been cancelled
unit-test / Run unit tests (push) Has been cancelled
conan-package-resources / signal-curator (push) Has been cancelled
This commit is contained in:
commit
ae3337f6ec
25 changed files with 85 additions and 82 deletions
|
|
@ -257,7 +257,10 @@ class ExtruderManager(QObject):
|
|||
painted_extruders = node.callDecoration("getPaintedExtruders")
|
||||
if painted_extruders is not None:
|
||||
for extruder_nr in painted_extruders:
|
||||
used_extruder_stack_ids.add(self.extruderIds[str(extruder_nr)])
|
||||
try:
|
||||
used_extruder_stack_ids.add(self.extruderIds[str(extruder_nr)])
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
# Check limit to extruders
|
||||
limit_to_extruder_feature_list = ["wall_0_extruder_nr",
|
||||
|
|
|
|||
|
|
@ -264,7 +264,7 @@ class PaintView(CuraView):
|
|||
|
||||
return PaintClearCommand(self._paint_texture,
|
||||
self._current_bits_ranges,
|
||||
set_value,
|
||||
self._shiftTextureValue(set_value),
|
||||
self._getSliceableObjectDecorator())
|
||||
|
||||
def clearPaint(self):
|
||||
|
|
|
|||
|
|
@ -7939,13 +7939,13 @@
|
|||
"minimum_value": "0.05",
|
||||
"maximum_value": "5",
|
||||
"maximum_value_warning": "line_width * 2",
|
||||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": false
|
||||
"settable_per_mesh": true,
|
||||
"settable_per_extruder": true
|
||||
},
|
||||
"multi_material_paint_deepness":
|
||||
"multi_material_paint_depth":
|
||||
{
|
||||
"label": "Multi-material Deepness",
|
||||
"description": "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary.",
|
||||
"label": "Multi-material Depth",
|
||||
"description": "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"enabled": "extruders_enabled_count > 1",
|
||||
|
|
@ -7953,8 +7953,8 @@
|
|||
"value": "line_width * 10",
|
||||
"minimum_value": "line_width",
|
||||
"minimum_value_warning": "line_width * 2",
|
||||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": false
|
||||
"settable_per_mesh": true,
|
||||
"settable_per_extruder": true
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -244,7 +244,7 @@
|
|||
"infill_pattern": { "value": "'zigzag' if infill_sparse_density > 50 else 'grid'" },
|
||||
"infill_sparse_density": { "value": 15 },
|
||||
"infill_wall_line_count": { "value": "1 if infill_sparse_density > 80 else 0" },
|
||||
"initial_bottom_layers": { "value": "2 if extruderValueFromContainer(extruder_nr, 'bottom_layers', 2) == bottom_layers else bottom_layers" },
|
||||
"initial_bottom_layers": { "value": "2 if extruderValueFromContainer(top_bottom_extruder_nr, 'bottom_layers', 2) == bottom_layers else bottom_layers" },
|
||||
"jerk_flooring":
|
||||
{
|
||||
"maximum_value_warning": "machine_max_jerk_xy / 2",
|
||||
|
|
|
|||
|
|
@ -2565,8 +2565,8 @@ msgctxt "skin_monotonic label"
|
|||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr "Monotónní pořadí horních / dolních povrchů"
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -4329,8 +4329,8 @@ msgctxt "material_brand description"
|
|||
msgid "The brand of material used."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "machine_acceleration description"
|
||||
|
|
|
|||
|
|
@ -6289,8 +6289,8 @@ msgctxt "material_max_flowrate description"
|
|||
msgid "Maximum flow rate that the printer can extrude for the material"
|
||||
msgstr "Die maximale Flow Rate, mit der der Drucker mit dem verwendeten Material extrudieren kann"
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr "Multi-Material-Tiefe"
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -6309,8 +6309,8 @@ msgctxt "machine_scan_first_layer label"
|
|||
msgid "Scan the first layer"
|
||||
msgstr "Erste Schicht scannen"
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr "Die Tiefe der bemalten Details innerhalb des Modells. Eine höhere Tiefe ermöglicht eine bessere Verzahnung, steigert jedoch die Slicing-Zeit und den Speicherbedarf. Wählen Sie einen sehr hohen Wert, um eine möglichst große Tiefe zu erreichen. Die tatsächlich berechnete Tiefe kann variieren."
|
||||
|
||||
msgctxt "build_volume_fan_speed description"
|
||||
|
|
|
|||
|
|
@ -6289,8 +6289,8 @@ msgctxt "material_max_flowrate description"
|
|||
msgid "Maximum flow rate that the printer can extrude for the material"
|
||||
msgstr "Tasa de flujo máximo que la impresora puede extruir para el material"
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr "Profundidad multimaterial"
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -6309,8 +6309,8 @@ msgctxt "machine_scan_first_layer label"
|
|||
msgid "Scan the first layer"
|
||||
msgstr "Escanear la primera capa"
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr "La profundidad de los detalles pintados dentro del modelo. Una profundidad más alta proporcionará un mejor enclavamiento, pero aumentará el tiempo de trozeado y la memoria. Establezca un valor muy alto para que vaya lo más profundo posible. La profundidad calculada exactamente puede variar."
|
||||
|
||||
msgctxt "build_volume_fan_speed description"
|
||||
|
|
|
|||
|
|
@ -5104,12 +5104,12 @@ msgctxt "multi_material_paint_resolution description"
|
|||
msgid "The precision of the details when generating multi-material shapes based on painting data. A lower precision will provide more details, but increase the slicing time and memory."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "meshfix label"
|
||||
|
|
|
|||
|
|
@ -2560,8 +2560,8 @@ msgctxt "skin_monotonic label"
|
|||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -4324,8 +4324,8 @@ msgctxt "material_brand description"
|
|||
msgid "The brand of material used."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "machine_acceleration description"
|
||||
|
|
|
|||
|
|
@ -6289,8 +6289,8 @@ msgctxt "material_max_flowrate description"
|
|||
msgid "Maximum flow rate that the printer can extrude for the material"
|
||||
msgstr "Débit maximum que l'imprimante peut extruder pour le matériau."
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr "Profondeur multi-matériaux"
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -6309,8 +6309,8 @@ msgctxt "machine_scan_first_layer label"
|
|||
msgid "Scan the first layer"
|
||||
msgstr "Numériser la première couche"
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr "La profondeur des détails peints à l'intérieur du modèle. Une plus grande profondeur permettra un meilleur emboîtement, mais augmentera le temps de découpage et la mémoire. Définissez une valeur très élevée pour aller aussi loin que possible. La profondeur réellement calculée peut varier."
|
||||
|
||||
msgctxt "build_volume_fan_speed description"
|
||||
|
|
|
|||
|
|
@ -2567,8 +2567,8 @@ msgctxt "skin_monotonic label"
|
|||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -4331,8 +4331,8 @@ msgctxt "material_brand description"
|
|||
msgid "The brand of material used."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "machine_acceleration description"
|
||||
|
|
|
|||
|
|
@ -6290,8 +6290,8 @@ msgctxt "material_max_flowrate description"
|
|||
msgid "Maximum flow rate that the printer can extrude for the material"
|
||||
msgstr "Il flusso massimo estrudibile per il materiale"
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr "Profondità multimateriale"
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -6310,8 +6310,8 @@ msgctxt "machine_scan_first_layer label"
|
|||
msgid "Scan the first layer"
|
||||
msgstr "Scansiona il primo strato"
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr "La profondità del dettaglio dipinto nel modello. Una profondità maggiore fornirà un incastro migliore ma aumenterà il tempo di slicing e la memoria utilizzata. Imposta un valore molto alto per andare più possibile in profondità. La profondità reale calcolata può variare."
|
||||
|
||||
msgctxt "build_volume_fan_speed description"
|
||||
|
|
|
|||
|
|
@ -2560,8 +2560,8 @@ msgctxt "skin_monotonic label"
|
|||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr "上面/底面の方向一貫性"
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr "複数材料の深さ"
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -4324,8 +4324,8 @@ msgctxt "material_brand description"
|
|||
msgid "The brand of material used."
|
||||
msgstr "使用されている材料のブランドです。"
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr "ペイントした部分に対するモデル内部の深さです。より深くすることでより強く結合しますが、メモリー使用量とスライスにかかる時間が増加します。出来るだけ深くなるよう高い値を設定してください。実際に計算される深さは変わる場合があります。"
|
||||
|
||||
msgctxt "machine_acceleration description"
|
||||
|
|
|
|||
|
|
@ -6289,8 +6289,8 @@ msgctxt "material_max_flowrate description"
|
|||
msgid "Maximum flow rate that the printer can extrude for the material"
|
||||
msgstr "프린터가 재료를 압출할 때 허용할 최대 유량"
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr "다중 재료 깊이"
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -6309,8 +6309,8 @@ msgctxt "machine_scan_first_layer label"
|
|||
msgid "Scan the first layer"
|
||||
msgstr "첫 레이어 스캔"
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr "모델 내부에 페인트되는 디테일의 깊이. 깊이 값이 높을수록 맞물림 정도가 향상되지만, 슬라이싱 시간과 메모리는 늘어납니다. 깊이를 최대한으로 표현하려면 아주 높은 값을 설정하세요. 실제 계산되는 깊이는 다를 수 있습니다."
|
||||
|
||||
msgctxt "build_volume_fan_speed description"
|
||||
|
|
|
|||
|
|
@ -6289,8 +6289,8 @@ msgctxt "material_max_flowrate description"
|
|||
msgid "Maximum flow rate that the printer can extrude for the material"
|
||||
msgstr "Maximale stroomsnelheid die de printer voor het materiaal kan extruderen"
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr "Multi-materiële diepte"
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -6309,8 +6309,8 @@ msgctxt "machine_scan_first_layer label"
|
|||
msgid "Scan the first layer"
|
||||
msgstr "Scan de eerste laag"
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr "De diepte van de geverfde details in het model. Een hogere diepte zorgt voor een betere interlocking, maar verhoogt de snijtijd en het geheugen. Stel een zeer hoge waarde in om zo diep mogelijk te gaan. De werkelijk berekende diepte kan variëren."
|
||||
|
||||
msgctxt "build_volume_fan_speed description"
|
||||
|
|
|
|||
|
|
@ -2566,8 +2566,8 @@ msgctxt "skin_monotonic label"
|
|||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -4330,8 +4330,8 @@ msgctxt "material_brand description"
|
|||
msgid "The brand of material used."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "machine_acceleration description"
|
||||
|
|
|
|||
|
|
@ -6290,8 +6290,8 @@ msgctxt "material_max_flowrate description"
|
|||
msgid "Maximum flow rate that the printer can extrude for the material"
|
||||
msgstr "A taxa de fluxo máxima que a impressora pode extrudir para o material"
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr "Profundidade em múltiplos materiais"
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -6310,8 +6310,8 @@ msgctxt "machine_scan_first_layer label"
|
|||
msgid "Scan the first layer"
|
||||
msgstr "Fazer a varredura da primeira camada"
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr "A profundidade dos detalhes pintados no interior do modelo. Uma profundidade maior proporcionará uma melhor interligação, mas aumentará o tempo de corte e a memória. Defina um valor muito alto para obter a maior profundidade possível. A profundidade calculada efetiva pode variar."
|
||||
|
||||
msgctxt "build_volume_fan_speed description"
|
||||
|
|
|
|||
|
|
@ -6289,8 +6289,8 @@ msgctxt "material_max_flowrate description"
|
|||
msgid "Maximum flow rate that the printer can extrude for the material"
|
||||
msgstr "Максимальная скорость подачи, с которой принтер может выдавливать материал"
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr "Мультиматериальная глубина"
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -6309,8 +6309,8 @@ msgctxt "machine_scan_first_layer label"
|
|||
msgid "Scan the first layer"
|
||||
msgstr "Сканировать первый слой"
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr "Глубина покрашенных деталей внутри модели. Чем больше глубина, тем лучше сцепление, но при этом увеличивается время нарезки и объем памяти. Установите очень высокое значение, чтобы глубина была максимальной. Фактически рассчитанная глубина может отличаться."
|
||||
|
||||
msgctxt "build_volume_fan_speed description"
|
||||
|
|
|
|||
|
|
@ -6289,8 +6289,8 @@ msgctxt "material_max_flowrate description"
|
|||
msgid "Maximum flow rate that the printer can extrude for the material"
|
||||
msgstr "Materyal için yazıcının sıkabileceği maksimum akış oranı"
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr "Çoklu Materyal Derinliği"
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -6309,8 +6309,8 @@ msgctxt "machine_scan_first_layer label"
|
|||
msgid "Scan the first layer"
|
||||
msgstr "İlk katmanı tara"
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr "Model içerisindeki boyalı detayların derinliği. Daha yüksek bir derinlik, daha iyi bir kenetlenme sağlar, fakat dilimleme süresini ve bellek kullanımını artırır. Mümkün olduğunca derinleştirmek için çok yüksek bir değer seçin. Asıl hesaplanan derinlik farklılık gösterebilir."
|
||||
|
||||
msgctxt "build_volume_fan_speed description"
|
||||
|
|
|
|||
|
|
@ -6289,8 +6289,8 @@ msgctxt "material_max_flowrate description"
|
|||
msgid "Maximum flow rate that the printer can extrude for the material"
|
||||
msgstr "打印机可挤出该材料的最大流量率"
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr "多材料打印深度"
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -6309,8 +6309,8 @@ msgctxt "machine_scan_first_layer label"
|
|||
msgid "Scan the first layer"
|
||||
msgstr "扫描首层"
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr "模型内部喷涂细节的深度。较高的深度值可提供更好的咬合效果,但会增加切片时间和内存占用。设置极高的数值可实现最大深度(实际计算深度可能存在浮动)。"
|
||||
|
||||
msgctxt "build_volume_fan_speed description"
|
||||
|
|
|
|||
|
|
@ -2567,8 +2567,8 @@ msgctxt "skin_monotonic label"
|
|||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr "單一化列印 頂層/底層 順序"
|
||||
|
||||
msgctxt "multi_material_paint_deepness label"
|
||||
msgid "Multi-material Deepness"
|
||||
msgctxt "multi_material_paint_depth label"
|
||||
msgid "Multi-material Depth"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_resolution label"
|
||||
|
|
@ -4331,8 +4331,8 @@ msgctxt "material_brand description"
|
|||
msgid "The brand of material used."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "multi_material_paint_deepness description"
|
||||
msgid "The deepness of the painted details inside the model. A higher deepness will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated deepness may vary."
|
||||
msgctxt "multi_material_paint_depth description"
|
||||
msgid "The depth of the painted details inside the model. A higher depth will provide a better interlocking, but increase slicing time and memory. Set a very high value to go as deep as possible. The actually calculated depth may vary."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "machine_acceleration description"
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ prime_tower_position_x
|
|||
prime_tower_position_y
|
||||
prime_tower_brim_enable
|
||||
interlocking_enable
|
||||
multi_material_paint_deepness
|
||||
multi_material_paint_depth
|
||||
multi_material_paint_resolution
|
||||
|
||||
[meshfix]
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ prime_tower_enable
|
|||
prime_tower_position_x
|
||||
prime_tower_position_y
|
||||
interlocking_enable
|
||||
multi_material_paint_deepness
|
||||
multi_material_paint_depth
|
||||
|
||||
[meshfix]
|
||||
|
||||
|
|
|
|||
|
|
@ -390,7 +390,7 @@ interlocking_orientation
|
|||
interlocking_beam_layer_count
|
||||
interlocking_dept
|
||||
interlocking_boundary_avoidance
|
||||
multi_material_paint_deepness
|
||||
multi_material_paint_depth
|
||||
multi_material_paint_resolution
|
||||
|
||||
[meshfix]
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ version = 4
|
|||
|
||||
[metadata]
|
||||
hardware_type = nozzle
|
||||
reference_extruder_id = mk13_im-pla
|
||||
reference_extruder_id = mk13_impla
|
||||
setting_version = 25
|
||||
type = variant
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue