mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-06 05:23:58 -06:00
Merge branch '4.5'
This commit is contained in:
commit
6091c67dee
130 changed files with 73579 additions and 68192 deletions
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) 2018 Ultimaker B.V.
|
||||
# Copyright (c) 2020 Ultimaker B.V.
|
||||
# Cura is released under the terms of the LGPLv3 or higher.
|
||||
|
||||
import math
|
||||
|
@ -258,16 +258,19 @@ class FlavorParser:
|
|||
continue
|
||||
if item.startswith(";"):
|
||||
continue
|
||||
if item[0] == "X":
|
||||
x = float(item[1:])
|
||||
if item[0] == "Y":
|
||||
y = float(item[1:])
|
||||
if item[0] == "Z":
|
||||
z = float(item[1:])
|
||||
if item[0] == "F":
|
||||
f = float(item[1:]) / 60
|
||||
if item[0] == "E":
|
||||
e = float(item[1:])
|
||||
try:
|
||||
if item[0] == "X":
|
||||
x = float(item[1:])
|
||||
if item[0] == "Y":
|
||||
y = float(item[1:])
|
||||
if item[0] == "Z":
|
||||
z = float(item[1:])
|
||||
if item[0] == "F":
|
||||
f = float(item[1:]) / 60
|
||||
if item[0] == "E":
|
||||
e = float(item[1:])
|
||||
except ValueError: # Improperly formatted g-code: Coordinates are not floats.
|
||||
continue # Skip the command then.
|
||||
params = PositionOptional(x, y, z, f, e)
|
||||
return func(position, params, path)
|
||||
return position
|
||||
|
|
|
@ -43,6 +43,10 @@ class LicensePresenter(QObject):
|
|||
|
||||
self._initState(packages)
|
||||
|
||||
if self._page_count == 0:
|
||||
self.licenseAnswers.emit(self._package_models)
|
||||
return
|
||||
|
||||
if self._dialog is None:
|
||||
|
||||
context_properties = {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Anet ET4 PRO",
|
||||
"inherits": "anet3d",
|
||||
"metadata": {
|
||||
"visible": true,
|
||||
"visible": true,
|
||||
"machine_extruder_trains":
|
||||
{
|
||||
"0": "anet3d_extruder_0"
|
||||
|
@ -21,7 +21,7 @@
|
|||
"machine_height": {
|
||||
"default_value": 250
|
||||
},
|
||||
"machine_start_gcode": {
|
||||
"machine_start_gcode": {
|
||||
"default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform"
|
||||
},
|
||||
"machine_end_gcode": {
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Anet ET4 X",
|
||||
"inherits": "anet3d",
|
||||
"metadata": {
|
||||
"visible": true,
|
||||
"visible": true,
|
||||
"machine_extruder_trains":
|
||||
{
|
||||
"0": "anet3d_extruder_0"
|
||||
|
@ -21,7 +21,7 @@
|
|||
"machine_height": {
|
||||
"default_value": 250
|
||||
},
|
||||
"machine_start_gcode": {
|
||||
"machine_start_gcode": {
|
||||
"default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform"
|
||||
},
|
||||
"machine_end_gcode": {
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Anet ET5 X",
|
||||
"inherits": "anet3d",
|
||||
"metadata": {
|
||||
"visible": true,
|
||||
"visible": true,
|
||||
"machine_extruder_trains":
|
||||
{
|
||||
"0": "anet3d_extruder_0"
|
||||
|
@ -21,7 +21,7 @@
|
|||
"machine_height": {
|
||||
"default_value": 400
|
||||
},
|
||||
"machine_start_gcode": {
|
||||
"machine_start_gcode": {
|
||||
"default_value": "G28 ;Home\nG1 Z15.0 F2000 ;Move the platform"
|
||||
},
|
||||
"machine_end_gcode": {
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: German\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-07-29 15:51+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: German <info@lionbridge.com>, German <info@bothof.nl>\n"
|
||||
|
@ -410,6 +410,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "Definiert, ob Firmware-Einzugsbefehle (G10/G11) anstelle der E-Eigenschaft in G1-Befehlen verwendet wird, um das Material einzuziehen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -430,16 +440,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "Eine Liste mit Polygonen mit Bereichen, in welche die Düse nicht eintreten darf."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "Gerätekopf Polygon"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "Eine 2D-Shilhouette des Druckkopfes (ohne Lüfterkappen)."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1038,8 +1038,7 @@ msgstr "Erste untere Schichten"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "initial_bottom_layers description"
|
||||
msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
|
||||
msgstr "Die Anzahl der ersten Schichten, die auf die Druckplatte aufgetragen werden. Wenn diese anhand der unteren Dicke berechnet werden, wird der Wert auf eine"
|
||||
" ganze Zahl auf- oder abgerundet."
|
||||
msgstr "Die Anzahl der ersten Schichten, die auf die Druckplatte aufgetragen werden. Wenn diese anhand der unteren Dicke berechnet werden, wird der Wert auf eine ganze Zahl auf- oder abgerundet."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "top_bottom_pattern label"
|
||||
|
@ -1935,6 +1934,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "Außenhautbereiche, die schmaler als die Mindestbreite sind, werden nicht expandiert. Damit wird vermieden, dass enge Außenhautbereiche expandiert werden, die entstehen, wenn die Modellfläche eine nahezu vertikale Neigung aufweist."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2125,6 +2144,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "Geschwindigkeit, mit der das Filament eingezogen werden muss, bevor es beim Einziehen abgebrochen wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2155,6 +2184,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "Die Temperatur, bei der das Filament für eine saubere Bruchstelle gebrochen wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2295,116 +2384,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "Fluss-Kompensation für die erste Schicht: Die auf der ersten Schicht extrudierte Materialmenge wird mit diesem Wert multipliziert."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Einzug aktivieren"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Das Filament wird eingezogen, wenn sich die Düse über einen nicht zu bedruckenden Bereich bewegt. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Einziehen bei Schichtänderung"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Ziehen Sie das Filament ein, wenn die Düse zur nächsten Schicht fährt."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Einzugsabstand"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "Die Länge des Materials, das während der Einzugsbewegung eingezogen wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Einzugsgeschwindigkeit"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und zurückgeschoben wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Einzugsgeschwindigkeit (Einzug)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Einzugsgeschwindigkeit (Zurückschieben)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung zurückgeschoben wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Zusätzliche Zurückschiebemenge nach Einzug"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Während einer Bewegung über einen nicht zu bedruckenden Bereich kann Material wegsickern, was hier kompensiert werden kann."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Mindestbewegung für Einzug"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Der Mindestbewegungsabstand, damit ein Einzug erfolgt. Dadurch kommt es zu weniger Einzügen in einem kleinen Gebiet."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Maximale Anzahl von Einzügen"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Diese Einstellung limitiert die Anzahl an Einzügen, die innerhalb des Fensters „Minimaler Extrusionsabstand“ auftritt. Weitere Einzüge innerhalb dieses Fensters werden ignoriert. Durch diese Funktion wird vermieden, dass das gleiche Stück Filament wiederholt eingezogen wird, da es in diesem Fall abgeflacht werden oder es zu Schleifen kommen kann."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Fenster „Minimaler Extrusionsabstand“"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Das Fenster, in dem die maximale Anzahl von Einzügen durchgeführt wird. Dieser Wert sollte etwa der Größe des Einzugsabstands entsprechen, sodass die effektive Häufigkeit, mit der ein Einzug dieselbe Stelle des Materials passiert, begrenzt wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Stützstruktur-Einzüge einschränken"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Lassen Sie den Einzug beim Vorgehen von Stützstruktur zu Stützstruktur in einer geraden Linie aus. Die Aktivierung dieser Einstellung spart Druckzeit, kann jedoch zu übermäßigem Fadenziehen innerhalb der Stützstruktur führen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2415,56 +2394,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "Die Temperatur der Düse, wenn eine andere Düse aktuell für das Drucken verwendet wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Düsenschalter Einzugsabstand"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Der Wert für den Einzug beim Umstellen der Extruder: 0 einstellen, um keinen Einzug zu erhalten. Dies sollte generell mit der Länge der Heizzone übereinstimmen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Düsenschalter Rückzugsgeschwindigkeit"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Die Geschwindigkeit, mit der das Filament zurückgezogen wird. Eine höhere Rückzugsgeschwindigkeit funktioniert besser, allerdings kann eine sehr hohe Rückzugsgeschwindigkeit zu einem Schleifen des Filaments führen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Düsenschalter Rückzuggeschwindigkeit"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenschaltereinzugs zurückgezogen wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Düsenschalter Einzugsgeschwindigkeit (Zurückschieben)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenschaltereinzugs zurückgeschoben wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Zusätzliche Einzugsmenge bei Düsenwechsel"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Nach einem Düsenwechsel zusätzlich bereitzustellendes Material."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3085,6 +3014,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "Bewegungen"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Einzug aktivieren"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Das Filament wird eingezogen, wenn sich die Düse über einen nicht zu bedruckenden Bereich bewegt. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Einziehen bei Schichtänderung"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Ziehen Sie das Filament ein, wenn die Düse zur nächsten Schicht fährt."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Einzugsabstand"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "Die Länge des Materials, das während der Einzugsbewegung eingezogen wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Einzugsgeschwindigkeit"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und zurückgeschoben wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Einzugsgeschwindigkeit (Einzug)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Einzugsgeschwindigkeit (Zurückschieben)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung zurückgeschoben wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Zusätzliche Zurückschiebemenge nach Einzug"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Während einer Bewegung über einen nicht zu bedruckenden Bereich kann Material wegsickern, was hier kompensiert werden kann."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Mindestbewegung für Einzug"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Der Mindestbewegungsabstand, damit ein Einzug erfolgt. Dadurch kommt es zu weniger Einzügen in einem kleinen Gebiet."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Maximale Anzahl von Einzügen"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Diese Einstellung limitiert die Anzahl an Einzügen, die innerhalb des Fensters „Minimaler Extrusionsabstand“ auftritt. Weitere Einzüge innerhalb dieses Fensters werden ignoriert. Durch diese Funktion wird vermieden, dass das gleiche Stück Filament wiederholt eingezogen wird, da es in diesem Fall abgeflacht werden oder es zu Schleifen kommen kann."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Fenster „Minimaler Extrusionsabstand“"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Das Fenster, in dem die maximale Anzahl von Einzügen durchgeführt wird. Dieser Wert sollte etwa der Größe des Einzugsabstands entsprechen, sodass die effektive Häufigkeit, mit der ein Einzug dieselbe Stelle des Materials passiert, begrenzt wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Stützstruktur-Einzüge einschränken"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Lassen Sie den Einzug beim Vorgehen von Stützstruktur zu Stützstruktur in einer geraden Linie aus. Die Aktivierung dieser Einstellung spart Druckzeit, kann jedoch zu übermäßigem Fadenziehen innerhalb der Stützstruktur führen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -3993,8 +4032,7 @@ msgstr "Mindestbereich Stützstruktur-Schnittstelle"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "minimum_interface_area description"
|
||||
msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
|
||||
msgstr "Mindestflächenbreite für Stützstruktur-Schnittstellen-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur"
|
||||
" gedruckt."
|
||||
msgstr "Mindestflächenbreite für Stützstruktur-Schnittstellen-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "minimum_roof_area label"
|
||||
|
@ -4280,6 +4318,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "Die Anzahl der Linien für das Brim-Element. Eine größere Anzahl von Brim-Linien verbessert die Haftung am Druckbett, es wird dadurch aber auch der verwendbare Druckbereich verkleinert."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4710,6 +4758,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "Der Abstand des Sicherschutzes zum gedruckten Objekt in den X/Y-Richtungen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Düsenschalter Einzugsabstand"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Der Wert für den Einzug beim Umstellen der Extruder: 0 einstellen, um keinen Einzug zu erhalten. Dies sollte generell mit der Länge der Heizzone übereinstimmen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Düsenschalter Rückzugsgeschwindigkeit"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Die Geschwindigkeit, mit der das Filament zurückgezogen wird. Eine höhere Rückzugsgeschwindigkeit funktioniert besser, allerdings kann eine sehr hohe Rückzugsgeschwindigkeit zu einem Schleifen des Filaments führen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Düsenschalter Rückzuggeschwindigkeit"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenschaltereinzugs zurückgezogen wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Düsenschalter Einzugsgeschwindigkeit (Zurückschieben)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenschaltereinzugs zurückgeschoben wird."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Zusätzliche Einzugsmenge bei Düsenwechsel"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Nach einem Düsenwechsel zusätzlich bereitzustellendes Material."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4847,8 +4945,8 @@ msgstr "Druckreihenfolge"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "Es wird festgelegt, ob alle Modelle einer Schicht zur gleichen Zeit gedruckt werden sollen oder ob zuerst ein Modell fertig gedruckt wird, bevor der Druck von einem weiteren begonnen wird. Der „Nacheinandermodus“ ist nur möglich, wenn alle Modelle voneinander getrennt sind, sodass sich der gesamte Druckkopf zwischen allen Modellen bewegen kann und alle Modelle niedriger als der Abstand zwischen der Düse und den X/Y-Achsen ist."
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5075,26 +5173,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "Dies ist die Auflösung für die Berechnung von Kollisionen, um ein Anschlagen des Modells zu verhindern. Eine niedrigere Einstellung sorgt für akkuratere Bäume, die weniger häufig fehlschlagen, erhöht jedoch die Slicing-Zeit erheblich."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "Wanddicke der Baumstützstruktur"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Das ist die Dicke der Astwände der Baumstützstruktur. Dickere Wände benötigen eine längere Druckdauer, fallen jedoch nicht so leicht um."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "Anzahl der Wandlinien der Baumstützstruktur"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Das ist die Anzahl der Astwände der Baumstützstruktur. Dickere Wände benötigen eine längere Druckdauer, fallen jedoch nicht so leicht um."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5485,6 +5563,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "Willkürliche Zitterbewegung beim Druck der äußeren Wand, wodurch die Oberfläche ein raues und ungleichmäßiges Aussehen erhält."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5533,8 +5621,7 @@ msgstr "Ausgleichsfaktor Durchflussrate"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "flow_rate_extrusion_offset_factor description"
|
||||
msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
|
||||
msgstr "Wie weit das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren – als Prozentsatz der Strecke, die das Filament sich während"
|
||||
" einer Sekunde Extrusion bewegen würde."
|
||||
msgstr "Wie weit das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren – als Prozentsatz der Strecke, die das Filament sich während einer Sekunde Extrusion bewegen würde."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wireframe_enabled label"
|
||||
|
@ -5833,8 +5920,7 @@ msgstr "Topographische Größe der Anpassschichten"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "adaptive_layer_height_threshold description"
|
||||
msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
|
||||
msgstr "Horizontaler Abstand zwischen zwei angrenzenden Schichten. Bei Einstellung eines niedrigeren Werts werden dünnere Schichten aufgetragen, damit die Kanten"
|
||||
" der Schichten enger aneinander liegen."
|
||||
msgstr "Horizontaler Abstand zwischen zwei angrenzenden Schichten. Bei Einstellung eines niedrigeren Werts werden dünnere Schichten aufgetragen, damit die Kanten der Schichten enger aneinander liegen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle label"
|
||||
|
@ -5844,8 +5930,7 @@ msgstr "Winkel für überhängende Wände"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle description"
|
||||
msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
|
||||
msgstr "Wände, die über diesen Winkel hinaus hängen, werden mithilfe der Einstellungen für Winkel für überhängende Wände gedruckt. Wenn der Wert 90 beträgt, werden"
|
||||
" keine Wände als überhängend behandelt. Überhänge, die von Stützstrukturen gestützt werden, werden ebenfalls nicht als Überhang behandelt."
|
||||
msgstr "Wände, die über diesen Winkel hinaus hängen, werden mithilfe der Einstellungen für Winkel für überhängende Wände gedruckt. Wenn der Wert 90 beträgt, werden keine Wände als überhängend behandelt. Überhänge, die von Stützstrukturen gestützt werden, werden ebenfalls nicht als Überhang behandelt."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_speed_factor label"
|
||||
|
@ -5887,6 +5972,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "Wenn ein Außenhautbereich für weniger als diesen Prozentwert seines Bereichs unterstützt wird, drucken Sie ihn mit den Brückeneinstellungen. Ansonsten erfolgt der Druck mit den normalen Außenhauteinstellungen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6054,8 +6149,8 @@ msgstr "Düse zwischen den Schichten abwischen"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "Option für das Einfügen eines G-Codes für das Abwischen der Düse zwischen den Schichten. Die Aktivierung dieser Einstellung könnte das Einzugsverhalten beim Schichtenwechsel beeinflussen. Verwenden Sie bitte die Einstellungen für Abwischen bei Einzug, um das Einziehen bei Schichten zu steuern, bei denen das Skript für Wischen aktiv wird."
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6064,8 +6159,8 @@ msgstr "Materialmenge zwischen den Wischvorgängen"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "Die maximale Materialmenge, die extrudiert werden kann, bevor die Düse ein weiteres Mal abgewischt wird."
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6119,8 +6214,8 @@ msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Einzugsgeschwindigkeit (Einzug)"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6139,13 +6234,13 @@ msgstr "Pausieren nach Aufhebung des Einzugs."
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "Z-Sprung beim Einziehen - Abwischen"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "Nach dem Einzug wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse den Druck während der Bewegungen anschlägt und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird."
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6225,8 +6320,7 @@ msgstr "Detailgeschwindigkeit"
|
|||
#: fdmprinter.def.json
|
||||
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."
|
||||
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_feature_speed_factor_0 label"
|
||||
|
@ -6236,8 +6330,7 @@ msgstr "Geschwindigkeit der ersten Schicht von Details"
|
|||
#: 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."
|
||||
msgstr "Bei kleinen Details wird die Geschwindigkeit bei der ersten Schicht auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere"
|
||||
" Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden."
|
||||
msgstr "Bei kleinen Details wird die Geschwindigkeit bei der ersten Schicht auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "command_line_settings label"
|
||||
|
@ -6299,6 +6392,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Transformationsmatrix, die beim Laden aus der Datei auf das Modell angewandt wird."
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "Gerätekopf Polygon"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "Eine 2D-Shilhouette des Druckkopfes (ohne Lüfterkappen)."
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "Es wird festgelegt, ob alle Modelle einer Schicht zur gleichen Zeit gedruckt werden sollen oder ob zuerst ein Modell fertig gedruckt wird, bevor der Druck von einem weiteren begonnen wird. Der „Nacheinandermodus“ ist nur möglich, wenn alle Modelle voneinander getrennt sind, sodass sich der gesamte Druckkopf zwischen allen Modellen bewegen kann und alle Modelle niedriger als der Abstand zwischen der Düse und den X/Y-Achsen ist."
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "Wanddicke der Baumstützstruktur"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Das ist die Dicke der Astwände der Baumstützstruktur. Dickere Wände benötigen eine längere Druckdauer, fallen jedoch nicht so leicht um."
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "Anzahl der Wandlinien der Baumstützstruktur"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Das ist die Anzahl der Astwände der Baumstützstruktur. Dickere Wände benötigen eine längere Druckdauer, fallen jedoch nicht so leicht um."
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "Option für das Einfügen eines G-Codes für das Abwischen der Düse zwischen den Schichten. Die Aktivierung dieser Einstellung könnte das Einzugsverhalten beim Schichtenwechsel beeinflussen. Verwenden Sie bitte die Einstellungen für Abwischen bei Einzug, um das Einziehen bei Schichten zu steuern, bei denen das Skript für Wischen aktiv wird."
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "Die maximale Materialmenge, die extrudiert werden kann, bevor die Düse ein weiteres Mal abgewischt wird."
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "Einzugsgeschwindigkeit (Einzug)"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "Z-Sprung beim Einziehen - Abwischen"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "Nach dem Einzug wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse den Druck während der Bewegungen anschlägt und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird."
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "Mindestflächenbreite für Stützstruktur-Schnittstellen-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden nicht generiert."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Spanish\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-07-29 15:51+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Spanish <info@lionbridge.com>, Spanish <info@bothof.nl>\n"
|
||||
|
@ -410,6 +410,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "Utilizar o no los comandos de retracción de firmware (G10/G11) en lugar de utilizar la propiedad E en comandos G1 para retraer el material."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -430,16 +440,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "Lista de polígonos con áreas en las que la tobera no tiene permitido entrar."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "Polígono del cabezal de la máquina"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "Silueta 2D del cabezal de impresión (sin incluir las tapas del ventilador)."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1038,8 +1038,7 @@ msgstr "Capas inferiores iniciales"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "initial_bottom_layers description"
|
||||
msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
|
||||
msgstr "El número de capas inferiores iniciales, desde la capa de impresión hacia arriba. Al calcularlo por el grosor inferior, este valor se redondea a un número"
|
||||
" entero."
|
||||
msgstr "El número de capas inferiores iniciales, desde la capa de impresión hacia arriba. Al calcularlo por el grosor inferior, este valor se redondea a un número entero."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "top_bottom_pattern label"
|
||||
|
@ -1935,6 +1934,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "Las áreas de forro más estrechas que este valor no se expanden. Esto evita la expansión de las áreas de forro estrechas que se crean cuando la superficie del modelo tiene una inclinación casi vertical."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2125,6 +2144,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "Con qué velocidad debe retraerse el filamento justo antes de romperse en una retracción."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2155,6 +2184,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "Temperatura a la que se rompe el filamento de forma limpia."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2295,116 +2384,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "Compensación de flujo de la primera capa: la cantidad de material extruido de la capa inicial se multiplica por este valor."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Habilitar la retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Retracción en el cambio de capa"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Retrae el filamento cuando la tobera se mueve a la siguiente capa."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Distancia de retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "Longitud del material retraído durante un movimiento de retracción."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Velocidad de retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Velocidad de retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Velocidad de cebado de retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Cantidad de cebado adicional de retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento, lo cual se puede corregir aquí."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Desplazamiento mínimo de retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Distancia mínima de desplazamiento necesario para que no se produzca retracción alguna. Esto ayuda a conseguir un menor número de retracciones en un área pequeña."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Recuento máximo de retracciones"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Este ajuste limita el número de retracciones que ocurren dentro de la ventana de distancia mínima de extrusión. Dentro de esta ventana se ignorarán las demás retracciones. Esto evita retraer repetidamente el mismo trozo de filamento, ya que esto podría aplanar el filamento y causar problemas de desmenuzamiento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Ventana de distancia mínima de extrusión"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Ventana en la que se aplica el recuento máximo de retracciones. Este valor debe ser aproximadamente el mismo que la distancia de retracción, lo que limita efectivamente el número de veces que una retracción pasa por el mismo parche de material."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Limitar las retracciones de soporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Omitir la retracción al moverse de soporte a soporte en línea recta. Habilitar este ajuste ahorra tiempo de impresión pero puede ocasionar un encordado excesivo en la estructura de soporte."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2415,56 +2394,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "Temperatura de la tobera cuando otra se está utilizando en la impresión."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Distancia de retracción del cambio de tobera"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Distancia de la retracción al cambiar los extrusores. Utilice el valor 0 para que no haya retracción. Por norma general, este valor debe ser igual a la longitud de la zona de calentamiento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Velocidad de retracción del cambio de tobera"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Velocidad de retracción del filamento. Se recomienda una velocidad de retracción alta, pero si es demasiado alta, podría hacer que el filamento se aplaste."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Velocidad de retracción del cambio de tobera"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Velocidad de cebado del cambio de tobera"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Volumen de cebado adicional tras cambio de tobera"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Material adicional que debe cebarse tras el cambio de tobera."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3085,6 +3014,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "desplazamiento"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Habilitar la retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Retracción en el cambio de capa"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Retrae el filamento cuando la tobera se mueve a la siguiente capa."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Distancia de retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "Longitud del material retraído durante un movimiento de retracción."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Velocidad de retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Velocidad de retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Velocidad de cebado de retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Cantidad de cebado adicional de retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento, lo cual se puede corregir aquí."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Desplazamiento mínimo de retracción"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Distancia mínima de desplazamiento necesario para que no se produzca retracción alguna. Esto ayuda a conseguir un menor número de retracciones en un área pequeña."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Recuento máximo de retracciones"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Este ajuste limita el número de retracciones que ocurren dentro de la ventana de distancia mínima de extrusión. Dentro de esta ventana se ignorarán las demás retracciones. Esto evita retraer repetidamente el mismo trozo de filamento, ya que esto podría aplanar el filamento y causar problemas de desmenuzamiento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Ventana de distancia mínima de extrusión"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Ventana en la que se aplica el recuento máximo de retracciones. Este valor debe ser aproximadamente el mismo que la distancia de retracción, lo que limita efectivamente el número de veces que una retracción pasa por el mismo parche de material."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Limitar las retracciones de soporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Omitir la retracción al moverse de soporte a soporte en línea recta. Habilitar este ajuste ahorra tiempo de impresión pero puede ocasionar un encordado excesivo en la estructura de soporte."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -3993,8 +4032,7 @@ msgstr "Área de la interfaz de soporte mínima"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "minimum_interface_area description"
|
||||
msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
|
||||
msgstr "Tamaño del área mínima para los polígonos de la interfaz de soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como"
|
||||
" soporte normal."
|
||||
msgstr "Tamaño del área mínima para los polígonos de la interfaz de soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "minimum_roof_area label"
|
||||
|
@ -4280,6 +4318,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "Número de líneas utilizadas para un borde. Más líneas de borde mejoran la adhesión a la plataforma de impresión, pero también reducen el área de impresión efectiva."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4710,6 +4758,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "Distancia entre la placa de rezumado y la impresión, en las direcciones X/Y."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Distancia de retracción del cambio de tobera"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Distancia de la retracción al cambiar los extrusores. Utilice el valor 0 para que no haya retracción. Por norma general, este valor debe ser igual a la longitud de la zona de calentamiento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Velocidad de retracción del cambio de tobera"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Velocidad de retracción del filamento. Se recomienda una velocidad de retracción alta, pero si es demasiado alta, podría hacer que el filamento se aplaste."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Velocidad de retracción del cambio de tobera"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Velocidad de cebado del cambio de tobera"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Volumen de cebado adicional tras cambio de tobera"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Material adicional que debe cebarse tras el cambio de tobera."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4847,8 +4945,8 @@ msgstr "Secuencia de impresión"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "Con esta opción se decide si imprimir todos los modelos de una capa a la vez o esperar a terminar un modelo antes de pasar al siguiente. El modo de uno en uno solo es posible si se separan todos los modelos de tal manera que el cabezal de impresión completo pueda moverse entre los modelos y todos los modelos son menores que la distancia entre la tobera y los ejes X/Y."
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5075,26 +5173,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "Resolución para computar colisiones para evitar golpear el modelo. Establecer un ajuste bajo producirá árboles más precisos que producen fallos con menor frecuencia, pero aumenta significativamente el tiempo de fragmentación."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "Grosor de las paredes del soporte en árbol"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "El grosor de las paredes de las ramas del soporte en árbol. Imprimir paredes más gruesas llevará más tiempo pero no se caerán tan fácilmente."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "Recuento de líneas de pared del soporte en árbol"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "El número de las paredes de las ramas del soporte en árbol. Imprimir paredes más gruesas llevará más tiempo pero no se caerán tan fácilmente."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5485,6 +5563,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "Fluctúa aleatoriamente durante la impresión de la pared exterior, de modo que la superficie tiene un aspecto desigual y difuso."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5533,8 +5621,7 @@ msgstr "Factor de compensación del caudal"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "flow_rate_extrusion_offset_factor description"
|
||||
msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
|
||||
msgstr "La distancia para mover el filamento con el fin de compensar los cambios en el caudal, como porcentaje de la distancia a la que se movería el filamento"
|
||||
" en un segundo de extrusión."
|
||||
msgstr "La distancia para mover el filamento con el fin de compensar los cambios en el caudal, como porcentaje de la distancia a la que se movería el filamento en un segundo de extrusión."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wireframe_enabled label"
|
||||
|
@ -5833,8 +5920,7 @@ msgstr "Tamaño de la topografía de las capas de adaptación"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "adaptive_layer_height_threshold description"
|
||||
msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
|
||||
msgstr "Distancia horizontal objetivo entre dos capas adyacentes. Si se reduce este ajuste, se tendrán que utilizar capas más finas para acercar más los bordes"
|
||||
" de las capas."
|
||||
msgstr "Distancia horizontal objetivo entre dos capas adyacentes. Si se reduce este ajuste, se tendrán que utilizar capas más finas para acercar más los bordes de las capas."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle label"
|
||||
|
@ -5844,8 +5930,7 @@ msgstr "Ángulo de voladizo de pared"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle description"
|
||||
msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
|
||||
msgstr "Las paredes con un ángulo de voladizo mayor que este se imprimirán con los ajustes de voladizo de pared. Cuando el valor sea 90, no se aplicará la condición"
|
||||
" de voladizo a la pared. El voladizo que se apoya en el soporte tampoco se tratará como voladizo."
|
||||
msgstr "Las paredes con un ángulo de voladizo mayor que este se imprimirán con los ajustes de voladizo de pared. Cuando el valor sea 90, no se aplicará la condición de voladizo a la pared. El voladizo que se apoya en el soporte tampoco se tratará como voladizo."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_speed_factor label"
|
||||
|
@ -5887,6 +5972,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "Si un área de forro es compatible con un porcentaje inferior de su área, se imprime utilizando los ajustes de puente. De lo contrario, se imprimirá utilizando los ajustes de forro habituales."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6054,8 +6149,8 @@ msgstr "Limpiar tobera entre capas"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "Posibilidad de incluir GCode de limpieza de tobera entre capas. Habilitar este ajuste puede influir en el comportamiento de retracción en el cambio de capa. Utilice los ajustes de retracción de limpieza para controlar la retracción en las capas donde la secuencia de limpieza estará en curso."
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6064,8 +6159,8 @@ msgstr "Volumen de material entre limpiezas"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "Material máximo que puede extruirse antes de que se inicie otra limpieza de tobera."
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6119,8 +6214,8 @@ msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retra
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Velocidad de cebado de retracción"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6139,13 +6234,13 @@ msgstr "Pausa después de no haber retracción."
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "Limpiar salto en Z en la retracción"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "Siempre que se realiza una retracción, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Impide que la tobera golpee la impresión durante movimientos de desplazamiento, reduciendo las posibilidades de alcanzar la impresión de la placa de impresión."
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6235,8 +6330,7 @@ msgstr "Velocidad de la capa inicial de partes pequeñas"
|
|||
#: 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."
|
||||
msgstr "Las pequeñas partes de la primera capa 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."
|
||||
msgstr "Las pequeñas partes de la primera capa 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 "command_line_settings label"
|
||||
|
@ -6298,6 +6392,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Matriz de transformación que se aplicará al modelo cuando se cargue desde el archivo."
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "Polígono del cabezal de la máquina"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "Silueta 2D del cabezal de impresión (sin incluir las tapas del ventilador)."
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "Con esta opción se decide si imprimir todos los modelos de una capa a la vez o esperar a terminar un modelo antes de pasar al siguiente. El modo de uno en uno solo es posible si se separan todos los modelos de tal manera que el cabezal de impresión completo pueda moverse entre los modelos y todos los modelos son menores que la distancia entre la tobera y los ejes X/Y."
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "Grosor de las paredes del soporte en árbol"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "El grosor de las paredes de las ramas del soporte en árbol. Imprimir paredes más gruesas llevará más tiempo pero no se caerán tan fácilmente."
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "Recuento de líneas de pared del soporte en árbol"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "El número de las paredes de las ramas del soporte en árbol. Imprimir paredes más gruesas llevará más tiempo pero no se caerán tan fácilmente."
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "Posibilidad de incluir GCode de limpieza de tobera entre capas. Habilitar este ajuste puede influir en el comportamiento de retracción en el cambio de capa. Utilice los ajustes de retracción de limpieza para controlar la retracción en las capas donde la secuencia de limpieza estará en curso."
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "Material máximo que puede extruirse antes de que se inicie otra limpieza de tobera."
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "Velocidad de cebado de retracción"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "Limpiar salto en Z en la retracción"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "Siempre que se realiza una retracción, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Impide que la tobera golpee la impresión durante movimientos de desplazamiento, reduciendo las posibilidades de alcanzar la impresión de la placa de impresión."
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "Tamaño del área mínima para los polígonos de la interfaz de soporte. No se generarán polígonos que posean un área de menor tamaño que este valor."
|
||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Uranium json setting files\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
@ -437,6 +437,18 @@ msgid ""
|
|||
"property in G1 commands to retract the material."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid ""
|
||||
"Whether the extruders share a single heater rather than each extruder having "
|
||||
"its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -457,16 +469,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -2215,6 +2217,26 @@ msgid ""
|
|||
"to the vertical."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2430,6 +2452,18 @@ msgid ""
|
|||
"retraction."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid ""
|
||||
"The temperature used to purge material, should be roughly equal to the "
|
||||
"highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2461,6 +2495,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2606,134 +2700,6 @@ msgid ""
|
|||
"the initial layer is multiplied by this value."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid ""
|
||||
"Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid ""
|
||||
"The speed at which the filament is retracted and primed during a retraction "
|
||||
"move."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid ""
|
||||
"Some material can ooze away during a travel move, which can be compensated "
|
||||
"for here."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid ""
|
||||
"The minimum distance of travel needed for a retraction to happen at all. "
|
||||
"This helps to get fewer retractions in a small area."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid ""
|
||||
"This setting limits the number of retractions occurring within the minimum "
|
||||
"extrusion distance window. Further retractions within this window will be "
|
||||
"ignored. This avoids retracting repeatedly on the same piece of filament, as "
|
||||
"that can flatten the filament and cause grinding issues."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid ""
|
||||
"The window in which the maximum retraction count is enforced. This value "
|
||||
"should be approximately the same as the retraction distance, so that "
|
||||
"effectively the number of times a retraction passes the same patch of "
|
||||
"material is limited."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid ""
|
||||
"Omit retraction when moving from support to support in a straight line. "
|
||||
"Enabling this setting saves print time, but can lead to excessive stringing "
|
||||
"within the support structure."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2746,64 +2712,6 @@ msgid ""
|
|||
"printing."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid ""
|
||||
"The amount of retraction when switching extruders. Set to 0 for no "
|
||||
"retraction at all. This should generally be the same as the length of the "
|
||||
"heat zone."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid ""
|
||||
"The speed at which the filament is retracted. A higher retraction speed "
|
||||
"works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid ""
|
||||
"The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid ""
|
||||
"The speed at which the filament is pushed back after a nozzle switch "
|
||||
"retraction."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3507,6 +3415,134 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid ""
|
||||
"Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid ""
|
||||
"The speed at which the filament is retracted and primed during a retraction "
|
||||
"move."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid ""
|
||||
"Some material can ooze away during a travel move, which can be compensated "
|
||||
"for here."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid ""
|
||||
"The minimum distance of travel needed for a retraction to happen at all. "
|
||||
"This helps to get fewer retractions in a small area."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid ""
|
||||
"This setting limits the number of retractions occurring within the minimum "
|
||||
"extrusion distance window. Further retractions within this window will be "
|
||||
"ignored. This avoids retracting repeatedly on the same piece of filament, as "
|
||||
"that can flatten the filament and cause grinding issues."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid ""
|
||||
"The window in which the maximum retraction count is enforced. This value "
|
||||
"should be approximately the same as the retraction distance, so that "
|
||||
"effectively the number of times a retraction passes the same patch of "
|
||||
"material is limited."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid ""
|
||||
"Omit retraction when moving from support to support in a straight line. "
|
||||
"Enabling this setting saves print time, but can lead to excessive stringing "
|
||||
"within the support structure."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -4926,6 +4962,19 @@ msgid ""
|
|||
"build plate, but also reduces the effective print area."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid ""
|
||||
"The horizontal distance between the first brim line and the outline of the "
|
||||
"first layer of the print. A small gap can make the brim easier to remove "
|
||||
"while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -5416,6 +5465,64 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid ""
|
||||
"The amount of retraction when switching extruders. Set to 0 for no "
|
||||
"retraction at all. This should generally be the same as the length of the "
|
||||
"heat zone."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid ""
|
||||
"The speed at which the filament is retracted. A higher retraction speed "
|
||||
"works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid ""
|
||||
"The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid ""
|
||||
"The speed at which the filament is pushed back after a nozzle switch "
|
||||
"retraction."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -5592,10 +5699,10 @@ msgstr ""
|
|||
msgctxt "print_sequence description"
|
||||
msgid ""
|
||||
"Whether to print all models one layer at a time or to wait for one model to "
|
||||
"finish, before moving on to the next. One at a time mode is only possible if "
|
||||
"all models are separated in such a way that the whole print head can move in "
|
||||
"between and all models are lower than the distance between the nozzle and "
|
||||
"the X/Y axes."
|
||||
"finish, before moving on to the next. One at a time mode is possible if a) "
|
||||
"only one extruder is enabled and b) all models are separated in such a way "
|
||||
"that the whole print head can move in between and all models are lower than "
|
||||
"the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
|
@ -5877,30 +5984,6 @@ msgid ""
|
|||
"increases slicing time dramatically."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid ""
|
||||
"The thickness of the walls of the branches of tree support. Thicker walls "
|
||||
"take longer to print but don't fall over as easily."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid ""
|
||||
"The number of walls of the branches of tree support. Thicker walls take "
|
||||
"longer to print but don't fall over as easily."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -6377,6 +6460,16 @@ msgid ""
|
|||
"rough and fuzzy look."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -6865,6 +6958,18 @@ msgid ""
|
|||
"skin settings."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid ""
|
||||
"Maximum density of infill considered to be sparse. Skin over sparse infill "
|
||||
"is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -7053,10 +7158,10 @@ msgstr ""
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid ""
|
||||
"Whether to include nozzle wipe G-Code between layers. Enabling this setting "
|
||||
"could influence behavior of retract at layer change. Please use Wipe "
|
||||
"Retraction settings to control retraction at layers where the wipe script "
|
||||
"will be working."
|
||||
"Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). "
|
||||
"Enabling this setting could influence behavior of retract at layer change. "
|
||||
"Please use Wipe Retraction settings to control retraction at layers where "
|
||||
"the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
|
@ -7067,8 +7172,10 @@ msgstr ""
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid ""
|
||||
"Maximum material, that can be extruded before another nozzle wipe is "
|
||||
"initiated."
|
||||
"Maximum material that can be extruded before another nozzle wipe is "
|
||||
"initiated. If this value is less than the volume of material required in a "
|
||||
"layer, the setting has no effect in this layer, i.e. it is limited to one "
|
||||
"wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
|
@ -7129,7 +7236,7 @@ msgstr ""
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
|
@ -7150,16 +7257,15 @@ msgstr ""
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid ""
|
||||
"Whenever a retraction is done, the build plate is lowered to create "
|
||||
"clearance between the nozzle and the print. It prevents the nozzle from "
|
||||
"hitting the print during travel moves, reducing the chance to knock the "
|
||||
"print from the build plate."
|
||||
"When wiping, the build plate is lowered to create clearance between the "
|
||||
"nozzle and the print. It prevents the nozzle from hitting the print during "
|
||||
"travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2017-08-11 14:31+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Finnish\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2017-09-27 12:27+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Finnish\n"
|
||||
|
@ -405,6 +405,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -425,16 +435,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "Monikulmioluettelo, jossa on alueet, joihin suutin ei saa siirtyä."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "2D-siluetti tulostuspäästä (tuulettimen kannattimet pois lukien)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1927,6 +1927,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "Tätä kapeampia pintakalvoja ei laajenneta. Tällä vältetään laajentamasta kapeita pintakalvoja, jotka syntyvät, kun mallin pinnalla on rinne lähellä pystysuoraa osuutta."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2117,6 +2137,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2147,6 +2177,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2287,116 +2377,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Ota takaisinveto käyttöön"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Vedä tulostuslanka takaisin, kun suutin liikkuu sellaisen alueen yli, jota ei tulosteta. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Takaisinveto kerroksen muuttuessa"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Vedä tulostuslanka takaisin, kun suutin on siirtymässä seuraavaan kerrokseen. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Takaisinvetoetäisyys"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "Takaisinvedon yhteydessä sisään vedettävän materiaalin pituus."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Takaisinvetonopeus"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Nopeus, jolla tulostuslanka vedetään sisään ja esitäytetään takaisinvedon yhteydessä."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Takaisinvedon vetonopeus"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Nopeus, jolla tulostuslanka vedetään sisään takaisinvedon yhteydessä."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Takaisinvedon esitäyttönopeus"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Nopeus, jolla tulostuslanka esitäytetään takaisinvedon yhteydessä."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Takaisinvedon esitäytön lisäys"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Siirtoliikkeen yhteydessä materiaalia voi tihkua pois. Sitä voidaan kompensoida tässä."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Takaisinvedon minimiliike"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Tarvittavan siirtoliikkeen minimietäisyys, jotta takaisinveto yleensäkin tapahtuu. Tällä varmistetaan, ettei takaisinvetoja tapahdu runsaasti pienellä alueella."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Takaisinvedon maksimiluku"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Tämä asetus rajoittaa pursotuksen minimietäisyyden ikkunassa tapahtuvien takaisinvetojen lukumäärää. Muut tämän ikkunan takaisinvedot jätetään huomiotta. Tällä vältetään toistuvat takaisinvedot samalla tulostuslangan osalla, sillä tällöin lanka voi litistyä ja aiheuttaa hiertymisongelmia."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Pursotuksen minimietäisyyden ikkuna"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Ikkuna, jossa takaisinvedon maksimiluku otetaan käyttöön. Tämän ikkunan tulisi olla suunnilleen takaisinvetoetäisyyden kokoinen, jotta saman kohdan sivuuttavien takaisinvetojen lukumäärää saadaan rajoitettua."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2407,56 +2387,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "Suuttimen lämpötila, kun toista suutinta käytetään tulostukseen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Suuttimen vaihdon takaisinvetoetäisyys"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Suuttimen vaihdon takaisinvetonopeus"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Nopeus, jolla tulostuslanka vedetään sisään. Suurempi takaisinvetonopeus toimii paremmin, mutta erittäin suuri takaisinvetonopeus saattaa hiertää tulostuslankaa."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Suuttimen vaihdon takaisinvetonopeus"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Nopeus, jolla tulostuslanka vedetään sisään suuttimen vaihdon takaisinvedon yhteydessä."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Suuttimen vaihdon esitäyttönopeus"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Nopeus, jolla tulostuslanka työnnetään takaisin suuttimen vaihdon takaisinvedon jälkeen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3077,6 +3007,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "siirtoliike"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Ota takaisinveto käyttöön"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Vedä tulostuslanka takaisin, kun suutin liikkuu sellaisen alueen yli, jota ei tulosteta. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Takaisinveto kerroksen muuttuessa"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Vedä tulostuslanka takaisin, kun suutin on siirtymässä seuraavaan kerrokseen. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Takaisinvetoetäisyys"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "Takaisinvedon yhteydessä sisään vedettävän materiaalin pituus."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Takaisinvetonopeus"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Nopeus, jolla tulostuslanka vedetään sisään ja esitäytetään takaisinvedon yhteydessä."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Takaisinvedon vetonopeus"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Nopeus, jolla tulostuslanka vedetään sisään takaisinvedon yhteydessä."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Takaisinvedon esitäyttönopeus"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Nopeus, jolla tulostuslanka esitäytetään takaisinvedon yhteydessä."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Takaisinvedon esitäytön lisäys"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Siirtoliikkeen yhteydessä materiaalia voi tihkua pois. Sitä voidaan kompensoida tässä."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Takaisinvedon minimiliike"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Tarvittavan siirtoliikkeen minimietäisyys, jotta takaisinveto yleensäkin tapahtuu. Tällä varmistetaan, ettei takaisinvetoja tapahdu runsaasti pienellä alueella."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Takaisinvedon maksimiluku"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Tämä asetus rajoittaa pursotuksen minimietäisyyden ikkunassa tapahtuvien takaisinvetojen lukumäärää. Muut tämän ikkunan takaisinvedot jätetään huomiotta. Tällä vältetään toistuvat takaisinvedot samalla tulostuslangan osalla, sillä tällöin lanka voi litistyä ja aiheuttaa hiertymisongelmia."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Pursotuksen minimietäisyyden ikkuna"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Ikkuna, jossa takaisinvedon maksimiluku otetaan käyttöön. Tämän ikkunan tulisi olla suunnilleen takaisinvetoetäisyyden kokoinen, jotta saman kohdan sivuuttavien takaisinvetojen lukumäärää saadaan rajoitettua."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -4269,6 +4309,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "Reunukseen käytettävien linjojen lukumäärä. Useampi reunuslinja parantaa kiinnitystä alustaan, mutta rajoittaa tehokasta tulostusaluetta."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4699,6 +4749,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "Tihkusuojuksen etäisyys tulosteesta X-/Y-suunnissa."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Suuttimen vaihdon takaisinvetoetäisyys"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Suuttimen vaihdon takaisinvetonopeus"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Nopeus, jolla tulostuslanka vedetään sisään. Suurempi takaisinvetonopeus toimii paremmin, mutta erittäin suuri takaisinvetonopeus saattaa hiertää tulostuslankaa."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Suuttimen vaihdon takaisinvetonopeus"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Nopeus, jolla tulostuslanka vedetään sisään suuttimen vaihdon takaisinvedon yhteydessä."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Suuttimen vaihdon esitäyttönopeus"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Nopeus, jolla tulostuslanka työnnetään takaisin suuttimen vaihdon takaisinvedon jälkeen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4836,8 +4936,8 @@ msgstr "Tulostusjärjestys"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "Tulostetaanko kaikki mallit kerros kerrallaan vai odotetaanko yhden mallin valmistumista ennen kuin siirrytään seuraavaan. Yksi kerrallaan -tila on mahdollinen vain silloin, jos kaikki mallit ovat erillään siten, että koko tulostuspää voi siirtyä niiden välillä ja kaikki mallit ovat suuttimen ja X-/Y-akselien välistä etäisyyttä alempana."
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5064,26 +5164,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5474,6 +5554,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "Satunnainen värinä tulostettaessa ulkoseinämää, jotta pinta näyttää viimeistelemättömältä ja karhealta."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5873,6 +5963,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6040,7 +6140,7 @@ msgstr ""
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
|
@ -6050,7 +6150,7 @@ msgstr ""
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
|
@ -6105,7 +6205,7 @@ msgstr ""
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
|
@ -6125,12 +6225,12 @@ msgstr ""
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
|
@ -6283,6 +6383,14 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Mallissa käytettävä muunnosmatriisi, kun malli ladataan tiedostosta."
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "2D-siluetti tulostuspäästä (tuulettimen kannattimet pois lukien)"
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "Tulostetaanko kaikki mallit kerros kerrallaan vai odotetaanko yhden mallin valmistumista ennen kuin siirrytään seuraavaan. Yksi kerrallaan -tila on mahdollinen vain silloin, jos kaikki mallit ovat erillään siten, että koko tulostuspää voi siirtyä niiden välillä ja kaikki mallit ovat suuttimen ja X-/Y-akselien välistä etäisyyttä alempana."
|
||||
|
||||
#~ msgctxt "skin_alternate_rotation label"
|
||||
#~ msgid "Alternate Skin Rotation"
|
||||
#~ msgstr "Vuorottele pintakalvon pyöritystä"
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: French\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-07-29 15:51+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: French <info@lionbridge.com>, French <info@bothof.nl>\n"
|
||||
|
@ -410,6 +410,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "S'il faut utiliser les commandes de rétraction du firmware (G10 / G11) au lieu d'utiliser la propriété E dans les commandes G1 pour rétracter le matériau."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -430,16 +440,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "Une liste de polygones comportant les zones dans lesquelles le bec n'a pas le droit de pénétrer."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "Polygone de la tête de machine"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "Une silhouette 2D de la tête d'impression (sans les capuchons du ventilateur)."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1038,8 +1038,7 @@ msgstr "Couches inférieures initiales"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "initial_bottom_layers description"
|
||||
msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
|
||||
msgstr "Le nombre de couches inférieures initiales à partir du haut du plateau. Lorsqu'elle est calculée par l'épaisseur du dessous, cette valeur est arrondie"
|
||||
" à un nombre entier."
|
||||
msgstr "Le nombre de couches inférieures initiales à partir du haut du plateau. Lorsqu'elle est calculée par l'épaisseur du dessous, cette valeur est arrondie à un nombre entier."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "top_bottom_pattern label"
|
||||
|
@ -1935,6 +1934,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "Les zones de couche extérieure plus étroites que cette valeur ne seront pas étendues. Cela permet d'éviter d'étendre les zones de couche extérieure étroites qui sont créées lorsque la surface du modèle possède une pente proche de la verticale."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2125,6 +2144,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "La vitesse à laquelle le filament doit être rétracté juste avant de le briser dans une rétraction."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2155,6 +2184,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "La température à laquelle le filament est cassé pour une rupture propre."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2295,116 +2384,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "Compensation du débit pour la couche initiale : la quantité de matériau extrudée sur la couche initiale est multipliée par cette valeur."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Activer la rétraction"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Rétracte le filament quand la buse se déplace vers une zone non imprimée. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Rétracter au changement de couche"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Rétracter le filament quand le bec se déplace vers la prochaine couche."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Distance de rétraction"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "La longueur de matériau rétracté pendant une rétraction."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Vitesse de rétraction"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "La vitesse à laquelle le filament est rétracté et préparé pendant une rétraction."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Vitesse de rétraction"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "La vitesse à laquelle le filament est rétracté pendant une rétraction."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Vitesse de rétraction primaire"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "La vitesse à laquelle le filament est préparé pendant une rétraction."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Volume supplémentaire à l'amorçage"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Du matériau peut suinter pendant un déplacement, ce qui peut être compensé ici."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Déplacement minimal de rétraction"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "La distance minimale de déplacement nécessaire pour qu’une rétraction ait lieu. Cela permet d’éviter qu’un grand nombre de rétractions ne se produisent sur une petite portion."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Nombre maximal de rétractions"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Ce paramètre limite le nombre de rétractions dans l'intervalle de distance minimal d'extrusion. Les rétractions qui dépassent cette valeur seront ignorées. Cela évite les rétractions répétitives sur le même morceau de filament, car cela risque de l’aplatir et de générer des problèmes d’écrasement."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Intervalle de distance minimale d'extrusion"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "L'intervalle dans lequel le nombre maximal de rétractions est incrémenté. Cette valeur doit être du même ordre de grandeur que la distance de rétraction, limitant ainsi le nombre de mouvements de rétraction sur une même portion de matériau."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Limiter les rétractations du support"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Omettre la rétraction lors du passage entre supports en ligne droite. L'activation de ce paramètre permet de gagner du temps lors de l'impression, mais peut conduire à un stringing excessif à l'intérieur de la structure de support."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2415,56 +2394,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "La température de la buse lorsqu'une autre buse est actuellement utilisée pour l'impression."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Distance de rétraction de changement de buse"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Degré de rétraction lors de la commutation d'extrudeuses. Une valeur de 0 signifie qu'il n'y aura aucune rétraction. En général, cette valeur doit être équivalente à la longueur de la zone de chauffe."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Vitesse de rétraction de changement de buse"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "La vitesse à laquelle le filament est rétracté. Une vitesse de rétraction plus élevée fonctionne mieux, mais une vitesse de rétraction très élevée peut causer l'écrasement du filament."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Vitesse de rétraction de changement de buse"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "La vitesse à laquelle le filament est rétracté pendant une rétraction de changement de buse."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Vitesse primaire de changement de buse"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "La vitesse à laquelle le filament est poussé vers l'arrière après une rétraction de changement de buse."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Montant de l'amorce supplémentaire lors d'un changement de buse"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Matériel supplémentaire à amorcer après le changement de buse."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3085,6 +3014,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "déplacement"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Activer la rétraction"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Rétracte le filament quand la buse se déplace vers une zone non imprimée. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Rétracter au changement de couche"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Rétracter le filament quand le bec se déplace vers la prochaine couche."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Distance de rétraction"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "La longueur de matériau rétracté pendant une rétraction."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Vitesse de rétraction"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "La vitesse à laquelle le filament est rétracté et préparé pendant une rétraction."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Vitesse de rétraction"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "La vitesse à laquelle le filament est rétracté pendant une rétraction."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Vitesse de rétraction primaire"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "La vitesse à laquelle le filament est préparé pendant une rétraction."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Volume supplémentaire à l'amorçage"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Du matériau peut suinter pendant un déplacement, ce qui peut être compensé ici."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Déplacement minimal de rétraction"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "La distance minimale de déplacement nécessaire pour qu’une rétraction ait lieu. Cela permet d’éviter qu’un grand nombre de rétractions ne se produisent sur une petite portion."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Nombre maximal de rétractions"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Ce paramètre limite le nombre de rétractions dans l'intervalle de distance minimal d'extrusion. Les rétractions qui dépassent cette valeur seront ignorées. Cela évite les rétractions répétitives sur le même morceau de filament, car cela risque de l’aplatir et de générer des problèmes d’écrasement."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Intervalle de distance minimale d'extrusion"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "L'intervalle dans lequel le nombre maximal de rétractions est incrémenté. Cette valeur doit être du même ordre de grandeur que la distance de rétraction, limitant ainsi le nombre de mouvements de rétraction sur une même portion de matériau."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Limiter les rétractations du support"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Omettre la rétraction lors du passage entre supports en ligne droite. L'activation de ce paramètre permet de gagner du temps lors de l'impression, mais peut conduire à un stringing excessif à l'intérieur de la structure de support."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -3993,8 +4032,7 @@ msgstr "Surface minimale de l'interface de support"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "minimum_interface_area description"
|
||||
msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
|
||||
msgstr "Taille minimale de la surface des polygones d'interface de support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés"
|
||||
" comme support normal."
|
||||
msgstr "Taille minimale de la surface des polygones d'interface de support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "minimum_roof_area label"
|
||||
|
@ -4004,8 +4042,7 @@ msgstr "Surface minimale du plafond de support"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "minimum_roof_area description"
|
||||
msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support."
|
||||
msgstr "Taille minimale de la surface des plafonds du support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support"
|
||||
" normal."
|
||||
msgstr "Taille minimale de la surface des plafonds du support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "minimum_bottom_area label"
|
||||
|
@ -4281,6 +4318,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "Le nombre de lignes utilisées pour une bordure. Un plus grand nombre de lignes de bordure renforce l'adhérence au plateau mais réduit également la zone d'impression réelle."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4711,6 +4758,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "Distance entre le bouclier de suintage et l'impression dans les directions X/Y."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Distance de rétraction de changement de buse"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Degré de rétraction lors de la commutation d'extrudeuses. Une valeur de 0 signifie qu'il n'y aura aucune rétraction. En général, cette valeur doit être équivalente à la longueur de la zone de chauffe."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Vitesse de rétraction de changement de buse"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "La vitesse à laquelle le filament est rétracté. Une vitesse de rétraction plus élevée fonctionne mieux, mais une vitesse de rétraction très élevée peut causer l'écrasement du filament."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Vitesse de rétraction de changement de buse"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "La vitesse à laquelle le filament est rétracté pendant une rétraction de changement de buse."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Vitesse primaire de changement de buse"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "La vitesse à laquelle le filament est poussé vers l'arrière après une rétraction de changement de buse."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Montant de l'amorce supplémentaire lors d'un changement de buse"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Matériel supplémentaire à amorcer après le changement de buse."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4848,8 +4945,8 @@ msgstr "Séquence d'impression"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "Imprime tous les modèles en même temps couche par couche ou attend la fin d'un modèle pour en commencer un autre. Le mode « Un modèle à la fois » est disponible seulement si tous les modèles sont suffisamment éloignés pour que la tête puisse passer entre eux et qu'ils sont tous inférieurs à la distance entre la buse et les axes X/Y."
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5076,26 +5173,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "Résolution servant à calculer les collisions afin d'éviter de heurter le modèle. Plus ce paramètre est faible, plus les arborescences seront précises et stables, mais cela augmente considérablement le temps de découpage."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "Épaisseur de la paroi du support arborescent"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Épaisseur des parois des branches du support arborescent. Les parois plus épaisses prennent plus de temps à imprimer, mais ne tombent pas aussi facilement."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "Nombre de lignes de la paroi du support arborescent"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Nombre de parois des branches du support arborescent. Les parois plus épaisses prennent plus de temps à imprimer, mais ne tombent pas aussi facilement."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5486,6 +5563,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "Produit une agitation aléatoire lors de l'impression de la paroi extérieure, ce qui lui donne une apparence rugueuse et floue."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5534,8 +5621,7 @@ msgstr "Facteur de compensation du débit"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "flow_rate_extrusion_offset_factor description"
|
||||
msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
|
||||
msgstr "La distance de déplacement du filament pour compenser les variations du débit, en pourcentage de la distance de déplacement du filament en une seconde"
|
||||
" d'extrusion."
|
||||
msgstr "La distance de déplacement du filament pour compenser les variations du débit, en pourcentage de la distance de déplacement du filament en une seconde d'extrusion."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wireframe_enabled label"
|
||||
|
@ -5834,8 +5920,7 @@ msgstr "Taille de la topographie des couches adaptatives"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "adaptive_layer_height_threshold description"
|
||||
msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
|
||||
msgstr "Distance horizontale cible entre deux couches adjacentes. La réduction de ce paramètre entraîne l'utilisation de couches plus fines pour rapprocher les"
|
||||
" bords des couches."
|
||||
msgstr "Distance horizontale cible entre deux couches adjacentes. La réduction de ce paramètre entraîne l'utilisation de couches plus fines pour rapprocher les bords des couches."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle label"
|
||||
|
@ -5845,8 +5930,7 @@ msgstr "Angle de parois en porte-à-faux"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle description"
|
||||
msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
|
||||
msgstr "Les parois ayant un angle supérieur à cette valeur seront imprimées en utilisant les paramètres de parois en porte-à-faux. Si la valeur est 90, aucune"
|
||||
" paroi ne sera considérée comme étant en porte-à-faux. La saillie soutenue par le support ne sera pas non plus considérée comme étant en porte-à-faux."
|
||||
msgstr "Les parois ayant un angle supérieur à cette valeur seront imprimées en utilisant les paramètres de parois en porte-à-faux. Si la valeur est 90, aucune paroi ne sera considérée comme étant en porte-à-faux. La saillie soutenue par le support ne sera pas non plus considérée comme étant en porte-à-faux."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_speed_factor label"
|
||||
|
@ -5888,6 +5972,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "Si une région de couche extérieure est supportée pour une valeur inférieure à ce pourcentage de sa surface, elle sera imprimée selon les paramètres du pont. Sinon, elle sera imprimée selon les paramètres normaux de la couche extérieure."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6055,8 +6149,8 @@ msgstr "Essuyer la buse entre les couches"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "Inclure ou non le G-Code d'essuyage de la buse entre les couches. L'activation de ce paramètre peut influencer le comportement de la rétraction lors du changement de couche. Veuillez utiliser les paramètres de rétraction d'essuyage pour contrôler la rétraction aux couches où le script d'essuyage sera exécuté."
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6065,8 +6159,8 @@ msgstr "Volume de matériau entre les essuyages"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "Le volume maximum de matériau qui peut être extrudé avant qu'un autre essuyage de buse ne soit lancé."
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6120,8 +6214,8 @@ msgstr "La vitesse à laquelle le filament est rétracté pendant un déplacemen
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Vitesse de rétraction primaire"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6140,13 +6234,13 @@ msgstr "Pause après l'irrétraction."
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "Décalage en Z d'essuyage lors d’une rétraction"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "À chaque rétraction, le plateau est abaissé pour créer un espace entre la buse et l'impression. Cela évite que la buse ne touche l'impression pendant les déplacements, réduisant ainsi le risque de heurter l'impression à partir du plateau."
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6226,8 +6320,7 @@ msgstr "Vitesse de petite structure"
|
|||
#: fdmprinter.def.json
|
||||
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."
|
||||
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_feature_speed_factor_0 label"
|
||||
|
@ -6237,8 +6330,7 @@ msgstr "Vitesse de la couche initiale de petite structure"
|
|||
#: 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."
|
||||
msgstr "Les petites structures sur la première couche seront imprimées à ce pourcentage de la vitesse d'impression normale. Une impression plus lente peut aider"
|
||||
" à l'adhésion et à la précision."
|
||||
msgstr "Les petites structures sur la première couche 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 "command_line_settings label"
|
||||
|
@ -6300,6 +6392,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Matrice de transformation à appliquer au modèle lors de son chargement depuis le fichier."
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "Polygone de la tête de machine"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "Une silhouette 2D de la tête d'impression (sans les capuchons du ventilateur)."
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "Imprime tous les modèles en même temps couche par couche ou attend la fin d'un modèle pour en commencer un autre. Le mode « Un modèle à la fois » est disponible seulement si tous les modèles sont suffisamment éloignés pour que la tête puisse passer entre eux et qu'ils sont tous inférieurs à la distance entre la buse et les axes X/Y."
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "Épaisseur de la paroi du support arborescent"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Épaisseur des parois des branches du support arborescent. Les parois plus épaisses prennent plus de temps à imprimer, mais ne tombent pas aussi facilement."
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "Nombre de lignes de la paroi du support arborescent"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Nombre de parois des branches du support arborescent. Les parois plus épaisses prennent plus de temps à imprimer, mais ne tombent pas aussi facilement."
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "Inclure ou non le G-Code d'essuyage de la buse entre les couches. L'activation de ce paramètre peut influencer le comportement de la rétraction lors du changement de couche. Veuillez utiliser les paramètres de rétraction d'essuyage pour contrôler la rétraction aux couches où le script d'essuyage sera exécuté."
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "Le volume maximum de matériau qui peut être extrudé avant qu'un autre essuyage de buse ne soit lancé."
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "Vitesse de rétraction primaire"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "Décalage en Z d'essuyage lors d’une rétraction"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "À chaque rétraction, le plateau est abaissé pour créer un espace entre la buse et l'impression. Cela évite que la buse ne touche l'impression pendant les déplacements, réduisant ainsi le risque de heurter l'impression à partir du plateau."
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "Taille minimale de la surface des polygones d'interface de support : les polygones dont la surface est inférieure à cette valeur ne seront pas générés."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Italian\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-07-29 15:51+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Italian <info@lionbridge.com>, Italian <info@bothof.nl>\n"
|
||||
|
@ -410,6 +410,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "Specifica se usare comandi di retrazione firmware (G10/G11) anziché utilizzare la proprietà E nei comandi G1 per retrarre il materiale."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -430,16 +440,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "Un elenco di poligoni con aree alle quali l’ugello non può accedere."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "Poligono testina macchina"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "Una silhouette 2D della testina di stampa (cappucci ventola esclusi)."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1038,8 +1038,7 @@ msgstr "Layer inferiori iniziali"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "initial_bottom_layers description"
|
||||
msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
|
||||
msgstr "Il numero di layer inferiori iniziali, dal piano di stampa verso l'alto. Quando viene calcolato mediante lo spessore inferiore, questo valore viene arrotondato"
|
||||
" a un numero intero."
|
||||
msgstr "Il numero di layer inferiori iniziali, dal piano di stampa verso l'alto. Quando viene calcolato mediante lo spessore inferiore, questo valore viene arrotondato a un numero intero."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "top_bottom_pattern label"
|
||||
|
@ -1935,6 +1934,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "Le aree del rivestimento esterno inferiori a questa non vengono prolungate. In tal modo si evita di prolungare le aree del rivestimento esterno strette che vengono create quando la superficie del modello presenta un’inclinazione quasi verticale."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2125,6 +2144,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "La velocità massima di retrazione del filamento prima che si rompa durante questa operazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2155,6 +2184,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "La temperatura a cui il filamento viene rotto, con una rottura netta."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2295,116 +2384,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "Determina la compensazione del flusso per il primo strato: la quantità di materiale estruso sullo strato iniziale viene moltiplicata per questo valore."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Abilitazione della retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Retrazione al cambio strato"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Ritrae il filamento quando l'ugello si sta muovendo allo strato successivo."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Distanza di retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "La lunghezza del materiale retratto durante il movimento di retrazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Velocità di retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Velocità di retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Velocità di innesco dopo la retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Entità di innesco supplementare dopo la retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi durante uno spostamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Distanza minima di retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Determina la distanza minima necessaria affinché avvenga una retrazione. Questo consente di avere un minor numero di retrazioni in piccole aree."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Numero massimo di retrazioni"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Questa impostazione limita il numero di retrazioni previste all'interno della finestra di minima distanza di estrusione. Ulteriori retrazioni nell'ambito di questa finestra saranno ignorate. Questo evita di eseguire ripetute retrazioni sullo stesso pezzo di filamento, onde evitarne l'appiattimento e conseguenti problemi di deformazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Finestra di minima distanza di estrusione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "La finestra in cui è impostato il massimo numero di retrazioni. Questo valore deve corrispondere all'incirca alla distanza di retrazione, in modo da limitare effettivamente il numero di volte che una retrazione interessa lo stesso spezzone di materiale."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Limitazione delle retrazioni del supporto"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Omettere la retrazione negli spostamenti da un supporto ad un altro in linea retta. L'abilitazione di questa impostazione riduce il tempo di stampa, ma può comportare un'eccessiva produzione di filamenti all'interno della struttura del supporto."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2415,56 +2394,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "Indica la temperatura dell'ugello quando un altro ugello è attualmente in uso per la stampa."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Distanza di retrazione cambio ugello"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Indica il valore di retrazione alla commutazione degli estrusori. Impostato a 0 per nessuna retrazione. Questo valore generalmente dovrebbe essere lo stesso della lunghezza della zona di riscaldamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Velocità di retrazione cambio ugello"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Indica la velocità di retrazione del filamento. Una maggiore velocità di retrazione funziona bene, ma una velocità di retrazione eccessiva può portare alla deformazione del filamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Velocità di retrazione cambio ugello"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Indica la velocità alla quale il filamento viene retratto durante una retrazione per cambio ugello."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Velocità innesco cambio ugello"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Indica la velocità alla quale il filamento viene sospinto indietro dopo la retrazione per cambio ugello."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Quantità di materiale extra della Prime Tower, al cambio ugello"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Materiale extra per l'innesco dopo il cambio dell'ugello."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3085,6 +3014,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "spostamenti"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Abilitazione della retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Retrazione al cambio strato"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Ritrae il filamento quando l'ugello si sta muovendo allo strato successivo."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Distanza di retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "La lunghezza del materiale retratto durante il movimento di retrazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Velocità di retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Velocità di retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Velocità di innesco dopo la retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Entità di innesco supplementare dopo la retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi durante uno spostamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Distanza minima di retrazione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Determina la distanza minima necessaria affinché avvenga una retrazione. Questo consente di avere un minor numero di retrazioni in piccole aree."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Numero massimo di retrazioni"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Questa impostazione limita il numero di retrazioni previste all'interno della finestra di minima distanza di estrusione. Ulteriori retrazioni nell'ambito di questa finestra saranno ignorate. Questo evita di eseguire ripetute retrazioni sullo stesso pezzo di filamento, onde evitarne l'appiattimento e conseguenti problemi di deformazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Finestra di minima distanza di estrusione"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "La finestra in cui è impostato il massimo numero di retrazioni. Questo valore deve corrispondere all'incirca alla distanza di retrazione, in modo da limitare effettivamente il numero di volte che una retrazione interessa lo stesso spezzone di materiale."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Limitazione delle retrazioni del supporto"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Omettere la retrazione negli spostamenti da un supporto ad un altro in linea retta. L'abilitazione di questa impostazione riduce il tempo di stampa, ma può comportare un'eccessiva produzione di filamenti all'interno della struttura del supporto."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -3993,8 +4032,7 @@ msgstr "Area minima interfaccia supporto"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "minimum_interface_area description"
|
||||
msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
|
||||
msgstr "Dimensione minima dell'area per i poligoni dell'interfaccia di supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come"
|
||||
" supporto normale."
|
||||
msgstr "Dimensione minima dell'area per i poligoni dell'interfaccia di supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "minimum_roof_area label"
|
||||
|
@ -4004,8 +4042,7 @@ msgstr "Area minima parti superiori supporto"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "minimum_roof_area description"
|
||||
msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support."
|
||||
msgstr "Dimensione minima dell'area per le parti superiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto"
|
||||
" normale."
|
||||
msgstr "Dimensione minima dell'area per le parti superiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "minimum_bottom_area label"
|
||||
|
@ -4015,8 +4052,7 @@ msgstr "Area minima parti inferiori supporto"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "minimum_bottom_area description"
|
||||
msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support."
|
||||
msgstr "Dimensione minima dell'area per le parti inferiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto"
|
||||
" normale."
|
||||
msgstr "Dimensione minima dell'area per le parti inferiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_interface_offset label"
|
||||
|
@ -4282,6 +4318,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "Corrisponde al numero di linee utilizzate per un brim. Più linee brim migliorano l’adesione al piano di stampa, ma con riduzione dell'area di stampa."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4712,6 +4758,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "Indica la distanza del riparo materiale fuoriuscito dalla stampa, nelle direzioni X/Y."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Distanza di retrazione cambio ugello"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Indica il valore di retrazione alla commutazione degli estrusori. Impostato a 0 per nessuna retrazione. Questo valore generalmente dovrebbe essere lo stesso della lunghezza della zona di riscaldamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Velocità di retrazione cambio ugello"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Indica la velocità di retrazione del filamento. Una maggiore velocità di retrazione funziona bene, ma una velocità di retrazione eccessiva può portare alla deformazione del filamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Velocità di retrazione cambio ugello"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Indica la velocità alla quale il filamento viene retratto durante una retrazione per cambio ugello."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Velocità innesco cambio ugello"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Indica la velocità alla quale il filamento viene sospinto indietro dopo la retrazione per cambio ugello."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Quantità di materiale extra della Prime Tower, al cambio ugello"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Materiale extra per l'innesco dopo il cambio dell'ugello."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4849,8 +4945,8 @@ msgstr "Sequenza di stampa"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "Indica se stampare tutti i modelli uno strato alla volta o se attendere di terminare un modello prima di passare al successivo. La modalità 'uno per volta' è possibile solo se tutti i modelli sono separati in modo tale che l'intera testina di stampa possa muoversi tra di essi e se tutti i modelli sono più bassi della distanza tra l'ugello e gli assi X/Y."
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5077,26 +5173,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "Risoluzione per calcolare le collisioni per evitare di colpire il modello. L’impostazione a un valore basso genera alberi più accurati che si rompono meno sovente, ma aumenta notevolmente il tempo di sezionamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "Spessore delle pareti supporto ad albero"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Lo spessore delle pareti dei rami del supporto ad albero. Le pareti più spesse hanno un tempo di stampa superiore ma non cadono facilmente."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "Numero delle linee perimetrali supporto ad albero"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Il numero di pareti dei rami del supporto ad albero. Le pareti più spesse hanno un tempo di stampa superiore ma non cadono facilmente."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5487,6 +5563,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "Distorsione (jitter) casuale durante la stampa della parete esterna, così che la superficie assume un aspetto ruvido ed incoerente (fuzzy)."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5535,8 +5621,7 @@ msgstr "Fattore di compensazione del flusso"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "flow_rate_extrusion_offset_factor description"
|
||||
msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
|
||||
msgstr "Distanza di spostamento del filamento al fine di compensare le modifiche nella velocità di flusso, come percentuale della distanza di spostamento del filamento"
|
||||
" in un secondo di estrusione."
|
||||
msgstr "Distanza di spostamento del filamento al fine di compensare le modifiche nella velocità di flusso, come percentuale della distanza di spostamento del filamento in un secondo di estrusione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wireframe_enabled label"
|
||||
|
@ -5835,8 +5920,7 @@ msgstr "Dimensione della topografia dei layer adattivi"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "adaptive_layer_height_threshold description"
|
||||
msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
|
||||
msgstr "Distanza orizzontale target tra due layer adiacenti. Riducendo questa impostazione, i layer più sottili verranno utilizzati per avvicinare i margini dei"
|
||||
" layer."
|
||||
msgstr "Distanza orizzontale target tra due layer adiacenti. Riducendo questa impostazione, i layer più sottili verranno utilizzati per avvicinare i margini dei layer."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle label"
|
||||
|
@ -5846,8 +5930,7 @@ msgstr "Angolo parete di sbalzo"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle description"
|
||||
msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
|
||||
msgstr "Le pareti con uno sbalzo superiore a quest'angolo saranno stampate con le impostazioni per le pareti a sbalzo. Se il valore è 90, nessuna parete sarà trattata"
|
||||
" come parete a sbalzo. Nemmeno lo sbalzo supportato dal supporto sarà trattato come tale."
|
||||
msgstr "Le pareti con uno sbalzo superiore a quest'angolo saranno stampate con le impostazioni per le pareti a sbalzo. Se il valore è 90, nessuna parete sarà trattata come parete a sbalzo. Nemmeno lo sbalzo supportato dal supporto sarà trattato come tale."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_speed_factor label"
|
||||
|
@ -5889,6 +5972,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "Se una zona di rivestimento esterno è supportata per meno di questa percentuale della sua area, effettuare la stampa utilizzando le impostazioni ponte. In caso contrario viene stampata utilizzando le normali impostazioni rivestimento esterno."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6056,8 +6149,8 @@ msgstr "Pulitura ugello tra gli strati"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "Se includere il codice G di pulitura ugello tra gli strati. Abilitare questa impostazione potrebbe influire sul comportamento di retrazione al cambio strato. Utilizzare le impostazioni di Retrazione per pulitura per controllare la retrazione in corrispondenza degli strati in cui lo script di pulitura sarà funzionante."
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6066,8 +6159,8 @@ msgstr "Volume di materiale tra le operazioni di pulitura"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "Il massimo volume di materiale, che può essere estruso prima di iniziare la successiva operazione di pulitura ugello."
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6121,8 +6214,8 @@ msgstr "Indica la velocità alla quale il filamento viene retratto durante un mo
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Velocità di innesco dopo la retrazione"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6141,13 +6234,13 @@ msgstr "Pausa dopo ripristino."
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "Z Hop pulitura durante retrazione"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "Ogniqualvolta avviene una retrazione, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. Questo impedisce l'urto dell'ugello sulla stampa durante gli spostamenti, riducendo la possibilità di far cadere la stampa dal piano."
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6227,8 +6320,7 @@ msgstr "Velocità dettagli piccole dimensioni"
|
|||
#: fdmprinter.def.json
|
||||
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."
|
||||
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_feature_speed_factor_0 label"
|
||||
|
@ -6238,8 +6330,7 @@ msgstr "Velocità layer iniziale per dettagli di piccole dimensioni"
|
|||
#: 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."
|
||||
msgstr "I dettagli di piccole dimensioni sul primo layer saranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare"
|
||||
" in termini di adesione e precisione."
|
||||
msgstr "I dettagli di piccole dimensioni sul primo layer saranno 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 "command_line_settings label"
|
||||
|
@ -6301,6 +6392,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Matrice di rotazione da applicare al modello quando caricato dal file."
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "Poligono testina macchina"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "Una silhouette 2D della testina di stampa (cappucci ventola esclusi)."
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "Indica se stampare tutti i modelli uno strato alla volta o se attendere di terminare un modello prima di passare al successivo. La modalità 'uno per volta' è possibile solo se tutti i modelli sono separati in modo tale che l'intera testina di stampa possa muoversi tra di essi e se tutti i modelli sono più bassi della distanza tra l'ugello e gli assi X/Y."
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "Spessore delle pareti supporto ad albero"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Lo spessore delle pareti dei rami del supporto ad albero. Le pareti più spesse hanno un tempo di stampa superiore ma non cadono facilmente."
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "Numero delle linee perimetrali supporto ad albero"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Il numero di pareti dei rami del supporto ad albero. Le pareti più spesse hanno un tempo di stampa superiore ma non cadono facilmente."
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "Se includere il codice G di pulitura ugello tra gli strati. Abilitare questa impostazione potrebbe influire sul comportamento di retrazione al cambio strato. Utilizzare le impostazioni di Retrazione per pulitura per controllare la retrazione in corrispondenza degli strati in cui lo script di pulitura sarà funzionante."
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "Il massimo volume di materiale, che può essere estruso prima di iniziare la successiva operazione di pulitura ugello."
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "Velocità di innesco dopo la retrazione"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "Z Hop pulitura durante retrazione"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "Ogniqualvolta avviene una retrazione, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. Questo impedisce l'urto dell'ugello sulla stampa durante gli spostamenti, riducendo la possibilità di far cadere la stampa dal piano."
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "Dimensioni minime area per i poligoni di interfaccia del supporto. I poligoni con un’area inferiore a questo valore non verranno generati."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Japanese\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-09-23 14:15+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Japanese <info@lionbridge.com>, Japanese <info@bothof.nl>\n"
|
||||
|
@ -439,6 +439,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "材料を引き戻すためにG1コマンドのEプロパティーを使用する代わりにファームウェア引き戻しコマンド (G10/G11) を使用するかどうか。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -459,16 +469,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "ノズルが入ることができない領域を持つポリゴンのリスト。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "プリントヘッドポリゴン"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "プリントヘッドの2Dシルエット(ファンキャップは除く)。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -2015,6 +2015,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "これより狭いスキン領域は展開されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2205,6 +2225,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "フィラメントの引き出しが起こるための引き戻しの距離。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2235,6 +2265,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "フィラメントがきれいに引き出される温度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2375,116 +2465,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "初期レイヤーの流量補修:初期レイヤーの マテリアル吐出量はこの値の乗算で計算されます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "引き戻し有効"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。 "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "レイヤー変更時に引き戻す"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "ノズルは次の層に移動するときフィラメントを引き戻します。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "引き戻し距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "引き戻されるマテリアルの長さ。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "引き戻し速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "フィラメントが引き戻される時のスピード。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "引き戻し速度の取り消し"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "フィラメントが引き戻される時のスピード。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "押し戻し速度の取り消し"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "フィラメントが引き戻される時のスピード。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "余分な押し戻し量の引き戻し"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "マテリアルによっては、移動中に滲み出てきてしまうときがあり、ここで調整することができます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "引き戻し最小移動距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "フィラメントを引き戻す際に必要な最小移動距離。これは、短い距離内での引き戻しの回数を減らすために役立ちます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "最大引き戻し回数"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "最小抽出距離範囲"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "最大の引き戻し回数。この値は引き戻す距離と同じであることで、引き戻しが効果的に行われます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "サポート引き戻し限界"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "支持材から支持材に直線移動する場合は、引戻しを省略します。この設定を有効にすると、印刷時間は節約できますが、支持材内で過剰な糸引きが発生する可能性があります。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2495,56 +2475,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "印刷していないノズルの温度(もう一方のノズルが印刷中)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "ノズルスイッチ引き戻し距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "エクストルーダー切り替え時の引き込み量。引き込みを行わない場合は0に設定します。これは通常、ヒートゾーンの長さと同じに設定します。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "ノズルスイッチ引き戻し速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "フィラメントを引き戻す速度。速度が早い程良いが早すぎるとフィラメントを削ってしまう可能性があります。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "ノズルスイッチ引き込み速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "ノズル切り替え中のフィラメントの引き込み速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "ノズルスイッチ押し戻し速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "ノズル スイッチ後にフィラメントが押し戻される速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "ノズル切替え後のプライムに必要な余剰量"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "ノズル切替え後のプライムに必要な余剰材料。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3174,6 +3104,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "移動"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "引き戻し有効"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。 "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "レイヤー変更時に引き戻す"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "ノズルは次の層に移動するときフィラメントを引き戻します。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "引き戻し距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "引き戻されるマテリアルの長さ。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "引き戻し速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "フィラメントが引き戻される時のスピード。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "引き戻し速度の取り消し"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "フィラメントが引き戻される時のスピード。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "押し戻し速度の取り消し"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "フィラメントが引き戻される時のスピード。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "余分な押し戻し量の引き戻し"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "マテリアルによっては、移動中に滲み出てきてしまうときがあり、ここで調整することができます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "引き戻し最小移動距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "フィラメントを引き戻す際に必要な最小移動距離。これは、短い距離内での引き戻しの回数を減らすために役立ちます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "最大引き戻し回数"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "最小抽出距離範囲"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "最大の引き戻し回数。この値は引き戻す距離と同じであることで、引き戻しが効果的に行われます。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "サポート引き戻し限界"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "支持材から支持材に直線移動する場合は、引戻しを省略します。この設定を有効にすると、印刷時間は節約できますが、支持材内で過剰な糸引きが発生する可能性があります。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -4400,6 +4440,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させる。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4830,6 +4880,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "壁(ooze shield)の造形物からの距離。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "ノズルスイッチ引き戻し距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "エクストルーダー切り替え時の引き込み量。引き込みを行わない場合は0に設定します。これは通常、ヒートゾーンの長さと同じに設定します。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "ノズルスイッチ引き戻し速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "フィラメントを引き戻す速度。速度が早い程良いが早すぎるとフィラメントを削ってしまう可能性があります。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "ノズルスイッチ引き込み速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "ノズル切り替え中のフィラメントの引き込み速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "ノズルスイッチ押し戻し速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "ノズル スイッチ後にフィラメントが押し戻される速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "ノズル切替え後のプライムに必要な余剰量"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "ノズル切替え後のプライムに必要な余剰材料。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4967,8 +5067,8 @@ msgstr "印刷頻度"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "すべてのモデルをレイヤーごとに印刷するか、1つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。造形物の間にヘッドが通るだけのスペースがある場合のみ、一つずつ印刷する事が出来ます。"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5200,26 +5300,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "モデルに干渉しないようにする衝突計算の精細度。小さい値を設定すると、失敗の少ない正確なツリーが生成されますが、スライス時間は大きく増加します。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "ツリーサポート壁厚"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "ツリーサポートの枝の壁の厚さ。壁が厚いほどプリント時間が長くなりますが、崩れにくくなります。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "ツリーサポートウォールライン数"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "ツリーサポートの枝の壁の数。壁が厚いほどプリント時間が長くなりますが、崩れにくくなります。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5627,6 +5707,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "外壁を印刷する際に振動が起こり、表面が粗くてぼやける。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -6024,6 +6114,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "対象領域に対してこのパーセンテージ未満のスキン領域がサポートされている場合、ブリッジ設定で印刷します。それ以外の場合は、通常のスキン設定で印刷します。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6191,8 +6291,8 @@ msgstr "レイヤー間のノズル拭き取り"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "レイヤー間にノズル拭き取り G-Code を含むかどうか指定します。この設定を有効にすると、レイヤ変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤでの押し戻しを制御するには、ワイプリトラクト設定を使用してください。"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6201,8 +6301,8 @@ msgstr "ワイプ間の材料の量"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "別のノズル拭き取りを行う前に押し出せる材料の最大量。"
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6256,8 +6356,8 @@ msgstr "ワイプ引き戻し移動時にフィラメントが引き戻される
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "押し戻し速度の取り消し"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6276,13 +6376,13 @@ msgstr "引き戻し前に一時停止します。"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "引き戻し時のワイプZホップ"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "引き戻しが完了すると、ビルドプレートが下降してノズルとプリントの間に隙間ができます。ノズルの走行中に造形物に当たるのを防ぎ、造形物をビルドプレートから剥がしてしまう現象を減らします。"
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6434,6 +6534,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。"
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "プリントヘッドポリゴン"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "プリントヘッドの2Dシルエット(ファンキャップは除く)。"
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "すべてのモデルをレイヤーごとに印刷するか、1つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。造形物の間にヘッドが通るだけのスペースがある場合のみ、一つずつ印刷する事が出来ます。"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "ツリーサポート壁厚"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "ツリーサポートの枝の壁の厚さ。壁が厚いほどプリント時間が長くなりますが、崩れにくくなります。"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "ツリーサポートウォールライン数"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "ツリーサポートの枝の壁の数。壁が厚いほどプリント時間が長くなりますが、崩れにくくなります。"
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "レイヤー間にノズル拭き取り G-Code を含むかどうか指定します。この設定を有効にすると、レイヤ変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤでの押し戻しを制御するには、ワイプリトラクト設定を使用してください。"
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "別のノズル拭き取りを行う前に押し出せる材料の最大量。"
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "押し戻し速度の取り消し"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "引き戻し時のワイプZホップ"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "引き戻しが完了すると、ビルドプレートが下降してノズルとプリントの間に隙間ができます。ノズルの走行中に造形物に当たるのを防ぎ、造形物をビルドプレートから剥がしてしまう現象を減らします。"
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "インターフェイスポリゴンをサポートする最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。"
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Korean <info@bothof.nl>\n"
|
||||
"Language-Team: Jinbum Kim <Jinbuhm.Kim@gmail.com>, Korean <info@bothof.nl>\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-07-29 15:51+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Korean <info@lionbridge.com>, Jinbum Kim <Jinbuhm.Kim@gmail.com>, Korean <info@bothof.nl>\n"
|
||||
|
@ -411,6 +411,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "재료를 리트렉션하는 G1 명령어에서 E 속성을 사용하는 대신 펌웨어 리트렉션 명령어(G10/G11)를 사용할 지 여부."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -431,16 +441,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "노즐이 위치할 수 없는 구역의 목록입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "머신 헤드 폴리곤"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "프린트 헤드의 2D 실루엣 (팬 캡 제외)."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1935,6 +1935,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "이보다 좁은 스킨 영역은 확장되지 않습니다. 이렇게하면 모델 표면이 수직에 가까운 기울기를 가질 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2125,6 +2145,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "리트랙션 시 파단되기 직전까지 필라멘트가 후퇴해야 하는 속도입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2155,6 +2185,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "필라멘트가 깔끔하게 파단되는 온도입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2295,116 +2385,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "첫번째 레이어에 대한 압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "리트렉션 활성화"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "레이어 변경시 리트렉션"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "노즐이 다음 층으로 이동할 때 필라멘트를 리트렉션 시킵니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "리트렉션 거리"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "리트렉션 속도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "리트렉션 속도입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "리트렉션 속도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "리트렉션 속도입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "리트렉션 초기 속도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "리트렉션 이동 중에 필라멘트가 프라이밍되는 속도입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "추가적인 리트렉션 정도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "이동중에 재료가 새어나올 수 있습니다. 이 재료는 여기에서 보상될 수 있습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "리트렉션 최소 이동"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "리트렉션이 가능하기 위해 필요한 최소한의 이동 거리. 이것은 작은 영역에서 더 적은 리트렉션이 가능합니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "최대 리트렉션 수"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "이 설정은 최소 압출 거리에서 발생하는 리트렉션 수를 제한합니다. 이 거리내에서 더 이상의 리트렉션은 무시됩니다. 이렇게 하면 필라멘트를 평평하게하고 갈리는 문제를 일으킬 수 있으므로 동일한 필라멘트에서 반복적으로 리트렉션하지 않습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "최소 압출 영역"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "최대 리트렉션 횟수가 시행되는 영역 입니다. 이 값은 수축 거리와 거의 같아야 하므로 같은 수축 패치가 통과하는 횟수가 효과적으로 제한됩니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "지지대 후퇴 제한"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "직선으로 지지대 사이를 이동하는 경우 리트랙션은 생략합니다. 이 설정을 사용하면 프린팅 시간은 절약할 수 있지만, 지지대 구조물 내에 스트링이 과도하게 증가할 수 있습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2415,56 +2395,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "다른 노즐이 현재 프린팅에 사용될 경우 노즐 온도."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "노즐 스위치 리트렉션 거리"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "익스트루더 전환 시 리트렉션 양. 리트렉션이 전혀 없는 경우 0으로 설정하십시오. 이는 일반적으로 열 영역의 길이와 같아야 합니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "노즐 스위치 리트렉션 속도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "필라멘트가 리트렉션 되는 속도입니다. 리트렉션 속도가 빠르면 좋지만 리트렉션 속도가 높으면 필라멘트가 갈릴 수 있습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "노즐 스위치 후퇴 속도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "노즐 스위치 리트렉션시 필라멘트가 리트렉션하는 속도."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "노즐 스위치 프라임 속도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "노즐 스위치 리트렉션 후 필라멘트가 뒤로 밀리는 속도."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "노즐 스위치 엑스트라 프라임 양"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "노즐 스위치 후 프라이밍하는 추가 소재의 양입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3085,6 +3015,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "이동"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "리트렉션 활성화"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "레이어 변경시 리트렉션"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "노즐이 다음 층으로 이동할 때 필라멘트를 리트렉션 시킵니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "리트렉션 거리"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "리트렉션 속도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "리트렉션 속도입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "리트렉션 속도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "리트렉션 속도입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "리트렉션 초기 속도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "리트렉션 이동 중에 필라멘트가 프라이밍되는 속도입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "추가적인 리트렉션 정도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "이동중에 재료가 새어나올 수 있습니다. 이 재료는 여기에서 보상될 수 있습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "리트렉션 최소 이동"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "리트렉션이 가능하기 위해 필요한 최소한의 이동 거리. 이것은 작은 영역에서 더 적은 리트렉션이 가능합니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "최대 리트렉션 수"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "이 설정은 최소 압출 거리에서 발생하는 리트렉션 수를 제한합니다. 이 거리내에서 더 이상의 리트렉션은 무시됩니다. 이렇게 하면 필라멘트를 평평하게하고 갈리는 문제를 일으킬 수 있으므로 동일한 필라멘트에서 반복적으로 리트렉션하지 않습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "최소 압출 영역"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "최대 리트렉션 횟수가 시행되는 영역 입니다. 이 값은 수축 거리와 거의 같아야 하므로 같은 수축 패치가 통과하는 횟수가 효과적으로 제한됩니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "지지대 후퇴 제한"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "직선으로 지지대 사이를 이동하는 경우 리트랙션은 생략합니다. 이 설정을 사용하면 프린팅 시간은 절약할 수 있지만, 지지대 구조물 내에 스트링이 과도하게 증가할 수 있습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -4279,6 +4319,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "브림에 사용되는 선의 수입니다. 더 많은 브림 선이 빌드 플레이트에 대한 접착력을 향상 시키지만 유효 프린트 영역도 감소시킵니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4709,6 +4759,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "X/Y 방향으로 출력물에서 Ooze 쉴드까지의 거리."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "노즐 스위치 리트렉션 거리"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "익스트루더 전환 시 리트렉션 양. 리트렉션이 전혀 없는 경우 0으로 설정하십시오. 이는 일반적으로 열 영역의 길이와 같아야 합니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "노즐 스위치 리트렉션 속도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "필라멘트가 리트렉션 되는 속도입니다. 리트렉션 속도가 빠르면 좋지만 리트렉션 속도가 높으면 필라멘트가 갈릴 수 있습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "노즐 스위치 후퇴 속도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "노즐 스위치 리트렉션시 필라멘트가 리트렉션하는 속도."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "노즐 스위치 프라임 속도"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "노즐 스위치 리트렉션 후 필라멘트가 뒤로 밀리는 속도."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "노즐 스위치 엑스트라 프라임 양"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "노즐 스위치 후 프라이밍하는 추가 소재의 양입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4846,8 +4946,8 @@ msgstr "프린팅 순서"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "한 번에 한 레이어 씩 모든 모델을 프린팅할지 또는 한 모델이 완료 될 때까지 기다렸다가 다음 모델로 넘어갈 지 여부. 한 번에 한 가지 모드는 모든 모델이 분리되어 프린트 헤드가 중간에서 움직일 수 있고 모든 모델이 노즐과 X/Y 축 사이의 거리보다 낮은 경우에만 가능합니다."
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5074,26 +5174,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "모델에 부딪히는 것을 피하기 위해 충돌을 계산하는 정밀도. 이 값을 낮게 설정하면 실패도가 낮은 더 정확한 트리를 생성하지만, 슬라이싱 시간이 현격하게 늘어납니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "트리 서포트 벽 두께"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "트리 서포트의 브랜치 벽의 두께. 벽이 두꺼울수록 프린팅 시간이 오래 걸리지만 쉽게 넘어지지 않습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "트리 서포트 벽 라인 카운트"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "트리 서포트의 브랜치 벽의 개수. 벽이 두꺼울수록 프린팅 시간이 오래 걸리지만 쉽게 넘어지지 않습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5484,6 +5564,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "외벽을 프린팅하는 동안 무작위로 지터가 발생하여 표면이 거칠고 흐릿해 보입니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5881,6 +5971,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "스킨 영역이 해당 영역의 비율 미만으로 생성되면 브릿지 설정을 사용하여 인쇄하십시오. 그렇지 않으면 일반 스킨 설정을 사용하여 인쇄됩니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6048,8 +6148,8 @@ msgstr "레이어 사이의 와이프 노즐"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "레이어 사이에 노즐 와이프 G 코드를 포함할지 여부를 결정합니다. 이 설정을 활성화하면 레이어 변경 시 리트렉트 동작에 영향을 줄 수 있습니다. 와이프 스크립트가 작동하는 레이어에서 리트랙션을 제어하려면 와이프 리트렉션 설정을 사용하십시오."
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6058,8 +6158,8 @@ msgstr "와이프 사이의 재료 볼륨"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "다른 노즐 와이프를 시작하기 전에 압출할 수 있는 최대 재료입니다."
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6113,8 +6213,8 @@ msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉트되는
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "리트렉션 초기 속도"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6133,13 +6233,13 @@ msgstr "리트랙트를 실행 취소한 후 일시 정지합니다."
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "리트렉션했을 때의 와이프 Z 홉"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "리트렉션이 일어날 때마다 빌드 플레이트가 낮아져 노즐과 출력물 사이에 여유 공간이 생깁니다. 이동 중에 노즐이 인쇄물에 부딪치지 않도록 하여 인쇄물이 빌드 플레이트와 부딪힐 가능성을 줄여줍니다."
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6291,6 +6391,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다."
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "머신 헤드 폴리곤"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "프린트 헤드의 2D 실루엣 (팬 캡 제외)."
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "한 번에 한 레이어 씩 모든 모델을 프린팅할지 또는 한 모델이 완료 될 때까지 기다렸다가 다음 모델로 넘어갈 지 여부. 한 번에 한 가지 모드는 모든 모델이 분리되어 프린트 헤드가 중간에서 움직일 수 있고 모든 모델이 노즐과 X/Y 축 사이의 거리보다 낮은 경우에만 가능합니다."
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "트리 서포트 벽 두께"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "트리 서포트의 브랜치 벽의 두께. 벽이 두꺼울수록 프린팅 시간이 오래 걸리지만 쉽게 넘어지지 않습니다."
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "트리 서포트 벽 라인 카운트"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "트리 서포트의 브랜치 벽의 개수. 벽이 두꺼울수록 프린팅 시간이 오래 걸리지만 쉽게 넘어지지 않습니다."
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "레이어 사이에 노즐 와이프 G 코드를 포함할지 여부를 결정합니다. 이 설정을 활성화하면 레이어 변경 시 리트렉트 동작에 영향을 줄 수 있습니다. 와이프 스크립트가 작동하는 레이어에서 리트랙션을 제어하려면 와이프 리트렉션 설정을 사용하십시오."
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "다른 노즐 와이프를 시작하기 전에 압출할 수 있는 최대 재료입니다."
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "리트렉션 초기 속도"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "리트렉션했을 때의 와이프 Z 홉"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "리트렉션이 일어날 때마다 빌드 플레이트가 낮아져 노즐과 출력물 사이에 여유 공간이 생깁니다. 이동 중에 노즐이 인쇄물에 부딪치지 않도록 하여 인쇄물이 빌드 플레이트와 부딪힐 가능성을 줄여줍니다."
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "지원 인터페이스 영역에 대한 최소 지역 크기. 이 값보다 작은 지역을 갖는 영역은 생성되지 않습니다."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Dutch\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-07-29 15:51+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Dutch <info@lionbridge.com>, Dutch <info@bothof.nl>\n"
|
||||
|
@ -410,6 +410,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "Hiermee bepaalt u of u voor het intrekken van materiaal firmwareopdrachten voor intrekken (G10/G11) gebruikt in plaats van de eigenschap E in G1-opdrachten."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -430,16 +440,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "Een lijst polygonen met gebieden waarin de nozzle niet mag komen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "Machinekoppolygoon"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "Een 2D-silouette van de printkop (exclusief ventilatorkappen)."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1038,8 +1038,7 @@ msgstr "Eerste onderste lagen"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "initial_bottom_layers description"
|
||||
msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
|
||||
msgstr "Het aantal initiële onderste lagen, vanaf de bouwplaat naar boven. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bodem, wordt deze"
|
||||
" afgerond naar een geheel getal."
|
||||
msgstr "Het aantal initiële onderste lagen, vanaf de bouwplaat naar boven. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bodem, wordt deze afgerond naar een geheel getal."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "top_bottom_pattern label"
|
||||
|
@ -1935,6 +1934,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "Skingebieden die smaller zijn dan deze waarde, worden niet uitgebreid. Dit voorkomt het uitbreiden van smalle skingebieden die worden gemaakt wanneer het modeloppervlak een nagenoeg verticale helling heeft."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2125,6 +2144,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "Hoe snel het filament moet worden ingetrokken voordat het bij het intrekken afbreekt."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2155,6 +2184,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "De temperatuur waarbij het filament wordt afgebroken om het recht af te breken."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2295,116 +2384,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "Doorvoercompensatie voor de eerste laag: de hoeveelheid materiaal die voor de eerste laag wordt doorgevoerd, wordt vermenigvuldigd met deze waarde."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Intrekken Inschakelen"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Hiermee wordt het filament ingetrokken wanneer de nozzle over een niet-printbaar gebied gaat. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Intrekken bij laagwisseling"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Trek het filament in wanneer de nozzle naar de volgende laag beweegt."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Intrekafstand"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "De lengte waarover het materiaal wordt ingetrokken tijdens een intrekbeweging."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Intreksnelheid"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt ingetrokken en geprimed."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Intreksnelheid (Intrekken)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt ingetrokken."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Intreksnelheid (Primen)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt geprimed."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Extra Primehoeveelheid na Intrekken"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Tijdens een beweging kan materiaal verloren gaan, wat met deze optie kan worden gecompenseerd."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Minimale Afstand voor Intrekken"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "De minimale bewegingsafstand voordat het filament kan worden ingetrokken. Hiermee vermindert u het aantal intrekkingen in een klein gebied."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Maximaal Aantal Intrekbewegingen"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Deze instelling beperkt het aantal intrekbewegingen dat kan worden uitgevoerd binnen het gebied Minimaal afstandsgebied voor intrekken. Extra intrekbewegingen binnen dit gebied worden genegeerd. Hiermee voorkomt u dat hetzelfde stuk filament meerdere keren wordt ingetrokken en dus kan worden geplet en kan gaan haperen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Minimaal Afstandsgebied voor Intrekken"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Dit is het gebied waarop het maximaal aantal intrekbewegingen van toepassing is. Deze waarde moet ongeveer overeenkomen met de Intrekafstand, waarmee in feite het aantal intrekbewegingen op hetzelfde deel van het materiaal wordt beperkt."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Supportintrekkingen beperken"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Sla intrekking over tijdens bewegingen in een rechte lijn van support naar support. Deze instelling verkort de printtijd, maar kan leiden tot overmatige draadvorming in de supportstructuur."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2415,56 +2394,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "De temperatuur van de nozzle op de momenten waarop een andere nozzle wordt gebruikt voor het printen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Intrekafstand bij Wisselen Nozzles"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "De intrekafstand wanneer de extruders worden gewisseld. Als u deze optie instelt op 0, wordt er niet ingetrokken. Deze waarde dient doorgaans gelijk te zijn aan de lengte van de verwarmingszone."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Intreksnelheid bij Wisselen Nozzles"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "De snelheid waarmee het filament wordt ingetrokken. Een hogere intreksnelheid werkt beter, maar bij een erg hoge intreksnelheid kan het filament gaan haperen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Intrekkingssnelheid bij Wisselen Nozzles"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "De snelheid waarmee het filament tijdens een intrekbeweging tijdens het wisselen van de nozzles wordt ingetrokken."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Primesnelheid bij Wisselen Nozzles"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "De snelheid waarmee het filament tijdens een intrekbeweging na het wisselen van de nozzles wordt geprimed."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Extra primehoeveelheid na wisselen van nozzle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Extra primemateriaal na het wisselen van de nozzle."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3085,6 +3014,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "beweging"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Intrekken Inschakelen"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Hiermee wordt het filament ingetrokken wanneer de nozzle over een niet-printbaar gebied gaat. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Intrekken bij laagwisseling"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Trek het filament in wanneer de nozzle naar de volgende laag beweegt."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Intrekafstand"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "De lengte waarover het materiaal wordt ingetrokken tijdens een intrekbeweging."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Intreksnelheid"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt ingetrokken en geprimed."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Intreksnelheid (Intrekken)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt ingetrokken."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Intreksnelheid (Primen)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt geprimed."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Extra Primehoeveelheid na Intrekken"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Tijdens een beweging kan materiaal verloren gaan, wat met deze optie kan worden gecompenseerd."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Minimale Afstand voor Intrekken"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "De minimale bewegingsafstand voordat het filament kan worden ingetrokken. Hiermee vermindert u het aantal intrekkingen in een klein gebied."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Maximaal Aantal Intrekbewegingen"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Deze instelling beperkt het aantal intrekbewegingen dat kan worden uitgevoerd binnen het gebied Minimaal afstandsgebied voor intrekken. Extra intrekbewegingen binnen dit gebied worden genegeerd. Hiermee voorkomt u dat hetzelfde stuk filament meerdere keren wordt ingetrokken en dus kan worden geplet en kan gaan haperen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Minimaal Afstandsgebied voor Intrekken"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Dit is het gebied waarop het maximaal aantal intrekbewegingen van toepassing is. Deze waarde moet ongeveer overeenkomen met de Intrekafstand, waarmee in feite het aantal intrekbewegingen op hetzelfde deel van het materiaal wordt beperkt."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Supportintrekkingen beperken"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Sla intrekking over tijdens bewegingen in een rechte lijn van support naar support. Deze instelling verkort de printtijd, maar kan leiden tot overmatige draadvorming in de supportstructuur."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -4279,6 +4318,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "Het aantal lijnen dat voor een brim wordt gebruikt. Meer lijnen zorgen voor betere hechting aan het platform, maar verkleinen uw effectieve printgebied."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4709,6 +4758,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "De afstand tussen het uitloopscherm en de print, in de X- en Y-richting."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Intrekafstand bij Wisselen Nozzles"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "De intrekafstand wanneer de extruders worden gewisseld. Als u deze optie instelt op 0, wordt er niet ingetrokken. Deze waarde dient doorgaans gelijk te zijn aan de lengte van de verwarmingszone."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Intreksnelheid bij Wisselen Nozzles"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "De snelheid waarmee het filament wordt ingetrokken. Een hogere intreksnelheid werkt beter, maar bij een erg hoge intreksnelheid kan het filament gaan haperen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Intrekkingssnelheid bij Wisselen Nozzles"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "De snelheid waarmee het filament tijdens een intrekbeweging tijdens het wisselen van de nozzles wordt ingetrokken."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Primesnelheid bij Wisselen Nozzles"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "De snelheid waarmee het filament tijdens een intrekbeweging na het wisselen van de nozzles wordt geprimed."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Extra primehoeveelheid na wisselen van nozzle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Extra primemateriaal na het wisselen van de nozzle."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4846,8 +4945,8 @@ msgstr "Printvolgorde"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "Met deze optie bepaalt u of u alle modellen tegelijk, laag voor laag print, of dat u een model volledig print voordat u verdergaat naar het volgende model. De modus voor het één voor één printen van modellen is alleen beschikbaar als alle modellen dusdanig van elkaar zijn gescheiden dat de printkop tussen alle modellen kan bewegen en alle modellen lager zijn dan de afstand tussen de nozzle en de X- en Y-as."
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5074,26 +5173,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "Resolutie voor het berekenen van botsingen om te voorkomen dat het model wordt geraakt. Als u deze optie op een lagere waarde instelt, creëert u nauwkeurigere bomen die minder vaak fouten vertonen, maar wordt de slicetijd aanzienlijk verlengd."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "Wanddikte boomsupportstructuur"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Hiermee stelt u de wanddikte in voor de takken van de boomsupportstructuur. Het printen van dikkere wanden duurt langer, maar deze vallen minder snel om."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "Aantal wandlijnen boomsupportstructuur"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Hiermee stelt u het aantal wanden in voor de takken van de boomsupportstructuur. Het printen van dikkere wanden duurt langer, maar deze vallen minder snel om."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5484,6 +5563,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "Door willekeurig trillen tijdens het printen van de buitenwand wordt het oppervlak hiervan ruw en ongelijk."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5532,8 +5621,7 @@ msgstr "Doorvoercompensatiefactor"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "flow_rate_extrusion_offset_factor description"
|
||||
msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
|
||||
msgstr "Hoe ver het filament moet worden verplaatst om veranderingen in de stroomsnelheid te compenseren, als een percentage van hoe ver het filament in één seconde"
|
||||
" extrusie zou bewegen."
|
||||
msgstr "Hoe ver het filament moet worden verplaatst om veranderingen in de stroomsnelheid te compenseren, als een percentage van hoe ver het filament in één seconde extrusie zou bewegen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wireframe_enabled label"
|
||||
|
@ -5832,8 +5920,7 @@ msgstr "Topografieformaat aanpasbare lagen"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "adaptive_layer_height_threshold description"
|
||||
msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
|
||||
msgstr "Horizontale doelafstand tussen twee aangrenzende lagen. Als u deze instelling verkleint, worden dunnere lagen gebruikt om de randen van de lagen dichter"
|
||||
" bij elkaar te brengen."
|
||||
msgstr "Horizontale doelafstand tussen twee aangrenzende lagen. Als u deze instelling verkleint, worden dunnere lagen gebruikt om de randen van de lagen dichter bij elkaar te brengen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle label"
|
||||
|
@ -5843,8 +5930,7 @@ msgstr "Hoek Overhangende Wand"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle description"
|
||||
msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
|
||||
msgstr "Wanden die overhangen in een hoek groter dan deze waarde, worden geprint met instellingen voor overhangende wanden. Wanneer de waarde 90 is, wordt een"
|
||||
" wand niet als een overhangende wand gezien. Een overhang die wordt ondersteund door ondersteuning wordt ook niet als overhang gezien."
|
||||
msgstr "Wanden die overhangen in een hoek groter dan deze waarde, worden geprint met instellingen voor overhangende wanden. Wanneer de waarde 90 is, wordt een wand niet als een overhangende wand gezien. Een overhang die wordt ondersteund door ondersteuning wordt ook niet als overhang gezien."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_speed_factor label"
|
||||
|
@ -5886,6 +5972,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "Als voor een skinregio minder supportstructuur wordt geprint dan dit percentage van zijn oppervlakte, print u dit met de bruginstellingen. Anders wordt er geprint met de normale skininstellingen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6053,8 +6149,8 @@ msgstr "Nozzle afvegen tussen lagen"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "Hiermee bepaalt u of u het afvegen van de nozzle tussen lagen wilt opnemen in de G-code. Het inschakelen van deze instelling kan het gedrag van het intrekken tijdens de laagwissel beïnvloeden. Gebruik de instelling voor intrekken bij afvegen om het intrekken te controleren bij lagen waarop afveegscript van toepassing is."
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6063,8 +6159,8 @@ msgstr "Materiaalvolume tussen afvegen"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "Maximale materiaalhoeveelheid die kan worden doorgevoerd voordat de nozzle opnieuw wordt afgeveegd."
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6118,8 +6214,8 @@ msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Intreksnelheid (primen)"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6138,13 +6234,13 @@ msgstr "Pauzeren na het ongedaan maken van intrekken."
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "Z-sprong wanneer ingetrokken voor afvegen"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "Tijdens het intrekken wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle de print raakt tijdens een beweging en wordt de kans verkleind dat de print van het platform wordt gestoten."
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6224,8 +6320,7 @@ msgstr "Klein kenmerksnelheid"
|
|||
#: fdmprinter.def.json
|
||||
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."
|
||||
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_feature_speed_factor_0 label"
|
||||
|
@ -6235,8 +6330,7 @@ msgstr "Kleine kenmerken eerste laagsnelheid"
|
|||
#: 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."
|
||||
msgstr "Kleine kenmerken op de eerste laag worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid. Langzamer printen kan"
|
||||
" de hechting en nauwkeurigheid verbeteren."
|
||||
msgstr "Kleine kenmerken op de eerste laag 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 "command_line_settings label"
|
||||
|
@ -6298,6 +6392,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Omzettingsmatrix die moet worden toegepast op het model wanneer dit wordt geladen vanuit een bestand."
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "Machinekoppolygoon"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "Een 2D-silouette van de printkop (exclusief ventilatorkappen)."
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "Met deze optie bepaalt u of u alle modellen tegelijk, laag voor laag print, of dat u een model volledig print voordat u verdergaat naar het volgende model. De modus voor het één voor één printen van modellen is alleen beschikbaar als alle modellen dusdanig van elkaar zijn gescheiden dat de printkop tussen alle modellen kan bewegen en alle modellen lager zijn dan de afstand tussen de nozzle en de X- en Y-as."
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "Wanddikte boomsupportstructuur"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Hiermee stelt u de wanddikte in voor de takken van de boomsupportstructuur. Het printen van dikkere wanden duurt langer, maar deze vallen minder snel om."
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "Aantal wandlijnen boomsupportstructuur"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Hiermee stelt u het aantal wanden in voor de takken van de boomsupportstructuur. Het printen van dikkere wanden duurt langer, maar deze vallen minder snel om."
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "Hiermee bepaalt u of u het afvegen van de nozzle tussen lagen wilt opnemen in de G-code. Het inschakelen van deze instelling kan het gedrag van het intrekken tijdens de laagwissel beïnvloeden. Gebruik de instelling voor intrekken bij afvegen om het intrekken te controleren bij lagen waarop afveegscript van toepassing is."
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "Maximale materiaalhoeveelheid die kan worden doorgevoerd voordat de nozzle opnieuw wordt afgeveegd."
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "Intreksnelheid (primen)"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "Z-sprong wanneer ingetrokken voor afvegen"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "Tijdens het intrekken wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle de print raakt tijdens een beweging en wordt de kans verkleind dat de print van het platform wordt gestoten."
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "Minimumgebied voor verbindingspolygonen. Polygonen met een gebied dat kleiner is dan deze waarde, worden niet gegenereerd."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.3\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Mariusz 'Virgin71' Matłosz <matliks@gmail.com>\n"
|
||||
"Language-Team: reprapy.pl\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.3\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-11-15 15:34+0100\n"
|
||||
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
|
||||
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
|
||||
|
@ -410,6 +410,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "Używaj komend retrakcji (G10/G11) zamiast używać współrzędną E w komendzie G1, aby wycofać materiał."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -430,16 +440,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "Lista obszarów, w które dysze nie mogą wjeżdżać."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "Obszar głowicy drukarki"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "Sylwetka 2D głowicy drukującej (bez nasadki wentylatora)."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1934,6 +1934,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "Obszary skóry, które są węższe niż to, nie zostaną poszerzone. W ten sposób unikamy rozszerzania wąskich skór, które są tworzone, kiedy powierzchnia jest blisko pionowi."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2124,6 +2144,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "Jak szybko filament musi zostać wycofany, aby pękł podczas cofania."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2154,6 +2184,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "Temperatura, w której filament można złamać na czysto."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2294,116 +2384,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "Kompensacja przepływu dla pierwszej warstwy: ilość materiału ekstrudowanego na pierwszej warstwie jest mnożona przez tę wartość."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Włącz Retrakcję"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Cofnij filament, gdy dysza porusza się nad obszarem, w którym nie ma drukować. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Retrakcja podczas Zmiany Warstwy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Cofnij filament, gdy dysza przesuwa się do następnej warstwy."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Długość Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "Długość materiału wycofanego podczas retrakcji."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Prędkość Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Prędkość, z jaką jest wykonywana i dopełniana retrakcja."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Prędk. Wycofania Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Prędkość, z jaką wykonywana jest retrakcja."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Prędk. Dopełn. Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Prędkość, z jaką retrakcja jest dopełniana."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Dod. Czyszcz. Wart. Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Trochę materiału może wypływać podczas ruchu jałowego co może zostać skompensowane tutaj."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Minimalny Przejazd dla Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Minimalna odległość ruchu jałowego potrzebna do wykonania retrkacji. Pomaga to uzyskać mniej retrakcji w małym obszarze."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Maksymalna Liczba Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "To ustawienie ogranicza liczbę retrakcji występujących w oknie minimalnej długości ekstruzji. Dalsze retrakcje w tym oknie zostaną zignorowane. Pozwala to uniknąć wielokrotnych retrakcji na tym samym odcinku filamentu, ponieważ może to spłaszczyć filament i spowodować problemy z wyciskaniem filamentu."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Okno Min. Dług. Ekstruzji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Okno, w którym wymuszona jest maksymalna liczba retrakcji. Wartość ta powinna być w przybliżeniu taka sama jak odległość retrakcji, dzięki czemu skuteczna liczba retrakcji używająca tej samej cząstki materiału jest limitowana."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Ogranicz Retrakcje Pomiędzy Podporami"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Pomiń retrakcję, przechodząc od podpory do podpory w linii prostej. Włączenie tego ustawienia oszczędza czas drukowania, ale może prowadzić do nadmiernego ciągnięcia filamentu w strukturze nośnej."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2414,56 +2394,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "Temperatura dyszy, gdy inne dysze są obecnie używane do drukowania."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Długość Retrakcji przy Zmianie Dyszy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Wielkość retrakcji przy przełączaniu ekstruderów. Ustaw na 0, aby wyłączyć retrakcję. Powinno być ustawione tak samo jak długość strefy grzania."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Prędk. Retrakcji przy Zmianie Dyszy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Prędkość, z jaką filament jest wycofywany. Wyższa szybkość retrakcji działa lepiej, ale bardzo duża szybkość retrakcji może prowadzić do złych efektów."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Prędk. Cofania przy Zmianie Dyszy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Prędkość, z jaką filament jest wycofywany podczas retrakcji przy zmianie dyszy."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Prędk. Czyszcz. przy Zmianie Dyszy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Prędkość, z jaką filament jest cofany podczas retrakcji po zmianie dyszy."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Dodatkowa ekstruzja po zmianie dyszy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Ilość dodatkowego materiału do podania po zmianie dyszy."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3084,6 +3014,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "ruch jałowy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Włącz Retrakcję"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Cofnij filament, gdy dysza porusza się nad obszarem, w którym nie ma drukować. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Retrakcja podczas Zmiany Warstwy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Cofnij filament, gdy dysza przesuwa się do następnej warstwy."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Długość Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "Długość materiału wycofanego podczas retrakcji."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Prędkość Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Prędkość, z jaką jest wykonywana i dopełniana retrakcja."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Prędk. Wycofania Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Prędkość, z jaką wykonywana jest retrakcja."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Prędk. Dopełn. Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Prędkość, z jaką retrakcja jest dopełniana."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Dod. Czyszcz. Wart. Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Trochę materiału może wypływać podczas ruchu jałowego co może zostać skompensowane tutaj."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Minimalny Przejazd dla Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Minimalna odległość ruchu jałowego potrzebna do wykonania retrkacji. Pomaga to uzyskać mniej retrakcji w małym obszarze."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Maksymalna Liczba Retrakcji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "To ustawienie ogranicza liczbę retrakcji występujących w oknie minimalnej długości ekstruzji. Dalsze retrakcje w tym oknie zostaną zignorowane. Pozwala to uniknąć wielokrotnych retrakcji na tym samym odcinku filamentu, ponieważ może to spłaszczyć filament i spowodować problemy z wyciskaniem filamentu."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Okno Min. Dług. Ekstruzji"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Okno, w którym wymuszona jest maksymalna liczba retrakcji. Wartość ta powinna być w przybliżeniu taka sama jak odległość retrakcji, dzięki czemu skuteczna liczba retrakcji używająca tej samej cząstki materiału jest limitowana."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Ogranicz Retrakcje Pomiędzy Podporami"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Pomiń retrakcję, przechodząc od podpory do podpory w linii prostej. Włączenie tego ustawienia oszczędza czas drukowania, ale może prowadzić do nadmiernego ciągnięcia filamentu w strukturze nośnej."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -4278,6 +4318,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "Liczba linii używana dla obrysu. Więcej linii obrysu poprawia przyczepność do stołu, ale zmniejsza rzeczywiste pole wydruku."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4708,6 +4758,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "Odległość od osłony wycierającej do wydruku, w kierunkach X/Y."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Długość Retrakcji przy Zmianie Dyszy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Wielkość retrakcji przy przełączaniu ekstruderów. Ustaw na 0, aby wyłączyć retrakcję. Powinno być ustawione tak samo jak długość strefy grzania."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Prędk. Retrakcji przy Zmianie Dyszy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Prędkość, z jaką filament jest wycofywany. Wyższa szybkość retrakcji działa lepiej, ale bardzo duża szybkość retrakcji może prowadzić do złych efektów."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Prędk. Cofania przy Zmianie Dyszy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Prędkość, z jaką filament jest wycofywany podczas retrakcji przy zmianie dyszy."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Prędk. Czyszcz. przy Zmianie Dyszy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Prędkość, z jaką filament jest cofany podczas retrakcji po zmianie dyszy."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Dodatkowa ekstruzja po zmianie dyszy"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Ilość dodatkowego materiału do podania po zmianie dyszy."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4845,8 +4945,8 @@ msgstr "Sekwencja Wydruku"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "Czy drukować wszystkie modele po jednej warstwie, czy poczekać na zakończenie jednego modelu, przed przejściem do następnego. Tryb Jeden na raz jest możliwy, gdy wszystkie modele są oddzielone w taki sposób, aby cała głowica drukująca mogła się poruszać między wszystkimi modelami i są one niższe niż odległość pomiędzy dyszą i osiami X/Y."
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5073,26 +5173,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "Rozdzielczość przeliczania kolizji, aby unikać zderzeń z modelem. Ustawienie niższej wartości spowoduje bardziej dokładne drzewa, które rzadziej zawodzą, ale zwiększa to drastycznie czas cięcia."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "Grubość Ściany Drzewiastej Podpory"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Grubość ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej, ale nie odpadają tak łatwo."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "Liczba Linii Ściany Drzewiastej Podpory"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Liczba ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej , ale nie odpadają tak łatwo."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5483,6 +5563,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "Losowe drgania podczas drukowania zewnętrznej ściany, dzięki czemu powierzchnia ma szorstki i rozmyty wygląd."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5882,6 +5972,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "Jeśli obszar skóry jest podpierany w mniejszym procencie jego powierzchni, drukuj to według ustawień mostu. W przeciwnym wypadku użyj normalnych ustawień skóry."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6049,8 +6149,8 @@ msgstr "Wytrzyj dyszę pomiędzy warstwami"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "Włącza w G-Code wycieranie dyszy między warstwami. Włączenie tego ustawienia może wpłynąć na zachowanie retrakcji przy zmianie warstwy. Użyj ustawień „Czyszczenie przy retrakcji”, aby kontrolować retrakcję na warstwach, na których będzie działał skrypt czyszczenia."
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6059,8 +6159,8 @@ msgstr "Objętość materiału między czyszczeniem"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "Maksymalna ilość materiału, który można wytłoczyć przed zainicjowaniem kolejnego czyszczenia dyszy."
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6114,8 +6214,8 @@ msgstr "Prędkość, z jaką jest wykonywana retrakcja podczas ruchu czyszczenia
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Prędkość retrakcji Czyszczenia"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6134,13 +6234,13 @@ msgstr "Wstrzymaj czyszczenie, jeśli brak retrakcji."
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "Czyszczący skok Z jeśli jest retrakcja"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "Zawsze, gdy następuje retrakcja, stół roboczy jest opuszczany w celu utworzenia luzu między dyszą a drukiem. Zapobiega to uderzeniu dyszy podczas ruchu jałowego, co zmniejsza szanse uderzenia wydruku na stole."
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6292,6 +6392,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Forma przesunięcia, która ma być zastosowana do modelu podczas ładowania z pliku."
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "Obszar głowicy drukarki"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "Sylwetka 2D głowicy drukującej (bez nasadki wentylatora)."
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "Czy drukować wszystkie modele po jednej warstwie, czy poczekać na zakończenie jednego modelu, przed przejściem do następnego. Tryb Jeden na raz jest możliwy, gdy wszystkie modele są oddzielone w taki sposób, aby cała głowica drukująca mogła się poruszać między wszystkimi modelami i są one niższe niż odległość pomiędzy dyszą i osiami X/Y."
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "Grubość Ściany Drzewiastej Podpory"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Grubość ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej, ale nie odpadają tak łatwo."
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "Liczba Linii Ściany Drzewiastej Podpory"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Liczba ścian gałęzi drzewiastej podpory. Grubsze ściany drukują się dłużej , ale nie odpadają tak łatwo."
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "Włącza w G-Code wycieranie dyszy między warstwami. Włączenie tego ustawienia może wpłynąć na zachowanie retrakcji przy zmianie warstwy. Użyj ustawień „Czyszczenie przy retrakcji”, aby kontrolować retrakcję na warstwach, na których będzie działał skrypt czyszczenia."
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "Maksymalna ilość materiału, który można wytłoczyć przed zainicjowaniem kolejnego czyszczenia dyszy."
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "Prędkość retrakcji Czyszczenia"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "Czyszczący skok Z jeśli jest retrakcja"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "Zawsze, gdy następuje retrakcja, stół roboczy jest opuszczany w celu utworzenia luzu między dyszą a drukiem. Zapobiega to uderzeniu dyszy podczas ruchu jałowego, co zmniejsza szanse uderzenia wydruku na stole."
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "Minimalny rozmiar obszaru dla interfejsu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, nie będą generowane."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-11-16 11:22-0300\n"
|
||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-11-16 07:10-0300\n"
|
||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
|
@ -411,6 +411,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "Usar ou não comandos de retração de firmware (G10/G11) ao invés de usar a propriedade E dos comandos G1 para retrair o material."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -431,16 +441,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "Uma lista de polígonos com áreas em que o bico é proibido de entrar."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "Polígono Da Cabeça da Máquina"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "Uma silhueta 2D da cabeça de impressão (sem os suportes de ventoinhas)."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1935,6 +1935,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "Áreas de contorno mais estreitas que esta não são expandidas. Isto evita expandir as áreas estreitas que são criadas quando a superfície do modelo tem inclinações quase verticais."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2125,6 +2145,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "Qual a velocidade do material para que seja retraído antes de quebrar em uma retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2155,6 +2185,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "A temperatura em que o filamento é destacado completamente."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2295,116 +2385,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "Compensação de fluxo para a primeira camada; a quantidade de material extrudado na camada inicial é multiplicada por este valor."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Habilitar Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Retrai o filamento quando o bico está se movendo sobre uma área não impressa. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Retrai em Mudança de Camada"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Retrai o filamento quando o bico está se movendo para a próxima camada."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Distância da Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "O comprimento de filamento retornado durante uma retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Velocidade de Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "A velocidade com a qual o filamento é recolhido e avançado durante o movimento de retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Velocidade de Recolhimento de Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "A velocidade com a qual o filamento é recolhido durante o movimento de retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Velocidade de Avanço da Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "A velocidade com a qual o filamento é avançado durante o movimento de retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Quantidade Adicional de Avanço da Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Alguns materiais podem escorrer um pouco durante o percurso, o que pode ser compensando neste ajuste."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Percurso Mínimo para Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "A distância mínima de percurso necessária para que uma retração aconteça. Isto ajuda a ter menos retrações em uma área pequena."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Contagem de Retrações Máxima"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Este ajuste limita o número de retrações ocorrendo dentro da janela de distância de extrusão mínima. Retrações subsequentes dentro desta janela serão ignoradas. Isto previne repetidas retrações no mesmo pedaço de filamento, já que isso pode acabar ovalando e desgastando o filamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Janela de Distância de Extrusão Mínima"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "A janela em que a contagem de retrações máxima é válida. Este valor deve ser aproximadamente o mesmo que a distância de retração, de modo que efetivamente o número de vez que a retração passa pelo mesmo segmento de material é limitada."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Limitar Retrações de Suporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Omitir a retração ao mover de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos excessivos na estrutura de suporte."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2415,56 +2395,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "A temperatura do bico quando outro bico está sendo usado para a impressão."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Distância de Retração da Troca de Bico"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "A quantidade de retração ao mudar extrusores. Coloque em 0 para não haver retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento do hotend."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Velocidade de Retração da Troca do Bico"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "A velocidade em que o filamento é retraído. Uma velocidade de retração mais alta funciona melhor, mas uma velocidade muito alta pode levar a desgaste do filamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Velocidade de Retração da Troca de Bico"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "A velocidade em que o filamento é retraído durante uma retração de troca de bico."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Velocidade de Avanço da Troca de Bico"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "A velocidade em que o filamento é empurrado para a frente depois de uma retração de troca de bico."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Quantidade de Avanço Extra da Troca de Bico"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Material extra a avançar depois da troca de bico."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3085,6 +3015,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "percurso"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Habilitar Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Retrai o filamento quando o bico está se movendo sobre uma área não impressa. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Retrai em Mudança de Camada"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Retrai o filamento quando o bico está se movendo para a próxima camada."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Distância da Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "O comprimento de filamento retornado durante uma retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Velocidade de Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "A velocidade com a qual o filamento é recolhido e avançado durante o movimento de retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Velocidade de Recolhimento de Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "A velocidade com a qual o filamento é recolhido durante o movimento de retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Velocidade de Avanço da Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "A velocidade com a qual o filamento é avançado durante o movimento de retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Quantidade Adicional de Avanço da Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Alguns materiais podem escorrer um pouco durante o percurso, o que pode ser compensando neste ajuste."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Percurso Mínimo para Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "A distância mínima de percurso necessária para que uma retração aconteça. Isto ajuda a ter menos retrações em uma área pequena."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Contagem de Retrações Máxima"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Este ajuste limita o número de retrações ocorrendo dentro da janela de distância de extrusão mínima. Retrações subsequentes dentro desta janela serão ignoradas. Isto previne repetidas retrações no mesmo pedaço de filamento, já que isso pode acabar ovalando e desgastando o filamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Janela de Distância de Extrusão Mínima"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "A janela em que a contagem de retrações máxima é válida. Este valor deve ser aproximadamente o mesmo que a distância de retração, de modo que efetivamente o número de vez que a retração passa pelo mesmo segmento de material é limitada."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Limitar Retrações de Suporte"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Omitir a retração ao mover de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos excessivos na estrutura de suporte."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -4279,6 +4319,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "O número de linhas usada para o brim. Mais linhas de brim melhoram a aderência à mesa, mas também reduzem a área efetiva de impressão."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4709,6 +4759,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "Distância da cobertura de escorrimento da impressão nas direções X e Y."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Distância de Retração da Troca de Bico"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "A quantidade de retração ao mudar extrusores. Coloque em 0 para não haver retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento do hotend."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Velocidade de Retração da Troca do Bico"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "A velocidade em que o filamento é retraído. Uma velocidade de retração mais alta funciona melhor, mas uma velocidade muito alta pode levar a desgaste do filamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Velocidade de Retração da Troca de Bico"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "A velocidade em que o filamento é retraído durante uma retração de troca de bico."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Velocidade de Avanço da Troca de Bico"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "A velocidade em que o filamento é empurrado para a frente depois de uma retração de troca de bico."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Quantidade de Avanço Extra da Troca de Bico"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Material extra a avançar depois da troca de bico."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4846,8 +4946,8 @@ msgstr "Sequência de Impressão"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "Esta opção decide se vocÊ deseja imprimir todos os modelos de uma só vez ou um modelo de cada vez. O modo de um modelo de cada vez só é possível se os modelos estiverem separados de tal forma que a cabeça de impressão possa se mover no meio e todos os modelos sejam mais baixos que a distância entre o bico e os carros X ou Y."
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5074,26 +5174,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "Resolução para computar colisões com a qual evitar tocar o modelo. Ajustar valor mais baixos produzirá árvore mais precisas que falharão menos, mas aumentará o tempo de fatiamento dramaticamente."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "Espessura de Parede do Suporte em Árvore"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "A espessura das paredes dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "Número de Filetes da Parede do Suporte em Árvore"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "O número de filetes da parede dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5484,6 +5564,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "Faz flutuações de movimento aleatório enquanto imprime a parede mais externa, de modo que a superfície do objeto ganhe uma aparência felpuda ou acidentada."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5883,6 +5973,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "Se uma região do contorno for suportada por menos do que esta porcentagem de sua área, imprimi-la com os ajustes de ponte. Senão, imprimir usando os ajustes normais de contorno."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6050,8 +6150,8 @@ msgstr "Limpar o Bico Entre Camadas"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "Incluir ou não o G-Code para movimento de limpeza de bico (wipe) entre camadas. Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camadas. Por favor use os ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza funcionará."
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6060,8 +6160,8 @@ msgstr "Volume de Material Entre Limpezas"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "Material máximo que pode ser extrudado antes que outra limpeza do bico seja iniciada."
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6115,8 +6215,8 @@ msgstr "A velocidade com que o filamento é retraído durante um movimento de re
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Velocidade de Purga da Retração"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6135,13 +6235,13 @@ msgstr "Pausa após desfazimento da retração."
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "Salto Z da Limpeza Quando Retraída"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "Sempre que uma retração é feita, a posição Z do extrusor é aumentada para aumentar a distância entre o bico e a impressão. Isso evita que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar a impressão da plataforma."
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6293,6 +6393,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento do arquivo."
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "Polígono Da Cabeça da Máquina"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "Uma silhueta 2D da cabeça de impressão (sem os suportes de ventoinhas)."
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "Esta opção decide se vocÊ deseja imprimir todos os modelos de uma só vez ou um modelo de cada vez. O modo de um modelo de cada vez só é possível se os modelos estiverem separados de tal forma que a cabeça de impressão possa se mover no meio e todos os modelos sejam mais baixos que a distância entre o bico e os carros X ou Y."
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "Espessura de Parede do Suporte em Árvore"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "A espessura das paredes dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente."
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "Número de Filetes da Parede do Suporte em Árvore"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "O número de filetes da parede dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente."
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "Incluir ou não o G-Code para movimento de limpeza de bico (wipe) entre camadas. Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camadas. Por favor use os ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza funcionará."
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "Material máximo que pode ser extrudado antes que outra limpeza do bico seja iniciada."
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "Velocidade de Purga da Retração"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "Salto Z da Limpeza Quando Retraída"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "Sempre que uma retração é feita, a posição Z do extrusor é aumentada para aumentar a distância entre o bico e a impressão. Isso evita que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar a impressão da plataforma."
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "Área mínima para polígonos de interface de suporte. Polígonos que tiverem uma área menor que este valor não serão gerados."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-03-14 14:15+0100\n"
|
||||
"Last-Translator: Portuguese <info@bothof.nl>\n"
|
||||
"Language-Team: Paulo Miranda <av@utopica3d.com>, Portuguese <info@bothof.nl>\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-07-29 15:51+0100\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Portuguese <info@lionbridge.com>, Paulo Miranda <av@utopica3d.com>, Portuguese <info@bothof.nl>\n"
|
||||
|
@ -415,6 +415,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "Se se deve utilizar os comandos de retração do firmware (G10/G11), em vez da propriedade E dos comandos G1, para realizar a retração do material."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -435,16 +445,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "Uma lista de polígonos com áreas onde o nozzle não pode entrar."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "Polígono da cabeça da máquina"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "Uma silhueta 2D da cabeça de impressão (excluindo tampas do(s) ventilador(s))."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1057,8 +1057,7 @@ msgstr "Camadas inferiores iniciais"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "initial_bottom_layers description"
|
||||
msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
|
||||
msgstr "O número de camadas inferiores iniciais, a partir da base de construção no sentido ascendente. Quando calculado pela espessura inferior, este valor é arredondado"
|
||||
" para um número inteiro."
|
||||
msgstr "O número de camadas inferiores iniciais, a partir da base de construção no sentido ascendente. Quando calculado pela espessura inferior, este valor é arredondado para um número inteiro."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "top_bottom_pattern label"
|
||||
|
@ -1993,6 +1992,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "As áreas de revestimento mais pequenas do que este valor não são expandidas. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo apresenta uma inclinação quase vertical."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2188,6 +2207,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "A velocidade a que o filamento tem de ser retraído imediatamente antes de se separar numa retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2218,6 +2247,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "A temperatura a que o filamento se quebra para uma separação regular."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2358,127 +2447,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "Compensação de fluxo para a camada inicial: a quantidade de material extrudido na camada inicial é multiplicada por este valor."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Ativar Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Retrair na Mudança Camada"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Retrai o filamento quando o nozzle se está a deslocar para a camada seguinte."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Distância de Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "O comprimento do material retraído durante um movimento de retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Velocidade de Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração."
|
||||
|
||||
# rever!
|
||||
# retrair?
|
||||
# é retraido?
|
||||
# recuo?
|
||||
# recolhido?
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Velocidade Retrair na Retração"
|
||||
|
||||
# rever!
|
||||
# retrair?
|
||||
# é retraido?
|
||||
# recuo?
|
||||
# recolhido?
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "A velocidade a que o filamento é retraído durante um movimento de retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Velocidade de preparação na retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "A velocidade a que o filamento é preparado durante um movimento de retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Preparação Adicional de Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação, o qual pode ser compensado aqui."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Deslocação Mínima da Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "A distância mínima de deslocação necessária para que ocorra uma retração. Isto ajuda a obter menos retrações numa área reduzida."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Número Máximo Retrações"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Esta definição limita o número de retrações que ocorrem no intervalo mínimo de distância de extrusão. As retrações adicionais dentro deste intervalo serão ignoradas. Isto evita a retração repetida no mesmo filamento, uma vez que tal pode achatar o filamento e causar problemas de trituração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Intervalo Mínimo Distância Extrusão"
|
||||
|
||||
# de forma a que o número de vezes que uma retração acontece na mesma área do material seja efetivamente limitado.
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "O intervalo no qual o número máximo de retrações é aplicado. Este valor deve ser aproximadamente o mesmo que o da Distância de Retração, de forma a limitar, efectivamente, o número de vezes que uma retração acontece na mesma área do filamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Limitar Retrações de Suportes"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Eliminar a retração quando o movimento de suporte para suporte é em linha reta. Ativar esta definição reduz o tempo de impressão, mas pode levar a que aja um excessivo numero de fios nas estruturas de suporte."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2489,58 +2457,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "A temperatura do nozzle quando outro nozzle está a ser utilizado para a impressão."
|
||||
|
||||
# rever!
|
||||
# restantes retração srtings
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Distância de retração de substituição do nozzle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "A quantidade de retração ao mudar de extrusor. Defina como 0 para não obter qualquer retração. Normalmente, esta deve ser a mesma que o comprimento da zona de aquecimento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Velocidade de retração de substituição do nozzle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "A velocidade a que o filamento é retraído. Uma maior velocidade de retração funciona melhor, mas uma velocidade de retração muito elevada pode resultar na trituração do filamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Velocidade de recolha de substituição do nozzle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "A velocidade a que o filamento é retraído durante uma recolha de substituição do nozzle."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Velocidade de preparação de substituição do nozzle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "A velocidade a que o filamento é empurrado após uma retração de substituição do nozzle."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Quantidade de Preparação Extra de Substituição do Nozzle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Material extra a preparar após a substituição do nozzle."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3191,6 +3107,127 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "deslocação"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Ativar Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Retrair na Mudança Camada"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Retrai o filamento quando o nozzle se está a deslocar para a camada seguinte."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Distância de Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "O comprimento do material retraído durante um movimento de retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Velocidade de Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração."
|
||||
|
||||
# rever!
|
||||
# retrair?
|
||||
# é retraido?
|
||||
# recuo?
|
||||
# recolhido?
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Velocidade Retrair na Retração"
|
||||
|
||||
# rever!
|
||||
# retrair?
|
||||
# é retraido?
|
||||
# recuo?
|
||||
# recolhido?
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "A velocidade a que o filamento é retraído durante um movimento de retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Velocidade de preparação na retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "A velocidade a que o filamento é preparado durante um movimento de retração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Preparação Adicional de Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação, o qual pode ser compensado aqui."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Deslocação Mínima da Retração"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "A distância mínima de deslocação necessária para que ocorra uma retração. Isto ajuda a obter menos retrações numa área reduzida."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Número Máximo Retrações"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Esta definição limita o número de retrações que ocorrem no intervalo mínimo de distância de extrusão. As retrações adicionais dentro deste intervalo serão ignoradas. Isto evita a retração repetida no mesmo filamento, uma vez que tal pode achatar o filamento e causar problemas de trituração."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Intervalo Mínimo Distância Extrusão"
|
||||
|
||||
# de forma a que o número de vezes que uma retração acontece na mesma área do material seja efetivamente limitado.
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "O intervalo no qual o número máximo de retrações é aplicado. Este valor deve ser aproximadamente o mesmo que o da Distância de Retração, de forma a limitar, efectivamente, o número de vezes que uma retração acontece na mesma área do filamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Limitar Retrações de Suportes"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Eliminar a retração quando o movimento de suporte para suporte é em linha reta. Ativar esta definição reduz o tempo de impressão, mas pode levar a que aja um excessivo numero de fios nas estruturas de suporte."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -4409,6 +4446,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "O número de linhas utilizado para uma aba. Um maior número de linhas da aba melhora a aderência à base de construção, mas também reduz a área de impressão efetiva."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4841,6 +4888,58 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "A distância da proteção contra escorrimentos relativamente à impressão nas direções X/Y."
|
||||
|
||||
# rever!
|
||||
# restantes retração srtings
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Distância de retração de substituição do nozzle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "A quantidade de retração ao mudar de extrusor. Defina como 0 para não obter qualquer retração. Normalmente, esta deve ser a mesma que o comprimento da zona de aquecimento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Velocidade de retração de substituição do nozzle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "A velocidade a que o filamento é retraído. Uma maior velocidade de retração funciona melhor, mas uma velocidade de retração muito elevada pode resultar na trituração do filamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Velocidade de recolha de substituição do nozzle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "A velocidade a que o filamento é retraído durante uma recolha de substituição do nozzle."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Velocidade de preparação de substituição do nozzle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "A velocidade a que o filamento é empurrado após uma retração de substituição do nozzle."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Quantidade de Preparação Extra de Substituição do Nozzle"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Material extra a preparar após a substituição do nozzle."
|
||||
|
||||
# rever!
|
||||
# correção? reparação?
|
||||
# correções? reparações? Emendas?
|
||||
|
@ -4994,8 +5093,8 @@ msgstr "Sequência de impressão"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "Imprime todos os modelos uma camada de cada vez ou aguarda pela conclusão de um modelo antes de avançar para o seguinte. O modo Individualmente apenas é possível se todos os modelos estiverem separados de tal forma que toda a cabeça de impressão possa mover-se entre eles e todos os modelos estejam abaixo da distância entre o nozzle e os eixos X/Y."
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5230,26 +5329,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "A resolução do cálculo de prevenção de colisões com o modelo. Usando um valor baixo irá criar suportes tipo árvore com maior sucesso, mas aumenta drasticamente o tempo de seccionamento."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "Espessura Paredes Suportes Árvore"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "A espessura das paredes dos ramos da árvore de suporte. Paredes mais espessas demoram mais tempo a imprimir mas são mais resistentes."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "Número Paredes Suportes Árvore"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "O número das paredes dos ramos da árvore de suporte. Paredes mais espessas demoram mais tempo a imprimir mas são mais resistentes."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5656,6 +5735,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "Vibra aleatoriamente enquanto imprime a parede exterior, para que a superfície apresente um aspeto rugoso e difuso."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5704,8 +5793,7 @@ msgstr "Fator de compensação da taxa de fluxo"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "flow_rate_extrusion_offset_factor description"
|
||||
msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
|
||||
msgstr "Até que distância o filamento se deve mover para compensar as alterações na taxa de fluxo, como uma percentagem da distância que o filamento iria percorrer"
|
||||
" num segundo de extrusão."
|
||||
msgstr "Até que distância o filamento se deve mover para compensar as alterações na taxa de fluxo, como uma percentagem da distância que o filamento iria percorrer num segundo de extrusão."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wireframe_enabled label"
|
||||
|
@ -6004,8 +6092,7 @@ msgstr "Dimensão da topografia das camadas adaptáveis"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "adaptive_layer_height_threshold description"
|
||||
msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
|
||||
msgstr "Distância horizontal pretendida entre duas camadas adjacentes. Reduzir o valor desta definição faz com que camadas mais finas sejam utilizadas para juntar"
|
||||
" mais os contornos das camadas."
|
||||
msgstr "Distância horizontal pretendida entre duas camadas adjacentes. Reduzir o valor desta definição faz com que camadas mais finas sejam utilizadas para juntar mais os contornos das camadas."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle label"
|
||||
|
@ -6015,8 +6102,7 @@ msgstr "Ângulo da parede de saliências"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle description"
|
||||
msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
|
||||
msgstr "As paredes com saliências que ultrapassem este ângulo serão impressas utilizando definições de parede de saliências. Quando o valor é 90, nenhuma parede"
|
||||
" é considerada como sendo uma saliência. As saliências suportadas por suporte também não serão consideradas como saliências."
|
||||
msgstr "As paredes com saliências que ultrapassem este ângulo serão impressas utilizando definições de parede de saliências. Quando o valor é 90, nenhuma parede é considerada como sendo uma saliência. As saliências suportadas por suporte também não serão consideradas como saliências."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_speed_factor label"
|
||||
|
@ -6058,6 +6144,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "Se uma região de revestimento for suportada por menos do que esta percentagem da sua área, imprima-a utilizando as definições de Bridge. Caso contrário, será impressa utilizando as definições de revestimento normais."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6225,8 +6321,8 @@ msgstr "Limpar nozzle entre camadas"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "Incluir ou não o G-code de limpeza do nozzle entre as camadas. Ativar esta definição poderá influenciar o comportamento de retração na mudança de camada. Utilize as definições de Retração de limpeza para controlar a retração nas camadas onde o script de limpeza estará em funcionamento."
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6235,8 +6331,8 @@ msgstr "Volume de material entre limpezas"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "Material máximo que pode ser extrudido antes de ser iniciada outra limpeza do nozzle."
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6290,8 +6386,8 @@ msgstr "A velocidade a que o filamento é retraído durante um movimento de retr
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Velocidade de preparação na retração"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6310,13 +6406,13 @@ msgstr "Coloca a limpeza em pausa após anular a retração."
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "Salto Z de limpeza ao retrair"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "Sempre que for efetuada uma retração, a base de construção é baixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle atinja a impressão durante os movimentos de deslocação, reduzindo a probabilidade de derrubar a impressão da base de construção."
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6396,8 +6492,7 @@ msgstr "Velocidade de elemento pequeno"
|
|||
#: fdmprinter.def.json
|
||||
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."
|
||||
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_feature_speed_factor_0 label"
|
||||
|
@ -6407,8 +6502,7 @@ msgstr "Velocidade da camada inicial de partes pequenas"
|
|||
#: 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."
|
||||
msgstr "Os elementos pequenos na primeira camada 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."
|
||||
msgstr "Os elementos pequenos na primeira camada 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 "command_line_settings label"
|
||||
|
@ -6470,6 +6564,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Matriz de transformação a ser aplicada ao modelo quando abrir o ficheiro."
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "Polígono da cabeça da máquina"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "Uma silhueta 2D da cabeça de impressão (excluindo tampas do(s) ventilador(s))."
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "Imprime todos os modelos uma camada de cada vez ou aguarda pela conclusão de um modelo antes de avançar para o seguinte. O modo Individualmente apenas é possível se todos os modelos estiverem separados de tal forma que toda a cabeça de impressão possa mover-se entre eles e todos os modelos estejam abaixo da distância entre o nozzle e os eixos X/Y."
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "Espessura Paredes Suportes Árvore"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "A espessura das paredes dos ramos da árvore de suporte. Paredes mais espessas demoram mais tempo a imprimir mas são mais resistentes."
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "Número Paredes Suportes Árvore"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "O número das paredes dos ramos da árvore de suporte. Paredes mais espessas demoram mais tempo a imprimir mas são mais resistentes."
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "Incluir ou não o G-code de limpeza do nozzle entre as camadas. Ativar esta definição poderá influenciar o comportamento de retração na mudança de camada. Utilize as definições de Retração de limpeza para controlar a retração nas camadas onde o script de limpeza estará em funcionamento."
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "Material máximo que pode ser extrudido antes de ser iniciada outra limpeza do nozzle."
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "Velocidade de preparação na retração"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "Salto Z de limpeza ao retrair"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "Sempre que for efetuada uma retração, a base de construção é baixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle atinja a impressão durante os movimentos de deslocação, reduzindo a probabilidade de derrubar a impressão da base de construção."
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "Tamanho mínimo da área para polígonos da interface de suporte. Os polígonos com uma área inferior a este valor não serão gerados."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Ruslan Popov <ruslan.popov@gmail.com>, Russian <info@bothof.nl>\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-07-29 15:51+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Russian <info@lionbridge.com>, Ruslan Popov <ruslan.popov@gmail.com>, Russian <info@bothof.nl>\n"
|
||||
|
@ -411,6 +411,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "Определяет, использовать ли команды отката встроенного программного обеспечения (G10/G11) вместо применения свойства E в командах G1 для отката материала."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -431,16 +441,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "Список полигонов с областями, в которые не должно заходить сопло."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "Полигон головки принтера"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "2D контур головы принтера (исключая крышки вентилятора)."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1935,6 +1935,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "Области оболочек уже указанного значения не расширяются. Это предотвращает расширение узких областей оболочек, которые создаются, если наклон поверхности модели близок к вертикальному."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2125,6 +2145,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "Насколько быстро следует убирать материал, чтобы он отломился."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2155,6 +2185,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "Температура, при которой материал отломится чисто."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2295,116 +2385,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "Компенсация потока для первого слоя: объем выдавленного материала на первом слое умножается на этот коэффициент."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Разрешить откат"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Откат нити при движении сопла вне зоны печати. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Откат при смене слоя"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Откат нити при перемещении сопла на следующий слой."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Величина отката"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "Длина нити материала, которая будет извлечена по время отката."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Скорость отката"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Скорость, с которой материал будет извлечён и возвращён обратно при откате."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Скорость извлечения при откате"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Скорость с которой нить будет извлечена при откате."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Скорость заправки при откате"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Скорость с которой материал будет возвращён при откате."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Дополнительно заполняемый объём при откате"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Небольшое количество материала может выдавиться во время движения, что может быть скомпенсировано с помощью данного параметра."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Минимальное перемещение при откате"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Минимальное расстояние на которое необходимо переместиться для отката, чтобы он произошёл. Этот параметр помогает уменьшить количество откатов на небольшой области печати."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Максимальное количество откатов"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Данный параметр ограничивает число откатов, которые происходят внутри окна минимальной дистанции экструзии. Дальнейшие откаты внутри этого окна будут проигнорированы. Это исключает выполнение множества повторяющихся откатов над одним и тем же участком нити, что позволяет избежать проблем с истиранием нити."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Окно минимальной расстояния экструзии"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Окно, в котором может быть выполнено максимальное количество откатов. Это значение приблизительно должно совпадать с расстоянием отката таким образом, чтобы количество выполненных откатов распределялось на величину выдавленного материала."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Ограничить откаты поддержки"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Пропустить откат при переходе от поддержки к поддержке по прямой линии. Включение этого параметра обеспечивает экономию времени печати, но может привести к чрезмерной строчности структуры поддержек."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2415,56 +2395,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "Температура сопла в момент, когда для печати используется другое сопло."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Величина отката при смене экструдера"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Величина отката при переключении экструдеров. Установите 0 для отключения отката. Обычно соответствует длине зоны нагрева."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Скорость отката при смене экструдера"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Скорость с которой материал будет извлечён и возвращён обратно при откате. Высокая скорость отката работает лучше, но очень большая скорость портит материал."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Скорость отката при смене экструдера"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Скорость, с которой материал будет извлечён при откате для смены экструдера."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Скорость наполнения при смене экструдера"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Скорость, с которой материал будет возвращён обратно при смене экструдера."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Дополнительно заполняемый объем при смене экструдера"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Дополнительный объем материала для заполнения после смены экструдера."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3085,6 +3015,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "перемещение"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Разрешить откат"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Откат нити при движении сопла вне зоны печати. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Откат при смене слоя"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Откат нити при перемещении сопла на следующий слой."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Величина отката"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "Длина нити материала, которая будет извлечена по время отката."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Скорость отката"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Скорость, с которой материал будет извлечён и возвращён обратно при откате."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Скорость извлечения при откате"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Скорость с которой нить будет извлечена при откате."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Скорость заправки при откате"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Скорость с которой материал будет возвращён при откате."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Дополнительно заполняемый объём при откате"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Небольшое количество материала может выдавиться во время движения, что может быть скомпенсировано с помощью данного параметра."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Минимальное перемещение при откате"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Минимальное расстояние на которое необходимо переместиться для отката, чтобы он произошёл. Этот параметр помогает уменьшить количество откатов на небольшой области печати."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Максимальное количество откатов"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Данный параметр ограничивает число откатов, которые происходят внутри окна минимальной дистанции экструзии. Дальнейшие откаты внутри этого окна будут проигнорированы. Это исключает выполнение множества повторяющихся откатов над одним и тем же участком нити, что позволяет избежать проблем с истиранием нити."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Окно минимальной расстояния экструзии"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Окно, в котором может быть выполнено максимальное количество откатов. Это значение приблизительно должно совпадать с расстоянием отката таким образом, чтобы количество выполненных откатов распределялось на величину выдавленного материала."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Ограничить откаты поддержки"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Пропустить откат при переходе от поддержки к поддержке по прямой линии. Включение этого параметра обеспечивает экономию времени печати, но может привести к чрезмерной строчности структуры поддержек."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -4279,6 +4319,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "Количество линий, используемых для печати каймы. Большее количество линий каймы улучшает прилипание к столу, но уменьшает эффективную область печати."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4709,6 +4759,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "Дистанция до стенки защиты от модели, по осям X/Y."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Величина отката при смене экструдера"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Величина отката при переключении экструдеров. Установите 0 для отключения отката. Обычно соответствует длине зоны нагрева."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Скорость отката при смене экструдера"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Скорость с которой материал будет извлечён и возвращён обратно при откате. Высокая скорость отката работает лучше, но очень большая скорость портит материал."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Скорость отката при смене экструдера"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Скорость, с которой материал будет извлечён при откате для смены экструдера."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Скорость наполнения при смене экструдера"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Скорость, с которой материал будет возвращён обратно при смене экструдера."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Дополнительно заполняемый объем при смене экструдера"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Дополнительный объем материала для заполнения после смены экструдера."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4846,8 +4946,8 @@ msgstr "Последовательная печать"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "Печатать ли все модели послойно или каждую модель в отдельности. Отдельная печать возможна в случае, когда все модели разделены так, чтобы между ними могла проходить голова принтера и все модели ниже чем расстояние до осей X/Y."
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5074,26 +5174,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "Разрешение, применяемое при расчете столкновений во избежание столкновений с моделью. Если указать меньшее значение, древовидные структуры будут получаться более точными и устойчивыми, однако при этом значительно увеличится время разделения на слои."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "Толщина стенки древовидной поддержки"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Толщина стенок ответвлений древовидной поддержки. Для печати утолщенных стенок требуется больше времени, однако при этом возрастает устойчивость поддержки."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "Количество линий стенки древовидной поддержки"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Количество стенок ответвлений древовидной поддержки. Для печати утолщенных стенок требуется больше времени, однако при этом возрастает устойчивость поддержки."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5484,6 +5564,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "Вносит небольшое дрожание при печати внешней стенки, что придаёт поверхности шершавый вид."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5532,8 +5622,7 @@ msgstr "Коэффициент компенсации расхода"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "flow_rate_extrusion_offset_factor description"
|
||||
msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
|
||||
msgstr "Означает, насколько далеко следует переместить материал, чтобы компенсировать изменение расхода, в процентах от расстояния, на которое перемещается материал"
|
||||
" за одну секунду экструзии."
|
||||
msgstr "Означает, насколько далеко следует переместить материал, чтобы компенсировать изменение расхода, в процентах от расстояния, на которое перемещается материал за одну секунду экструзии."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wireframe_enabled label"
|
||||
|
@ -5832,8 +5921,7 @@ msgstr "Размер топографии адаптивных слоев"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "adaptive_layer_height_threshold description"
|
||||
msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
|
||||
msgstr "Целевое расстояние по горизонтали между двумя соседними слоями. Уменьшение этого значения приведет к сокращению толщины слоев, и края слоев станут ближе"
|
||||
" друг к другу."
|
||||
msgstr "Целевое расстояние по горизонтали между двумя соседними слоями. Уменьшение этого значения приведет к сокращению толщины слоев, и края слоев станут ближе друг к другу."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle label"
|
||||
|
@ -5843,8 +5931,7 @@ msgstr "Угол нависающей стенки"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle description"
|
||||
msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
|
||||
msgstr "Стенки, выступающие под углом больше указанного, будут напечатаны с использованием настроек выступающей стенки. Если значение составляет 90, стенки не"
|
||||
" считаются выступающими. Выступающие элементы, для которых имеется поддержка, также не считаются выступающими."
|
||||
msgstr "Стенки, выступающие под углом больше указанного, будут напечатаны с использованием настроек выступающей стенки. Если значение составляет 90, стенки не считаются выступающими. Выступающие элементы, для которых имеется поддержка, также не считаются выступающими."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_speed_factor label"
|
||||
|
@ -5886,6 +5973,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "Если поддержка области оболочки составляет меньше указанного процентного значения от ее площади, печать должна быть выполнена с использованием настроек мостика. В противном случае печать осуществляется с использованием стандартных настроек оболочки."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6053,8 +6150,8 @@ msgstr "Очистка сопла между слоями"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "Следует ли добавлять G-код очистки сопла между слоями. Включение этого параметра может повлиять на ход отката при смене слоя. Используйте параметры отката с очисткой для управления откатом на слоях, для которых используется скрипт очистки."
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6063,8 +6160,8 @@ msgstr "Объем материала между очистками"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "Максимальный объем материала, который можно выдавить перед очередной очисткой сопла."
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6118,8 +6215,8 @@ msgstr "Скорость, с которой нить будет втягиват
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Скорость заправки при откате"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6138,13 +6235,13 @@ msgstr "Приостановка после отмены отката."
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "Поднятие оси Z с очисткой при откате"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "При каждом откате рабочий стол опускается для создания зазора между соплом и печатаемой деталью. Это предотвращает соударение сопла и печатаемой детали во время движений, снижая вероятность смещения печатаемой детали на рабочем столе."
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6224,8 +6321,7 @@ msgstr "Скорость для малых элементов"
|
|||
#: fdmprinter.def.json
|
||||
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 "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию"
|
||||
" и точность."
|
||||
msgstr "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "small_feature_speed_factor_0 label"
|
||||
|
@ -6235,8 +6331,7 @@ 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."
|
||||
msgstr "Малые элементы на первом слое будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить"
|
||||
" адгезию и точность."
|
||||
msgstr "Малые элементы на первом слое будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "command_line_settings label"
|
||||
|
@ -6298,6 +6393,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Матрица преобразования, применяемая к модели при её загрузке из файла."
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "Полигон головки принтера"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "2D контур головы принтера (исключая крышки вентилятора)."
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "Печатать ли все модели послойно или каждую модель в отдельности. Отдельная печать возможна в случае, когда все модели разделены так, чтобы между ними могла проходить голова принтера и все модели ниже чем расстояние до осей X/Y."
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "Толщина стенки древовидной поддержки"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Толщина стенок ответвлений древовидной поддержки. Для печати утолщенных стенок требуется больше времени, однако при этом возрастает устойчивость поддержки."
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "Количество линий стенки древовидной поддержки"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Количество стенок ответвлений древовидной поддержки. Для печати утолщенных стенок требуется больше времени, однако при этом возрастает устойчивость поддержки."
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "Следует ли добавлять G-код очистки сопла между слоями. Включение этого параметра может повлиять на ход отката при смене слоя. Используйте параметры отката с очисткой для управления откатом на слоях, для которых используется скрипт очистки."
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "Максимальный объем материала, который можно выдавить перед очередной очисткой сопла."
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "Скорость заправки при откате"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "Поднятие оси Z с очисткой при откате"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "При каждом откате рабочий стол опускается для создания зазора между соплом и печатаемой деталью. Это предотвращает соударение сопла и печатаемой детали во время движений, снижая вероятность смещения печатаемой детали на рабочем столе."
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "Минимальная площадь зоны для полигонов связующего слоя. Полигоны с площадью меньше данного значения не будут генерироваться."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Turkish\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-07-29 15:51+0100\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Turkish <info@lionbridge.com>, Turkish <info@bothof.nl>\n"
|
||||
|
@ -410,6 +410,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "Malzemeyi geri çekmek için G1 komutlarında E özelliği yerine aygıt yazılımı çekme komutlarının (G10/G11) kullanılıp kullanılmayacağı."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -430,16 +440,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "Nozülün girmesine izin verilmeyen alanlara sahip poligon listesi."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "Makinenin Ana Poligonu"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "Yazıcı başlığının 2B taslağı (fan başlıkları hariç)."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1934,6 +1934,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "Bu değerden daha dar olan yüzey alanları genişletilmez. Böylece model yüzeyinin dikeye yakın bir eğime sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2124,6 +2144,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "Filamentin kopmadan ne kadar hızlı geri çekilmesi gerektiğidir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2154,6 +2184,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "Sorunsuz kopması için filament koptuğundaki sıcaklık değeridir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2294,116 +2384,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "İlk katman için akış dengelemesi: ilk katmana ekstrude edilen malzeme miktarı bu değerle çarpılır."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Geri Çekmeyi Etkinleştir"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Katman Değişimindeki Geri Çekme"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Nozül bir sonraki katmana doğru hareket ettiğinde filamanı geri çekin."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Geri Çekme Mesafesi"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "Geri çekme hareketi sırasında geri çekilen malzemenin uzunluğu."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Geri Çekme Hızı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Filamanın geri çekildiği ve geri çekme hareketi sırasında astarlandığı hız."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Geri Çekme Sırasındaki Çekim Hızı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Filamanın geri çekme hareketi sırasında geri çekildiği hız."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Geri Çekme Sırasındaki Astar Hızı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Filamanın geri çekme hareketi sırasında astarlandığı hız."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Geri Çekme Sırasındaki İlave Astar Miktarı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Hareket sırasında bazı malzemeler eksilebilir, bu malzemeler burada telafi edebilir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Minimum Geri Çekme Hareketi"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Geri çekme işleminin yapılması için gerekli olan minimum hareket mesafesi. Küçük bir alanda daha az geri çekme işlemi yapılmasına yardımcı olur."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Maksimum Geri Çekme Sayısı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Bu ayar, düşük ekstrüzyon mesafesi penceresinde oluşan ekstrüzyon sayısını sınırlandırır. Bu penceredeki geri çekmeler yok sayılacaktır. Filamanı düzleştirebildiği ve aşındırma sorunlarına yol açabileceği için aynı filaman parçası üzerinde tekrar tekrar geri çekme yapılmasını önler."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Minimum Geri Çekme Mesafesi Penceresi"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Maksimum geri çekme sayısının uygulandığı pencere. Bu değer, geri çekme mesafesi ile hemen hemen aynıdır, bu şekilde geri çekmenin aynı malzeme yolundan geçme sayısı etkin olarak sınırlandırılır."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Destek Geri Çekmelerini Sınırlandır"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Düz hat üzerinde destekler arasında hareket ederken geri çekmeyi atlayın. Bu ayarın etkinleştirilmesi baskı süresini kısaltır ancak destek yapısında ölçüsüz dizilime yol açabilir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2414,56 +2394,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "Yazdırma için başka bir nozül kullanılırken nozülün sıcaklığı."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Nozül Anahtarı Geri Çekme Mesafesi"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Ekstrüderler değiştirilirken oluşan geri çekme miktarı. Geri çekme yoksa 0 olarak ayarlayın. Bu genellikle ısı bölgesinin uzunluğuna eşittir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Nozül Anahtarı Geri Çekme Hızı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Filamanın geri çekildiği hız. Daha yüksek bir geri çekme hızı daha çok işe yarar, fakat çok yüksek geri çekme hızı filaman aşınmasına neden olabilir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Nozül Değişiminin Geri Çekme Hızı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Nozül değişiminin çekmesi sırasında filamanın geri çekildiği hız."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Nozül Değişiminin İlk Hızı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Nozül değişiminin çekmesi sonucunda filamanın geriye doğru itildiği hız."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Nozül Değişimiyle Çalışmaya Hazırlanacak Ek Miktar"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Nozül değişiminin ardından çalışmaya hazırlanacak ek malzemedir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3084,6 +3014,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "hareket"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "Geri Çekmeyi Etkinleştir"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker. "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "Katman Değişimindeki Geri Çekme"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "Nozül bir sonraki katmana doğru hareket ettiğinde filamanı geri çekin."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "Geri Çekme Mesafesi"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "Geri çekme hareketi sırasında geri çekilen malzemenin uzunluğu."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "Geri Çekme Hızı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "Filamanın geri çekildiği ve geri çekme hareketi sırasında astarlandığı hız."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "Geri Çekme Sırasındaki Çekim Hızı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "Filamanın geri çekme hareketi sırasında geri çekildiği hız."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Geri Çekme Sırasındaki Astar Hızı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "Filamanın geri çekme hareketi sırasında astarlandığı hız."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "Geri Çekme Sırasındaki İlave Astar Miktarı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "Hareket sırasında bazı malzemeler eksilebilir, bu malzemeler burada telafi edebilir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "Minimum Geri Çekme Hareketi"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "Geri çekme işleminin yapılması için gerekli olan minimum hareket mesafesi. Küçük bir alanda daha az geri çekme işlemi yapılmasına yardımcı olur."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "Maksimum Geri Çekme Sayısı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "Bu ayar, düşük ekstrüzyon mesafesi penceresinde oluşan ekstrüzyon sayısını sınırlandırır. Bu penceredeki geri çekmeler yok sayılacaktır. Filamanı düzleştirebildiği ve aşındırma sorunlarına yol açabileceği için aynı filaman parçası üzerinde tekrar tekrar geri çekme yapılmasını önler."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "Minimum Geri Çekme Mesafesi Penceresi"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "Maksimum geri çekme sayısının uygulandığı pencere. Bu değer, geri çekme mesafesi ile hemen hemen aynıdır, bu şekilde geri çekmenin aynı malzeme yolundan geçme sayısı etkin olarak sınırlandırılır."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "Destek Geri Çekmelerini Sınırlandır"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "Düz hat üzerinde destekler arasında hareket ederken geri çekmeyi atlayın. Bu ayarın etkinleştirilmesi baskı süresini kısaltır ancak destek yapısında ölçüsüz dizilime yol açabilir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -4278,6 +4318,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "Bir kenar için kullanılan hatların sayısı Daha fazla kenar hattı yapı levhasına yapışmayı artırmanın yanı sıra etkin yazdırma alanını da azaltır."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4708,6 +4758,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "Sızdırma kalkanını X/Y yönlerindeki baskıya mesafesi."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "Nozül Anahtarı Geri Çekme Mesafesi"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "Ekstrüderler değiştirilirken oluşan geri çekme miktarı. Geri çekme yoksa 0 olarak ayarlayın. Bu genellikle ısı bölgesinin uzunluğuna eşittir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "Nozül Anahtarı Geri Çekme Hızı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "Filamanın geri çekildiği hız. Daha yüksek bir geri çekme hızı daha çok işe yarar, fakat çok yüksek geri çekme hızı filaman aşınmasına neden olabilir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "Nozül Değişiminin Geri Çekme Hızı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "Nozül değişiminin çekmesi sırasında filamanın geri çekildiği hız."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "Nozül Değişiminin İlk Hızı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "Nozül değişiminin çekmesi sonucunda filamanın geriye doğru itildiği hız."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "Nozül Değişimiyle Çalışmaya Hazırlanacak Ek Miktar"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "Nozül değişiminin ardından çalışmaya hazırlanacak ek malzemedir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4845,8 +4945,8 @@ msgstr "Yazdırma Dizisi"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "Sıradakine geçmeden önce, tek seferde bir katmanla tüm modelleri yazdırmak veya bir modelin bitmesini beklemek. Teker teker modu sadece tüm modellerin, yazıcı başlığı aralarında hareket edecek şekilde veya aralarındaki mesafe X/Y aksları arasındaki mesafeden az olacak şekilde ayrıldığında kullanılabilir."
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5073,26 +5173,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "Modele çarpmamak adına çarpışmaları hesaplamak için çözünürlük. Buna düşük bir değerin verilmesi daha az hata çıkaran daha isabetli ağaçların üretilmesini sağlar ancak dilimleme süresini önemli ölçüde artırır."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "Ağaç Destek Duvarının Kalınlığı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Ağaç desteğin dallarında yer alan duvarların kalınlığı. Kalın duvarların basılması daha uzun sürer ancak kalın duvarlar kolay devrilmezler."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "Ağaç Destek Duvarının Hat Sayısı"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "Ağaç desteğin dallarında yer alan duvarların sayısı. Kalın duvarların basılması daha uzun sürer ancak kalın duvarlar kolay devrilmezler."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5483,6 +5563,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "Yüzeyin sert ve belirsiz bir görüntü alması için dış duvarları yazdırırken rastgele titrer."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5531,8 +5621,7 @@ msgstr "Akış hızı dengeleme çarpanı"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "flow_rate_extrusion_offset_factor description"
|
||||
msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
|
||||
msgstr "Akış hızındaki değişiklikleri telafi edebilmek için filamentin bir saniyelik ekstrüzyonda hareket ettirileceği mesafenin yüzdesi olarak filamentin ne kadar"
|
||||
" uzağa hareket ettirileceği."
|
||||
msgstr "Akış hızındaki değişiklikleri telafi edebilmek için filamentin bir saniyelik ekstrüzyonda hareket ettirileceği mesafenin yüzdesi olarak filamentin ne kadar uzağa hareket ettirileceği."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wireframe_enabled label"
|
||||
|
@ -5831,8 +5920,7 @@ msgstr "Uyarlanabilir Katman Topografisi Boyutu"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "adaptive_layer_height_threshold description"
|
||||
msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
|
||||
msgstr "İki bitişik katman arasındaki hedef yatay mesafe. Bu ayarın azaltılması, katmanların kenarlarını birbirine yakınlaştırmak için daha ince katmanlar kullanılmasına"
|
||||
" neden olur."
|
||||
msgstr "İki bitişik katman arasındaki hedef yatay mesafe. Bu ayarın azaltılması, katmanların kenarlarını birbirine yakınlaştırmak için daha ince katmanlar kullanılmasına neden olur."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle label"
|
||||
|
@ -5842,8 +5930,7 @@ msgstr "Çıkıntılı Duvar Açısı"
|
|||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_angle description"
|
||||
msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
|
||||
msgstr "Bu açıdan daha yüksek çıkıntıya sahip duvarlar çıkıntılı duvar ayarları kullanılarak basılacaktır. Değer 90 ise hiçbir duvarda çıkıntı olmadığı varsayılacaktır."
|
||||
" Destek ile desteklenen çıkıntılar da çıkıntı olarak değerlendirilmeyecektir."
|
||||
msgstr "Bu açıdan daha yüksek çıkıntıya sahip duvarlar çıkıntılı duvar ayarları kullanılarak basılacaktır. Değer 90 ise hiçbir duvarda çıkıntı olmadığı varsayılacaktır. Destek ile desteklenen çıkıntılar da çıkıntı olarak değerlendirilmeyecektir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wall_overhang_speed_factor label"
|
||||
|
@ -5885,6 +5972,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "Eğer bir yüzey alanı bölgesi, alanının bu yüzdeden daha azı için destekleniyorsa, köprü ayarlarını kullanarak yazdırın. Aksi halde normal yüzey alanı ayarları kullanılarak yazdırılır."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6052,8 +6149,8 @@ msgstr "Katmanlar Arasındaki Sürme Nozülü"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "Katmanlar arasına sürme nozülü G-code'unun dahil edilip edilmeyeceği. Bu ayarın etkinleştirilmesi katman değişiminde geri çekme davranışını etkileyebilir. Sürme komutunun çalıştığı katmanlarda geri çekmeyi kontrol etmek için lütfen Sürme Geri Çekme ayarlarını kullanın."
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6062,8 +6159,8 @@ msgstr "Sürme Hareketleri Arasındaki Malzeme Hacmi"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "Başka bir sürme nozülü başlatılmadan önce ekstrude edilebilecek maksimum malzeme miktarı."
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6117,8 +6214,8 @@ msgstr "Filamanın sürme geri çekme hareketi sırasında geri çekildiği hız
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "Geri Çekme Sırasındaki Astar Hızı"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6137,13 +6234,13 @@ msgstr "Geri çekmenin geri alınmasından sonraki duraklama."
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "Geri Çekildiğinde Sürme Z Sıçraması"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "Bir geri çekme işlemi yapıldığında baskı tepsisi nozül ve baskı arasında açıklık oluşturmak üzere alçaltılır. Bu, hareket sırasında nozülün baskıya çarpmasını önleyerek baskının devrilip baskı tepsisinden düşmesini önler."
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6295,6 +6392,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Modeli dosyadan indirirken modele uygulanacak olan dönüşüm matrisi."
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "Makinenin Ana Poligonu"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "Yazıcı başlığının 2B taslağı (fan başlıkları hariç)."
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "Sıradakine geçmeden önce, tek seferde bir katmanla tüm modelleri yazdırmak veya bir modelin bitmesini beklemek. Teker teker modu sadece tüm modellerin, yazıcı başlığı aralarında hareket edecek şekilde veya aralarındaki mesafe X/Y aksları arasındaki mesafeden az olacak şekilde ayrıldığında kullanılabilir."
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "Ağaç Destek Duvarının Kalınlığı"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Ağaç desteğin dallarında yer alan duvarların kalınlığı. Kalın duvarların basılması daha uzun sürer ancak kalın duvarlar kolay devrilmezler."
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "Ağaç Destek Duvarının Hat Sayısı"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "Ağaç desteğin dallarında yer alan duvarların sayısı. Kalın duvarların basılması daha uzun sürer ancak kalın duvarlar kolay devrilmezler."
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "Katmanlar arasına sürme nozülü G-code'unun dahil edilip edilmeyeceği. Bu ayarın etkinleştirilmesi katman değişiminde geri çekme davranışını etkileyebilir. Sürme komutunun çalıştığı katmanlarda geri çekmeyi kontrol etmek için lütfen Sürme Geri Çekme ayarlarını kullanın."
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "Başka bir sürme nozülü başlatılmadan önce ekstrude edilebilecek maksimum malzeme miktarı."
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "Geri Çekme Sırasındaki Astar Hızı"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "Geri Çekildiğinde Sürme Z Sıçraması"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "Bir geri çekme işlemi yapıldığında baskı tepsisi nozül ve baskı arasında açıklık oluşturmak üzere alçaltılır. Bu, hareket sırasında nozülün baskıya çarpmasını önleyerek baskının devrilip baskı tepsisinden düşmesini önler."
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "Destek arayüzü poligonları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır."
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: PCDotFan <pc@edu.ax>, Bothof <info@bothof.nl>\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.4\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-09-23 14:18+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Chinese <info@lionbridge.com>, PCDotFan <pc@edu.ax>, Chinese <info@bothof.nl>\n"
|
||||
|
@ -411,6 +411,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "是否使用固件收回命令 (G10/G11) 而不是使用 G1 命令中的 E 属性来收回材料。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -431,16 +441,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "包含不允许喷嘴进入区域的多边形列表。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "机器头多边形"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "打印头 2D 轮廓图(不包含风扇盖)。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1935,6 +1935,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "如果皮肤区域宽度小于此值,则不会扩展。 这会避免扩展在模型表面的坡度接近垂直时所形成的狭窄皮肤区域。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2125,6 +2145,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "耗材在回抽过程中恰好折断的回抽速率。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2155,6 +2185,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "耗材在完全脱落时的温度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2295,116 +2385,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "第一层的流量补偿:起始层挤出的材料量乘以此值。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "启用回抽"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "当喷嘴移动到非打印区域上方时回抽耗材。 "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "层变化时回抽"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "当喷嘴移动到下一层时回抽耗材。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "回抽距离"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "回抽移动期间回抽的材料长度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "回抽移动期间耗材回抽和装填的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "回抽移动期间耗材回抽的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "回抽装填速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "回抽移动期间耗材装填的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "回抽额外装填量"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "有些材料可能会在空驶过程中渗出,可以在这里对其进行补偿。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "回抽最小空驶"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "回抽发生所需的最小空驶距离。 这有助于在较小区域内实现更少的回抽。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "最大回抽计数"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "此设置限制在最小挤出距离范围内发生的回抽数。 此范围内的额外回抽将会忽略。 这避免了在同一件耗材上重复回抽,从而导致耗材变扁并引起磨损问题。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "最小挤出距离范围"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "执行最大回抽计数的范围。 该值应与回抽距离大致相同,以便一次回抽通过同一块材料的次数得到有效限制。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "支撑限制被撤销"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "当在各个支撑间直线移动时,省略回抽。启用这个设置可以节省打印时间,但会在支撑结构中产生过多穿线。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2415,56 +2395,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "当另一个喷嘴正用于打印时该喷嘴的温度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "喷嘴切换回抽距离"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "切换挤出机时的回抽量。设为 0,不进行任何回抽。该值通常应与加热区的长度相同。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "喷嘴切换回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "回抽耗材的速度。 较高的回抽速度效果较好,但回抽速度过高可能导致耗材磨损。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "喷嘴切换回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "喷嘴切换回抽期间耗材回抽的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "喷嘴切换装填速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "喷嘴切换回抽后耗材被推回的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "喷嘴切换额外装填量"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "喷嘴切换后的额外装填材料。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3085,6 +3015,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "空驶"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "启用回抽"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "当喷嘴移动到非打印区域上方时回抽耗材。 "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "层变化时回抽"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "当喷嘴移动到下一层时回抽耗材。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "回抽距离"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "回抽移动期间回抽的材料长度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "回抽移动期间耗材回抽和装填的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "回抽移动期间耗材回抽的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "回抽装填速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "回抽移动期间耗材装填的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "回抽额外装填量"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "有些材料可能会在空驶过程中渗出,可以在这里对其进行补偿。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "回抽最小空驶"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "回抽发生所需的最小空驶距离。 这有助于在较小区域内实现更少的回抽。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "最大回抽计数"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "此设置限制在最小挤出距离范围内发生的回抽数。 此范围内的额外回抽将会忽略。 这避免了在同一件耗材上重复回抽,从而导致耗材变扁并引起磨损问题。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "最小挤出距离范围"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "执行最大回抽计数的范围。 该值应与回抽距离大致相同,以便一次回抽通过同一块材料的次数得到有效限制。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "支撑限制被撤销"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "当在各个支撑间直线移动时,省略回抽。启用这个设置可以节省打印时间,但会在支撑结构中产生过多穿线。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -4279,6 +4319,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "brim 所用走线数量。 更多 brim 走线可增强与打印平台的附着,但也会减少有效打印区域。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4709,6 +4759,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "渗出罩在 X/Y 方向距打印品的距离。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "喷嘴切换回抽距离"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "切换挤出机时的回抽量。设为 0,不进行任何回抽。该值通常应与加热区的长度相同。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "喷嘴切换回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "回抽耗材的速度。 较高的回抽速度效果较好,但回抽速度过高可能导致耗材磨损。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "喷嘴切换回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "喷嘴切换回抽期间耗材回抽的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "喷嘴切换装填速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "喷嘴切换回抽后耗材被推回的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "喷嘴切换额外装填量"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "喷嘴切换后的额外装填材料。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4846,8 +4946,8 @@ msgstr "打印序列"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "是否一次打印一层中的所有模型或等待一个模型完成后再转到下一个模型。 排队模式只有在所有模型以一种整个打印头可以在各个模型之间移动的方式分隔开,且所有模型都低于喷嘴和 X / Y 轴之间距离的情况下可用。"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5074,26 +5174,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "用于计算碰撞的分辨率,目的在于避免碰撞模型。将此设置得较低将产生更准确且通常较少失败的树,但是会大幅增加切片时间。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "树形支撑壁厚度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "树形支撑分支的壁厚度。较厚的壁需要的打印时间更长,但不易掉落。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "树形支撑壁走线次数"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "树形支撑的分支壁数量。较厚的壁需要的打印时间更长,但不易掉落。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5484,6 +5564,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "在打印外墙时随机抖动,使表面具有粗糙和模糊的外观。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5883,6 +5973,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "如果受支撑的表面区域小于整个区域的这一百分比,则使用连桥设置打印。否则,使用正常表面设置打印。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6050,8 +6150,8 @@ msgstr "图层切换后擦拭喷嘴"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "是否包括图层切换后擦拭喷嘴的 G-Code。启用此设置可能会影响图层变化时的回抽。请使用“擦拭回抽”设置来控制擦拭脚本将在其中工作的图层回抽。"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6060,8 +6160,8 @@ msgstr "擦拭之间的材料量"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "开始下一轮喷嘴擦拭前,可挤出的最大材料量。"
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6115,8 +6215,8 @@ msgstr "擦拭回抽移动期间耗材回抽的速度。"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "回抽装填速度"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6135,13 +6235,13 @@ msgstr "在未回抽后暂停。"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "回抽后擦拭 Z 抬升"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "回抽完成时,打印平台会下降以便在喷嘴和打印品之间形成空隙。进而防止喷嘴在空驶过程中撞到打印品,降低打印品滑出打印平台的几率。"
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6293,6 +6393,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。"
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "机器头多边形"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "打印头 2D 轮廓图(不包含风扇盖)。"
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "是否一次打印一层中的所有模型或等待一个模型完成后再转到下一个模型。 排队模式只有在所有模型以一种整个打印头可以在各个模型之间移动的方式分隔开,且所有模型都低于喷嘴和 X / Y 轴之间距离的情况下可用。"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "树形支撑壁厚度"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "树形支撑分支的壁厚度。较厚的壁需要的打印时间更长,但不易掉落。"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "树形支撑壁走线次数"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "树形支撑的分支壁数量。较厚的壁需要的打印时间更长,但不易掉落。"
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "是否包括图层切换后擦拭喷嘴的 G-Code。启用此设置可能会影响图层变化时的回抽。请使用“擦拭回抽”设置来控制擦拭脚本将在其中工作的图层回抽。"
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "开始下一轮喷嘴擦拭前,可挤出的最大材料量。"
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "回抽装填速度"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "回抽后擦拭 Z 抬升"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "回抽完成时,打印平台会下降以便在喷嘴和打印品之间形成空隙。进而防止喷嘴在空驶过程中撞到打印品,降低打印品滑出打印平台的几率。"
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "支撑接触面多边形的最小面积。将不会生成面积小于此值的多边形。"
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.3\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-03-03 14:09+0800\n"
|
||||
"Last-Translator: Zhang Heh Ji <dinowchang@gmail.com>\n"
|
||||
"Language-Team: Zhang Heh Ji <dinowchang@gmail.com>\n"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.3\n"
|
||||
"Project-Id-Version: Cura 4.5\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2019-11-05 13:13+0000\n"
|
||||
"POT-Creation-Date: 2020-02-07 14:19+0000\n"
|
||||
"PO-Revision-Date: 2019-11-13 23:45+0800\n"
|
||||
"Last-Translator: Zhang Heh Ji <dinowchang@gmail.com>\n"
|
||||
"Language-Team: Zhang Heh Ji <dinowchang@gmail.com>\n"
|
||||
|
@ -410,6 +410,16 @@ msgctxt "machine_firmware_retract description"
|
|||
msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
|
||||
msgstr "是否使用韌體回抽命令(G10/G11)取代 G1 命令的 E 參數來回抽線材。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater label"
|
||||
msgid "Extruders Share Heater"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_extruders_share_heater description"
|
||||
msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_disallowed_areas label"
|
||||
msgid "Disallowed Areas"
|
||||
|
@ -430,16 +440,6 @@ msgctxt "nozzle_disallowed_areas description"
|
|||
msgid "A list of polygons with areas the nozzle is not allowed to enter."
|
||||
msgstr "禁止噴頭進入區域的多邊形清單。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon label"
|
||||
msgid "Machine Head Polygon"
|
||||
msgstr "機器頭多邊形"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_polygon description"
|
||||
msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
msgstr "列印頭 2D 輪廓圖(不包含風扇蓋)。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_head_with_fans_polygon label"
|
||||
msgid "Machine Head & Fan Polygon"
|
||||
|
@ -1934,6 +1934,26 @@ msgctxt "min_skin_width_for_expansion description"
|
|||
msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
|
||||
msgstr "如果表層區域寬度小於此值,則不會延伸。這會避免延伸在模型表面的斜度接近垂直時所形成的狹窄表層區域。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness label"
|
||||
msgid "Skin Edge Support Thickness"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_thickness description"
|
||||
msgid "The thickness of the extra infill that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers label"
|
||||
msgid "Skin Edge Support Layers"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_edge_support_layers description"
|
||||
msgid "The number of infill layers that supports skin edges."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material label"
|
||||
msgid "Material"
|
||||
|
@ -2124,6 +2144,16 @@ msgctxt "material_break_preparation_speed description"
|
|||
msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
|
||||
msgstr "回抽切斷前,耗材回抽的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature label"
|
||||
msgid "Break Preparation Temperature"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_preparation_temperature description"
|
||||
msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_break_retracted_position label"
|
||||
msgid "Break Retracted Position"
|
||||
|
@ -2154,6 +2184,66 @@ msgctxt "material_break_temperature description"
|
|||
msgid "The temperature at which the filament is broken for a clean break."
|
||||
msgstr "要讓耗材脆斷所需的溫度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed label"
|
||||
msgid "Flush Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length label"
|
||||
msgid "Flush Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flush_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed label"
|
||||
msgid "End Of Filament Purge Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_speed description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length label"
|
||||
msgid "End Of Filament Purge Length"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_end_of_filament_purge_length description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration label"
|
||||
msgid "Maximum Park Duration"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_maximum_park_duration description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor label"
|
||||
msgid "No Load Move Factor"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_no_load_move_factor description"
|
||||
msgid "Material Station internal value"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_flow label"
|
||||
msgid "Flow"
|
||||
|
@ -2294,116 +2384,6 @@ msgctxt "material_flow_layer_0 description"
|
|||
msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
|
||||
msgstr "第一層的流量補償:在起始層上擠出的耗材量會乘以此值。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "啟用回抽"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "當噴頭移動到非列印區域上方時回抽耗材。 "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "列印下一層時回抽"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "當噴頭移動到下一層時回抽耗材。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "回抽距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "回抽移動期間回抽的耗材長度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "回抽移動期間耗材回抽和裝填的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "回抽移動期間耗材回抽的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "回抽裝填速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "回抽移動期間耗材裝填的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "回抽額外裝填量"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "有些耗材可能會在空跑過程中滲出,可以在這裡對其進行補償。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "回抽最小空跑距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "觸發回抽所需的最小空跑距離。這有助於減少小區域內的回抽次數。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "最大回抽次數"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "此設定限制在最小擠出距離範圍內發生的回抽數。此範圍內的額外回抽將會忽略。這避免了在同一件耗材上重複回抽,從而導致耗材變扁並引起磨損問題。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "最小擠出距離範圍"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "最大回抽次數範圍。此值應大致與回抽距離相等,從而有效地限制在同一段耗材上的回抽次數。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "限制支撐回抽"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "當從支撐直線移動到另一支撐時,省略回抽。啟用此功能可節省列印時間,但會導致支撐內部有較多的牽絲。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "material_standby_temperature label"
|
||||
msgid "Standby Temperature"
|
||||
|
@ -2414,56 +2394,6 @@ msgctxt "material_standby_temperature description"
|
|||
msgid "The temperature of the nozzle when another nozzle is currently used for printing."
|
||||
msgstr "當另一個噴頭進行列印時,這個噴頭要保持的溫度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "噴頭切換回抽距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "切換擠出機時的回抽量。設定為 0 表示沒有回抽。這值通常和加熱區的長度相同。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "噴頭切換回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "回抽耗材的速度。較高的回抽速度效果較好,但回抽速度過高可能導致耗材磨損。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "噴頭切換回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "噴頭切換回抽期間耗材回抽的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "噴頭切換裝填速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "噴頭切換回抽後耗材被推回的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "噴頭切換額外裝填量"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "噴頭切換後額外裝填的耗材量。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "speed label"
|
||||
msgid "Speed"
|
||||
|
@ -3084,6 +3014,116 @@ msgctxt "travel description"
|
|||
msgid "travel"
|
||||
msgstr "空跑"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable label"
|
||||
msgid "Enable Retraction"
|
||||
msgstr "啟用回抽"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_enable description"
|
||||
msgid "Retract the filament when the nozzle is moving over a non-printed area. "
|
||||
msgstr "當噴頭移動到非列印區域上方時回抽耗材。 "
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change label"
|
||||
msgid "Retract at Layer Change"
|
||||
msgstr "列印下一層時回抽"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retract_at_layer_change description"
|
||||
msgid "Retract the filament when the nozzle is moving to the next layer."
|
||||
msgstr "當噴頭移動到下一層時回抽耗材。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount label"
|
||||
msgid "Retraction Distance"
|
||||
msgstr "回抽距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_amount description"
|
||||
msgid "The length of material retracted during a retraction move."
|
||||
msgstr "回抽移動期間回抽的耗材長度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed label"
|
||||
msgid "Retraction Speed"
|
||||
msgstr "回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted and primed during a retraction move."
|
||||
msgstr "回抽移動期間耗材回抽和裝填的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed label"
|
||||
msgid "Retraction Retract Speed"
|
||||
msgstr "回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_retract_speed description"
|
||||
msgid "The speed at which the filament is retracted during a retraction move."
|
||||
msgstr "回抽移動期間耗材回抽的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "回抽裝填速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_prime_speed description"
|
||||
msgid "The speed at which the filament is primed during a retraction move."
|
||||
msgstr "回抽移動期間耗材裝填的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount label"
|
||||
msgid "Retraction Extra Prime Amount"
|
||||
msgstr "回抽額外裝填量"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extra_prime_amount description"
|
||||
msgid "Some material can ooze away during a travel move, which can be compensated for here."
|
||||
msgstr "有些耗材可能會在空跑過程中滲出,可以在這裡對其進行補償。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel label"
|
||||
msgid "Retraction Minimum Travel"
|
||||
msgstr "回抽最小空跑距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_min_travel description"
|
||||
msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
|
||||
msgstr "觸發回抽所需的最小空跑距離。這有助於減少小區域內的回抽次數。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max label"
|
||||
msgid "Maximum Retraction Count"
|
||||
msgstr "最大回抽次數"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_count_max description"
|
||||
msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
|
||||
msgstr "此設定限制在最小擠出距離範圍內發生的回抽數。此範圍內的額外回抽將會忽略。這避免了在同一件耗材上重複回抽,從而導致耗材變扁並引起磨損問題。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window label"
|
||||
msgid "Minimum Extrusion Distance Window"
|
||||
msgstr "最小擠出距離範圍"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_extrusion_window description"
|
||||
msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
|
||||
msgstr "最大回抽次數範圍。此值應大致與回抽距離相等,從而有效地限制在同一段耗材上的回抽次數。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions label"
|
||||
msgid "Limit Support Retractions"
|
||||
msgstr "限制支撐回抽"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "limit_support_retractions description"
|
||||
msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
|
||||
msgstr "當從支撐直線移動到另一支撐時,省略回抽。啟用此功能可節省列印時間,但會導致支撐內部有較多的牽絲。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing label"
|
||||
msgid "Combing Mode"
|
||||
|
@ -4278,6 +4318,16 @@ msgctxt "brim_line_count description"
|
|||
msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
|
||||
msgstr "邊緣所用線條數量。更多邊緣線條可增强與列印平台的附著,但也會減少有效列印區域。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap label"
|
||||
msgid "Brim Distance"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_gap description"
|
||||
msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "brim_replaces_support label"
|
||||
msgid "Brim Replaces Support"
|
||||
|
@ -4708,6 +4758,56 @@ msgctxt "ooze_shield_dist description"
|
|||
msgid "Distance of the ooze shield from the print, in the X/Y directions."
|
||||
msgstr "擦拭牆與模型間的水平(X/Y 方向)距離。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount label"
|
||||
msgid "Nozzle Switch Retraction Distance"
|
||||
msgstr "噴頭切換回抽距離"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_amount description"
|
||||
msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
|
||||
msgstr "切換擠出機時的回抽量。設定為 0 表示沒有回抽。這值通常和加熱區的長度相同。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds label"
|
||||
msgid "Nozzle Switch Retraction Speed"
|
||||
msgstr "噴頭切換回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speeds description"
|
||||
msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
|
||||
msgstr "回抽耗材的速度。較高的回抽速度效果較好,但回抽速度過高可能導致耗材磨損。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed label"
|
||||
msgid "Nozzle Switch Retract Speed"
|
||||
msgstr "噴頭切換回抽速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_retraction_speed description"
|
||||
msgid "The speed at which the filament is retracted during a nozzle switch retract."
|
||||
msgstr "噴頭切換回抽期間耗材回抽的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed label"
|
||||
msgid "Nozzle Switch Prime Speed"
|
||||
msgstr "噴頭切換裝填速度"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_prime_speed description"
|
||||
msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
|
||||
msgstr "噴頭切換回抽後耗材被推回的速度。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount label"
|
||||
msgid "Nozzle Switch Extra Prime Amount"
|
||||
msgstr "噴頭切換額外裝填量"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "switch_extruder_extra_prime_amount description"
|
||||
msgid "Extra material to prime after nozzle switching."
|
||||
msgstr "噴頭切換後額外裝填的耗材量。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "meshfix label"
|
||||
msgid "Mesh Fixes"
|
||||
|
@ -4845,8 +4945,8 @@ msgstr "列印順序"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence description"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
msgstr "選擇一次列印一層中的所有模型或等待一個模型完成後再轉到下一個模型。排隊模式只有在所有模型以一種整個列印頭可以在各個模型之間移動的方式分隔開,且所有模型都低於噴頭和 X / Y 軸之間距離的情况下可用。"
|
||||
msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "print_sequence option all_at_once"
|
||||
|
@ -5073,26 +5173,6 @@ msgctxt "support_tree_collision_resolution description"
|
|||
msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
|
||||
msgstr "計算避免碰撞模型的計算精度。設定較低的值可產生較精確的樹狀支撐,這樣的支撐問題較少但會嚴重的增加切片所需的時間。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness label"
|
||||
msgid "Tree Support Wall Thickness"
|
||||
msgstr "樹狀支撐牆厚"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_thickness description"
|
||||
msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "樹狀支撐樹枝的牆壁厚度。較厚的牆壁需要花較長的時間列印,但較不易倒下。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count label"
|
||||
msgid "Tree Support Wall Line Count"
|
||||
msgstr "樹狀支撐牆壁線條數量"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "support_tree_wall_count description"
|
||||
msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
msgstr "樹狀支撐樹枝牆壁的圈數。較厚的牆壁需要花較長的時間列印,但較不易倒下。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "slicing_tolerance label"
|
||||
msgid "Slicing Tolerance"
|
||||
|
@ -5483,6 +5563,16 @@ msgctxt "magic_fuzzy_skin_enabled description"
|
|||
msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
|
||||
msgstr "在列印外牆時隨機抖動,使表面具有粗糙和毛絨絨的外觀。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only label"
|
||||
msgid "Fuzzy Skin Outside Only"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_outside_only description"
|
||||
msgid "Jitter only the parts' outlines and not the parts' holes."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "magic_fuzzy_skin_thickness label"
|
||||
msgid "Fuzzy Skin Thickness"
|
||||
|
@ -5882,6 +5972,16 @@ msgctxt "bridge_skin_support_threshold description"
|
|||
msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
|
||||
msgstr "假如表層區域受支撐的面積小於此百分比,使用橋樑設定列印。否則用一般的表層設定列印。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density label"
|
||||
msgid "Bridge Sparse Infill Max Density"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_sparse_infill_max_density description"
|
||||
msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "bridge_wall_coast label"
|
||||
msgid "Bridge Wall Coasting"
|
||||
|
@ -6049,8 +6149,8 @@ msgstr "換層時擦拭噴頭"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "clean_between_layers description"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr "是否在層與層之間加入擦拭噴頭的 G-code。啟用此設定會影響換層時的回抽行為。請用「擦拭回抽」設定來控制擦拭時的回抽量。"
|
||||
msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe label"
|
||||
|
@ -6059,8 +6159,8 @@ msgstr "擦拭耗材體積"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "max_extrusion_before_wipe description"
|
||||
msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
msgstr "在另一次擦拭噴頭前可擠出的最大耗材量。"
|
||||
msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_enable label"
|
||||
|
@ -6114,8 +6214,8 @@ msgstr "擦拭過程中耗材回抽的速度。"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed label"
|
||||
msgid "Retraction Prime Speed"
|
||||
msgstr "擦拭回抽裝填速度"
|
||||
msgid "Wipe Retraction Prime Speed"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_retraction_prime_speed description"
|
||||
|
@ -6134,13 +6234,13 @@ msgstr "若無回抽,擦拭後暫停。"
|
|||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable label"
|
||||
msgid "Wipe Z Hop When Retracted"
|
||||
msgstr "擦拭回抽後 Z 抬升"
|
||||
msgid "Wipe Z Hop"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_enable description"
|
||||
msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr "每當回抽完成時,列印平台會降低以便在噴頭和列印品之間形成空隙。它可以防止噴頭在空跑過程中撞到列印品,降低將列印品從列印平台撞掉的幾率。"
|
||||
msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "wipe_hop_amount label"
|
||||
|
@ -6292,6 +6392,54 @@ msgctxt "mesh_rotation_matrix description"
|
|||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "在將模型從檔案中載入時套用在模型上的轉換矩陣。"
|
||||
|
||||
#~ msgctxt "machine_head_polygon label"
|
||||
#~ msgid "Machine Head Polygon"
|
||||
#~ msgstr "機器頭多邊形"
|
||||
|
||||
#~ msgctxt "machine_head_polygon description"
|
||||
#~ msgid "A 2D silhouette of the print head (fan caps excluded)."
|
||||
#~ msgstr "列印頭 2D 輪廓圖(不包含風扇蓋)。"
|
||||
|
||||
#~ msgctxt "print_sequence description"
|
||||
#~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
|
||||
#~ msgstr "選擇一次列印一層中的所有模型或等待一個模型完成後再轉到下一個模型。排隊模式只有在所有模型以一種整個列印頭可以在各個模型之間移動的方式分隔開,且所有模型都低於噴頭和 X / Y 軸之間距離的情况下可用。"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness label"
|
||||
#~ msgid "Tree Support Wall Thickness"
|
||||
#~ msgstr "樹狀支撐牆厚"
|
||||
|
||||
#~ msgctxt "support_tree_wall_thickness description"
|
||||
#~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "樹狀支撐樹枝的牆壁厚度。較厚的牆壁需要花較長的時間列印,但較不易倒下。"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count label"
|
||||
#~ msgid "Tree Support Wall Line Count"
|
||||
#~ msgstr "樹狀支撐牆壁線條數量"
|
||||
|
||||
#~ msgctxt "support_tree_wall_count description"
|
||||
#~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
|
||||
#~ msgstr "樹狀支撐樹枝牆壁的圈數。較厚的牆壁需要花較長的時間列印,但較不易倒下。"
|
||||
|
||||
#~ msgctxt "clean_between_layers description"
|
||||
#~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
|
||||
#~ msgstr "是否在層與層之間加入擦拭噴頭的 G-code。啟用此設定會影響換層時的回抽行為。請用「擦拭回抽」設定來控制擦拭時的回抽量。"
|
||||
|
||||
#~ msgctxt "max_extrusion_before_wipe description"
|
||||
#~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
|
||||
#~ msgstr "在另一次擦拭噴頭前可擠出的最大耗材量。"
|
||||
|
||||
#~ msgctxt "wipe_retraction_prime_speed label"
|
||||
#~ msgid "Retraction Prime Speed"
|
||||
#~ msgstr "擦拭回抽裝填速度"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable label"
|
||||
#~ msgid "Wipe Z Hop When Retracted"
|
||||
#~ msgstr "擦拭回抽後 Z 抬升"
|
||||
|
||||
#~ msgctxt "wipe_hop_enable description"
|
||||
#~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
|
||||
#~ msgstr "每當回抽完成時,列印平台會降低以便在噴頭和列印品之間形成空隙。它可以防止噴頭在空跑過程中撞到列印品,降低將列印品從列印平台撞掉的幾率。"
|
||||
|
||||
#~ msgctxt "minimum_interface_area description"
|
||||
#~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
|
||||
#~ msgstr "支撐介面區域的最小面積大小。面積小於此值的區域將不會產生支撐介面。"
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
11
resources/themes/cura-light/fonts/noto-sans-display/README
Normal file
11
resources/themes/cura-light/fonts/noto-sans-display/README
Normal file
|
@ -0,0 +1,11 @@
|
|||
This package is part of the noto project. Visit
|
||||
google.com/get/noto for more information.
|
||||
|
||||
Built on 2017-10-24 from the following noto repository:
|
||||
-----
|
||||
Repo: noto-fonts
|
||||
Tag: v2017-10-24-phase3-second-cleanup
|
||||
Date: 2017-10-24 12:10:34 GMT
|
||||
Commit: 8ef14e6c606a7a0ef3943b9ca01fd49445620d79
|
||||
|
||||
Remove some files that aren't for release.
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
resources/themes/cura-light/fonts/noto-sans/NotoSans-Black.ttf
Normal file
BIN
resources/themes/cura-light/fonts/noto-sans/NotoSans-Black.ttf
Normal file
Binary file not shown.
Binary file not shown.
BIN
resources/themes/cura-light/fonts/noto-sans/NotoSans-Bold.ttf
Normal file
BIN
resources/themes/cura-light/fonts/noto-sans/NotoSans-Bold.ttf
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue